-
Notifications
You must be signed in to change notification settings - Fork 12
/
Gemfile
30 lines (24 loc) · 882 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
source "http://rubygems.org"
gemspec
# --------------------------------------------------------------------------
# Only gems that you want listed as development dependencies in the gemspec
group :development do
gem 'bundler', "~> 1.1"
gem 'rake', :require => false
gem 'yard', ">= 0.7", :require => false
end
group :docs do
gem 'redcarpet', ">= 2.1", :platform => [:ruby]
gem 'kramdown', :platform => [:jruby]
end
# Gems for testing and coverage
group :test do
gem 'simplecov', ">= 0.5", :platform => [:ruby_19], :require => false
end
# Gems you would use if hacking on this gem (rather than with it)
group :support do
gem 'pry'
gem 'guard', ">= 1.0", :platform => [:ruby_19]
gem 'guard-rspec', ">= 0.6", :platform => [:ruby_19]
gem 'guard-yard', :platform => [:ruby_19]
end