From 5428f9addc5bf64a3930e031c032031c8637db08 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Fri, 4 Jan 2013 19:41:29 +0100 Subject: [PATCH] Update devtools --- Gemfile | 2 +- Gemfile.devtools | 58 ++++++++++++++++++++++++++++++++---------------- 2 files changed, 40 insertions(+), 20 deletions(-) diff --git a/Gemfile b/Gemfile index 8a136bfc..9e11c44a 100644 --- a/Gemfile +++ b/Gemfile @@ -2,5 +2,5 @@ source 'https://rubygems.org' gemspec -gem 'devtools', :git => 'https://github.com/mbj/devtools.git' +gem 'devtools', :git => 'https://github.com/datamapper/devtools.git' eval(File.read(File.join(File.dirname(__FILE__),'Gemfile.devtools'))) diff --git a/Gemfile.devtools b/Gemfile.devtools index cd400235..0498ec55 100644 --- a/Gemfile.devtools +++ b/Gemfile.devtools @@ -1,30 +1,36 @@ +# encoding: utf-8 + group :development do - gem 'rake', '~> 10.0' - gem 'rspec', '~> 2.12.0' - gem 'yard', '~> 0.8.3' + 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 ] end group :guard do - gem 'guard', '~> 1.5.4' + gem 'guard', '~> 1.6.1' 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.3.3' -group :benchmarks do - gem 'rbench', '~> 0.2.3' -end + # 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' -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 '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' gem 'roodi', '~> 2.1.0' gem 'yardstick', '~> 0.8.0' @@ -33,11 +39,25 @@ group :metrics do gem 'yard-spellcheck', '~> 0.1.5' end + platforms :mri_18 do + gem 'rcov', '~> 1.0.0' + end + platforms :mri_19 do - gem 'simplecov', '~> 0.7' + gem 'simplecov', '~> 0.7.1' 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.2' end end