-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gemfile
30 lines (25 loc) · 874 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 necessary if you want to use Configliere::Prompt
gem 'jruby-openssl', :platform => [:jruby] if RUBY_PLATFORM =~ /java/
group :docs do
gem 'RedCloth', ">= 4.2", :require => "redcloth"
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
gem 'json'
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]
if RUBY_PLATFORM.include?('darwin')
gem 'rb-fsevent', ">= 0.9", :platform => [:ruby_19]
end
end