Gemfile.devtools in virtus-0.5.4 vs Gemfile.devtools in virtus-0.5.5
- old
+ new
@@ -1,44 +1,60 @@
+# encoding: utf-8
+
group :development do
- gem 'rake', '~> 10.0'
- gem 'rspec', '~> 2.12.0'
- gem 'yard', '~> 0.8.3'
+ gem 'rake', '~> 10.0.4'
+ gem 'rspec', '~> 2.13.0'
+ gem 'yard', '~> 0.8.6.1'
end
+group :yard do
+ gem 'kramdown', '~> 1.0.1'
+end
+
group :guard do
- gem 'guard', '~> 1.5.4'
+ gem 'guard', '~> 1.8.0'
gem 'guard-bundler', '~> 1.0.0'
- gem 'guard-rspec', '~> 2.1.1'
- gem 'rb-inotify', :git => 'https://github.com/mbj/rb-inotify'
-end
+ gem 'guard-rspec', '~> 2.5.4'
-group :benchmarks do
- gem 'rbench', '~> 0.2.3'
-end
+ # file system change event handling
+ gem 'listen', '~> 1.0.2'
+ gem 'rb-fchange', '~> 0.0.6', :require => false
+ gem 'rb-fsevent', '~> 0.9.3', :require => false
+ gem 'rb-inotify', '~> 0.9.0', :require => false
-platform :jruby do
- group :jruby do
- gem 'jruby-openssl', '~> 0.7.4'
- end
+ # 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
end
group :metrics do
- gem 'flay', '~> 1.4.2'
- gem 'flog', '~> 2.5.1'
- gem 'reek', '~> 1.2.8', :git => 'https://github.com/dkubb/reek.git'
- gem 'roodi', '~> 2.1.0'
- gem 'yardstick', '~> 0.8.0'
- gem 'mutant', '~> 0.2.6'
+ gem 'backports', '~> 3.3', '>= 3.3.0'
+ gem 'coveralls', '~> 0.6.6'
+ gem 'flay', '~> 2.2.0'
+ gem 'flog', '~> 4.0.0'
+ gem 'reek', '~> 1.3.1', :git => 'https://github.com/troessner/reek.git'
+ gem 'simplecov', '~> 0.7.1'
+ gem 'yardstick', '~> 0.9.6'
- platforms :ruby_18, :ruby_19 do
- # this indirectly depends on ffi which does not build on ruby-head
+ platforms :ruby_19 do
gem 'yard-spellcheck', '~> 0.1.5'
end
- platforms :mri_19 do
- gem 'simplecov', '~> 0.7'
+ platforms :mri_19, :rbx do
+ gem 'mutant', '~> 0.2.20'
end
platforms :rbx do
- gem 'pelusa', '~> 0.2.1'
+ 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.5'
end
end