Skip to content
This repository has been archived by the owner on Jan 1, 2020. It is now read-only.

Commit

Permalink
Change Ruby interpreter version
Browse files Browse the repository at this point in the history
Currently the Gemfile specifies ruby_19 for MRI gems and jruby
for jruby ones.

Until now this has not caused any trouble. However now ruby 2.0.0
is released this is no longer kosher.

Since we are not supporting ruby 1.8.7 we will change the ruby_19
setting to just ruby
  • Loading branch information
Jeffrey Jones committed Feb 26, 2013
1 parent 5d3adce commit 7534bdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Expand Up @@ -19,9 +19,9 @@ gem 'jquery-rails'
gem 'logstash-event', '~>1.1.5'

group :development, :test do
gem 'simplecov', :require => false, :platform => :ruby_19
gem 'simplecov', :require => false, :platform => :ruby
gem 'capybara', '>=1.1.2'
gem 'sqlite3', :platform => :ruby_19
gem 'sqlite3', :platform => :ruby

gem 'jdbc-sqlite3', :platform => :jruby
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
Expand Down

0 comments on commit 7534bdd

Please sign in to comment.