Skip to content

Commit

Permalink
Require fastercsv on Ruby 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Aug 17, 2011
1 parent 042b554 commit 7ca5917
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ group :development, :test do
gem 'jruby-openssl', '~> 0.7'
case ENV['CI_DB_ADAPTER']
when 'mysql'
gem 'activerecord-jdbcmysql-adapter', '~> 1.1', :platform => :jruby
gem 'jdbc-mysql', '~> 5.1', :platform => :jruby
gem 'activerecord-jdbcmysql-adapter', '~> 1.1'
gem 'jdbc-mysql', '~> 5.1'
when 'postgresql'
gem 'activerecord-jdbcpostgresql-adapter', '~> 1.1', :platform => :jruby
gem 'jdbc-postgres', '~> 9.0', :platform => :jruby
gem 'activerecord-jdbcpostgresql-adapter', '~> 1.1'
gem 'jdbc-postgres', '~> 9.0'
else
gem 'activerecord-jdbcsqlite3-adapter', '~> 1.1', :platform => :jruby
gem 'jdbc-sqlite3', '~> 3.6', :platform => :jruby
gem 'activerecord-jdbcsqlite3-adapter', '~> 1.1'
gem 'jdbc-sqlite3', '~> 3.6'
end
end

Expand Down Expand Up @@ -48,4 +48,8 @@ group :debug do
end
end

platforms :jruby, :mingw_18, :ruby_18 do
gem 'fastercsv', '~> 1.5.4'
end

gemspec

0 comments on commit 7ca5917

Please sign in to comment.