Gemfile in configliere-0.4.8 vs Gemfile in configliere-0.4.10

- old
+ new

@@ -1,27 +1,40 @@ source "http://rubygems.org" -gem 'json' +gem 'multi_json', ">= 1.1" +gem 'oj', ">= 1.2" +gem 'json', :platform => :jruby -# Add dependencies to develop your gem here. -# Include everything needed to run rake, tests, features, etc. +# Only necessary if you want to use Configliere::Prompt +gem 'highline', ">= 1.5.2" + +# Only gems that you want listed as development dependencies in the gemspec group :development do - gem 'bundler', "~> 1.0.12" - gem 'yard', "~> 0.6.7" - gem 'jeweler', "~> 1.5.2" - gem 'rspec', "~> 2.5.0" - gem 'spork', "~> 0.9.0.rc5" - gem 'RedCloth' # for yard + gem 'bundler', "~> 1.1" + gem 'rake' end -group :development do - # Only necessary if you want to use Configliere::Prompt - gem 'highline', ">= 1.5.2" +# Gems you would use if hacking on this gem (rather than with it) +group :support do + gem 'jeweler', ">= 1.6" + gem 'pry' + gem 'yard', ">= 0.7" + gem 'rspec', "~> 2.8" end -group :optional do - # only interesting for coverage testing - gem 'rcov', ">= 0.9.9" - gem 'reek' - gem 'roodi' - gem 'watchr' +group :doc do + gem 'RedCloth', ">= 4.2", :require => "redcloth" + gem 'redcarpet', ">= 2.1" +end + +# Gems for testing and coverage +group :test do + gem 'simplecov', ">= 0.5", :platform => :ruby_19 + # + gem 'guard', ">= 1.0" + gem 'guard-rspec', ">= 0.6" + gem 'guard-yard' + # + if RUBY_PLATFORM.include?('darwin') + gem 'rb-fsevent', ">= 0.9" + end end