Sha256: 5dd521faf3541b96710ab999006f81e6b4939642c66fe22d0fd34818cf4db0b5
Contents?: true
Size: 785 Bytes
Versions: 5
Compression:
Stored size: 785 Bytes
Contents
source 'https://rubygems.org' gemspec # No gem would be complete without rake tasks. gem 'rake', '~> 10.1' group :test do # Our preferred unit testing library. gem 'rspec', '~> 2.14' # Cover all the things. gem 'simplecov', '~> 0.8' # Code coverage in badge form. gem 'coveralls', '~> 0.7' end group :debugging do # Don't leave home without a debugger! gem 'debugger', '~> 1.6', :platforms => :mri end # Rubinius doesn't bundle up everything in the regular standard library; get the # heaver things we rely on. group :rubinius do # Fill in the standard library. gem 'rubysl', '~> 2.0', platform: :rbx # Coverage and friends. gem 'rubinius-developer_tools', '~> 2.0', platform: :rbx # Ruby parser/generator. gem 'racc', '~> 1.4', platform: :rbx end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
rubocop-rspec-1.0.rc3 | Gemfile |
rubocop-rspec-1.0.rc2 | Gemfile |
rubocop-rspec-1.0.rc1 | Gemfile |
rubocop-rspec-0.18.1 | Gemfile |
rubocop-rspec-0.18.0 | Gemfile |