Sha256: 15f804a621955f1492658a4332b70346c065a2debc545a030e8fd9afce92f22f

Contents?: true

Size: 921 Bytes

Versions: 4

Compression:

Stored size: 921 Bytes

Contents

source :rubygems
gemspec

group :development do
  # patron and em-http-request can't install on JRuby, so we have to limit their platform here.
  platforms :ruby do
    gem 'patron',           '0.4.9'
    gem 'em-http-request',  '~> 0.3.0'
    gem 'curb',             '0.7.8'
    gem 'typhoeus',         '~> 0.2.1'
  end

  platforms :jruby do
    gem 'jruby-openssl'
  end
end

# Additional gems that are useful, but not required for development.
group :extras do
  gem 'guard-rspec'
  gem 'guard-cucumber'
  gem 'growl'
  gem 'relish'
  gem 'fuubar'

  platforms :mri do
    gem 'rcov'
    gem 'rb-fsevent'
  end

  platforms :mri_18 do
    gem 'ruby-debug'
  end

  platforms :mri_19 do
    gem 'linecache19', '0.5.11' # 0.5.12 cannot install on 1.9.1, and 0.5.11 appears to work with both 1.9.1 & 1.9.2
    gem 'ruby-debug19'
    gem 'ruby-debug-base19', RUBY_VERSION == '1.9.1' ? '0.11.23' : '~> 0.11.24'
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vcr-1.10.3 Gemfile
vcr-1.10.2 Gemfile
vcr-1.10.0 Gemfile
vcr-1.9.0 Gemfile