forked from cmthakur/activerecord-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
39 lines (30 loc) · 783 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
source 'https://rubygems.org'
gemspec
# Database Adapters
platforms :ruby do
gem "em-synchrony", "~> 1.0.3"
gem "mysql2", "~> 0.3.0"
gem "pg", "~> 0.9"
gem "sqlite3-ruby", "~> 1.3.1"
gem "seamless_database_pool", "~> 1.0.13"
end
platforms :jruby do
gem "jdbc-mysql"
gem "activerecord-jdbcmysql-adapter"
end
# Support libs
gem "factory_girl", "~> 4.2.0"
gem "delorean", "~> 0.2.0"
# Debugging
platforms :mri_18 do
gem "ruby-debug", "= 0.10.4"
end
platforms :jruby do
gem "ruby-debug-base", "= 0.10.4"
gem "ruby-debug", "= 0.10.4"
end
platforms :mri_19 do
gem "debugger"
end
version = ENV['RAILS_VERSION'] || "3.2"
eval_gemfile File.expand_path("../gemfiles/#{version}.gemfile", __FILE__)