free_mutant/Gemfile.devtools

64 lines
1.5 KiB
Text
Raw Normal View History

2013-01-04 13:41:29 -05:00
# encoding: utf-8
2012-12-29 08:18:07 -05:00
group :development do
2013-01-04 13:41:29 -05:00
gem 'rake', '~> 10.0.3'
gem 'rspec', '~> 2.12.0'
gem 'yard', '~> 0.8.3'
end
group :yard do
gem 'redcarpet', '~> 2.2.2', :platforms => [ :mri, :rbx ]
2012-12-06 13:53:44 -05:00
end
group :guard do
2013-01-04 13:41:29 -05:00
gem 'guard', '~> 1.6.1'
2012-12-06 13:53:44 -05:00
gem 'guard-bundler', '~> 1.0.0'
2013-01-04 13:41:29 -05:00
gem 'guard-rspec', '~> 2.3.3'
2012-12-06 13:53:44 -05:00
2013-01-04 13:41:29 -05:00
# file system change event handling
gem 'rb-fchange', '~> 0.0.6', :require => false
gem 'rb-fsevent', '~> 0.9.3', :require => false
gem 'rb-inotify', '~> 0.8.8', :require => false, :git => 'https://github.com/nex3/rb-inotify'
2012-12-06 13:53:44 -05:00
2013-01-04 13:41:29 -05:00
# notification handling
gem 'libnotify', '~> 0.8.0', :require => false
gem 'rb-notifu', '~> 0.0.4', :require => false
gem 'terminal-notifier-guard', '~> 1.5.3', :require => false
2012-12-06 13:53:44 -05:00
end
2012-12-06 15:35:17 -05:00
group :metrics do
2013-01-04 13:41:29 -05:00
gem 'backports', '~> 2.6.5'
gem 'flay', '~> 1.4.3'
gem 'flog', '~> 2.5.3'
gem 'reek', '~> 1.2.13', :git => 'https://github.com/dkubb/reek.git', :branch => 'fix-redundant-irresponsible-module-warnings'
2012-12-06 15:35:17 -05:00
gem 'roodi', '~> 2.1.0'
2012-12-29 08:18:07 -05:00
gem 'yardstick', '~> 0.8.0'
2012-12-06 15:35:17 -05:00
platforms :ruby_18, :ruby_19 do
# this indirectly depends on ffi which does not build on ruby-head
gem 'yard-spellcheck', '~> 0.1.5'
end
2013-01-04 13:41:29 -05:00
platforms :mri_18 do
gem 'rcov', '~> 1.0.0'
end
2012-12-29 08:18:07 -05:00
platforms :mri_19 do
2013-01-04 13:41:29 -05:00
gem 'simplecov', '~> 0.7.1'
2012-12-06 15:35:17 -05:00
end
platforms :rbx do
2013-01-04 13:41:29 -05:00
gem 'pelusa', '~> 0.2.2'
end
end
group :benchmarks do
gem 'rbench', '~> 0.2.3'
end
platform :jruby do
group :jruby do
gem 'jruby-openssl', '~> 0.8.2'
2012-12-06 15:35:17 -05:00
end
end