Gemfile in opal-jquery-0.4.2 vs Gemfile in opal-jquery-0.4.3

- old
+ new

@@ -1,6 +1,17 @@ source 'https://rubygems.org' gemspec -gem 'opal', ENV['OPAL_VERSION'] || '~> 0.10.0' -gem 'opal-rspec', github: 'opal/opal-rspec', submodules: true +case (opal_version = ENV['OPAL_VERSION']) +when 'master' + gem 'opal', github: 'opal/opal', branch: 'master' + gem 'opal-sprockets', github: 'opal/opal-sprockets' + gem 'opal-rspec', github: 'opal/opal-rspec', branch: 'elia/opal-master', submodules: true +when nil + gem 'opal' # let bundler pick a version +else + gem 'opal', opal_version +end + +# gem 'opal-rspec', github: 'opal/opal-rspec', submodules: true +# gem 'opal-rspec', path: '../opal-rspec' gem 'rack', ENV['RACK_VERSION'] || '> 0'