Sha256: dfe8c0a80339799a58a0a747e4e58820faa4552eb9dd57c522b1749583d0a146

Contents?: true

Size: 359 Bytes

Versions: 4

Compression:

Stored size: 359 Bytes

Contents

require 'rubygems'
case (RUBY_PLATFORM rescue 'UNKNOWN')
when /java/
  gem 'json_pure'
else
  gem 'json'
  case RUBY_VERSION
  when /^2\./
    gem 'simplecov'
  when /^1\.9/
    gem 'ruby-debug19'
    gem 'simplecov'
    # require 'ruby-debug' # BROKEN in 1.9.3-head
  when /^1\.8/
    gem 'ruby-debug'
    gem 'simplecov'
    require 'ruby-debug'
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
asir-1.1.8 spec/debug_helper.rb
asir-1.1.7 spec/debug_helper.rb
asir-1.1.6 spec/debug_helper.rb
asir-1.1.5 spec/debug_helper.rb