Sha256: 9288e8423dee8f0ae31f21280278acb62941a40f60d63dafce23d56ec93df900

Contents?: true

Size: 992 Bytes

Versions: 2

Compression:

Stored size: 992 Bytes

Contents

source 'https://rubygems.org'
gemspec

# specs
gem 'rake'
gem 'rack'
gem 'sinatra'
gem 'sinatra-websocket'
case ENV['OPAL_RSPEC_VERSION']
when nil, ''
  gem 'opal-rspec'
when /\./
  gem 'opal-rspec', "~> #{ENV['OPAL_RSPEC_VERSION']}.0a"
else
  gem 'opal-rspec', github: 'opal/opal-rspec', ref: ENV['OPAL_RSPEC_VERSION'], submodules: true
end
# Force build of eventmachine... I wish we could find a way to not use
# this unmaintained library anymore.
gem 'eventmachine', github: 'eventmachine/eventmachine'
gem 'thin', github: 'macournoyer/thin' unless RUBY_PLATFORM =~ /mingw/

# runner
gem 'selenium-webdriver', '>= 4.14.0', require: false
gem 'rest-client', require: false
gem 'rexml', require: false
gem 'ffi'

# browser
case ENV['OPAL_VERSION']
when nil, ''
  # noop
when ->(path) { File.exist? path }
  gem 'opal', path: ENV['OPAL_VERSION']
when /\./
  gem 'opal', "~> #{ENV['OPAL_VERSION']}.0a"
else
  gem 'opal', github: 'opal/opal', ref: ENV['OPAL_VERSION']
end

gem 'opal-sprockets'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
opal-browser-0.3.5 Gemfile
opal-browser-0.3.4 Gemfile