Sha256: c9ded8293e10f390d6a30fe5313ebad4ca000e30cb762b88556f39774067d8b0
Contents?: true
Size: 842 Bytes
Versions: 7
Compression:
Stored size: 842 Bytes
Contents
source "https://rubygems.org" gemspec branch = File.read(File.expand_path("../maintenance-branch", __FILE__)).chomp %w[rspec rspec-core rspec-mocks rspec-support].each do |lib| library_path = File.expand_path("../../#{lib}", __FILE__) if File.exist?(library_path) && !ENV['USE_GIT_REPOS'] gem lib, :path => library_path else gem lib, :git => "git://github.com/rspec/#{lib}.git", :branch => branch end end gem 'yard', '0.8.7.4', :require => false ### deps for rdoc.info group :documentation do gem 'redcarpet', '2.1.1', :platform => :mri gem 'github-markup', '0.7.2' end gem 'simplecov' platforms :jruby do gem "jruby-openssl" end platforms :rbx do gem 'rubysl' end gem 'rubocop', "~> 0.23.0", :platform => [:ruby_19, :ruby_20, :ruby_21] eval File.read('Gemfile-custom') if File.exist?('Gemfile-custom')
Version data entries
7 entries across 7 versions & 1 rubygems