Sha256: 79740b32d5ab561701949a38825ea6adb8344f69231eecd8565687b50d6135a0

Contents?: true

Size: 743 Bytes

Versions: 1

Compression:

Stored size: 743 Bytes

Contents

source 'https://rubygems.org'
gemspec

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

case (opal_version = ENV['OPAL_VERSION'])
when 'master'
  gem 'opal', github: 'opal/opal', branch: 'master'
  gem 'opal-sprockets', github: 'opal/opal-sprockets'
when nil
  gem 'opal' # let bundler pick a version
else
  gem 'opal', opal_version
end

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
opal-rspec-0.6.1 Gemfile