Skip to content

Commit

Permalink
dev: align Gemfiles across rspec projects
Browse files Browse the repository at this point in the history
  • Loading branch information
dchelimsky committed Apr 22, 2012
1 parent 4b47e54 commit b4204fb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 20 deletions.
6 changes: 3 additions & 3 deletions Gemfile
Expand Up @@ -12,9 +12,9 @@ gemspec
end

### deps for rdoc.info
gem "yard"
gem "redcarpet"
gem "github-markup"
gem 'yard', '0.7.5', :require => false
gem 'redcarpet', '2.1.1'
gem 'github-markup', '0.7.2'

platforms :jruby do
gem "jruby-openssl"
Expand Down
26 changes: 9 additions & 17 deletions Gemfile-custom.sample
@@ -1,20 +1,17 @@
group :development do
gem 'interactive_rspec'
gem "relish", "~> 0.5.0"
gem "guard-rspec", "0.5.0"
gem "growl", "1.0.3"
gem "spork", "0.9.0"
gem 'relish', '~> 0.5.0'
gem 'guard-rspec', '0.5.0'
gem 'growl', '1.0.3'
gem 'spork', '0.9.0'

platforms :mri_18, :jruby do
gem "rcov", "0.9.10"
end

platforms :mri_18 do
gem 'ruby-debug'
end
platform :mri do
gem 'rb-fsevent', '~> 0.4.3.1'
gem 'ruby-prof', '~> 0.10.0'

platforms :mri_19 do
case RUBY_VERSION
when /^1.8/
gem 'ruby-debug'
when '1.9.2'
gem 'ruby-debug19', '0.11.6'
gem 'ruby-debug-base19', '0.11.25'
Expand All @@ -34,9 +31,4 @@ group :development do
gem 'linecache19', '0.5.13'
end
end

platforms :mri_18, :mri_19 do
gem "rb-fsevent", "~> 0.4.3.1"
gem "ruby-prof", "~> 0.10.0"
end
end

0 comments on commit b4204fb

Please sign in to comment.