Changes to get rbx passing
First off, sqlite3 needs to be exactly v1.3.8. Need to make sure both racc and rubysl are in the Gemfiles. RBX's File.join doesn't like nil at all. RBX also doesn't like to remove a constant that doesn't exist yet.
Showing
... | @@ -2,10 +2,13 @@ source "https://rubygems.org" | ... | @@ -2,10 +2,13 @@ source "https://rubygems.org" |
gemspec | gemspec | ||
gem 'sqlite3', '~> 1.3.4', :platform => :ruby | gem 'sqlite3', '1.3.8', :platforms => :ruby | ||
gem 'jruby-openssl', :platform => :jruby | |||
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby | gem 'jruby-openssl', :platforms => :jruby | ||
gem 'rubysl', :platform => :rbx | gem 'activerecord-jdbcsqlite3-adapter', :platforms => :jruby | ||
gem 'rubysl', :platforms => :rbx | |||
gem 'racc', :platforms => :rbx | |||
# Hinting at development dependencies | # Hinting at development dependencies | ||
# Prevents bundler from taking a long-time to resolve | # Prevents bundler from taking a long-time to resolve | ||
... | ... |
Please
register
or
sign in
to comment