Sha256: 77808469697bb74c0aaec9a5efbf6f2656c69f183a3e1a9d8c0aab23bcaa997d

Contents?: true

Size: 857 Bytes

Versions: 2

Compression:

Stored size: 857 Bytes

Contents

source 'https://rubygems.org'
gemspec

unless Dir[__dir__ + '/rspec{,-{core,expectations,mocks,support}}/upstream'].any?
  raise 'Run: "git submodule update --init" to get RSpec sources'
end

# These need to come from our local path in order for create_requires.rb to work properly
gem 'rspec',              path: 'rspec/upstream'
gem 'rspec-support',      path: 'rspec-support/upstream'
gem 'rspec-core',         path: 'rspec-core/upstream'
gem 'rspec-mocks',        path: 'rspec-mocks/upstream'
gem 'rspec-expectations', path: 'rspec-expectations/upstream'

gem 'pry'

case ENV['OPAL_VERSION']
when 'local'
  gem 'opal', path: '../opal'
when /^[0-9]/
  gem 'opal', "~> #{ENV['OPAL_VERSION']}.0a"
when String
  gem 'opal', git: 'https://github.com/opal/opal.git', branch: ENV['OPAL_VERSION']
end

gem 'opal-sprockets', '>=1.0'

gem 'puma'
gem 'rack', '<3'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
opal-rspec-1.1.0.alpha3 Gemfile
opal-rspec-1.1.0.alpha2 Gemfile