By moving it to the Gemfile & using platform we're able avoid installing spoon for other Ruby implementations.
20 lines
292 B
Ruby
20 lines
292 B
Ruby
source "http://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
platform :jruby do
|
|
gem 'spoon', '~> 0.0.1'
|
|
end
|
|
|
|
group :development do
|
|
gem 'parka'
|
|
gem 'rake'
|
|
gem 'ronn'
|
|
gem 'fakefs', '~> 0.3.2'
|
|
gem 'rcov', '~> 0.9.8'
|
|
gem 'rr', '~> 1.0.2'
|
|
gem 'rspec', '~> 2.0'
|
|
gem 'aws-s3'
|
|
gem "rubyzip"
|
|
end
|