forked from jeremyevans/sequel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.gemfile
55 lines (46 loc) · 900 Bytes
/
.travis.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# This file is only used for TravisCI integration.
source 'http://rubygems.org'
gem 'minitest', '>= 5.7.0'
gem 'minitest-hooks'
gem 'minitest-shared_description'
# Plugin/Extension Dependencies
gem 'tzinfo'
if RUBY_VERSION < '1.9.3'
gem "i18n", '<0.7.0'
gem 'nokogiri', '<1.6.0'
else
gem 'nokogiri'
end
if RUBY_VERSION < '1.9.0'
gem "fastercsv"
end
if RUBY_VERSION < '1.9.3'
gem 'activemodel', '<4.0.0'
elsif RUBY_VERSION < '2.2.0'
gem 'activemodel', '<5.0.0'
else
gem 'activemodel'
end
if RUBY_VERSION < '2.0.0'
gem 'json', '<2'
gem 'rake', '<10.0.0'
else
gem 'json'
gem 'rake'
end
# MRI Adapter Dependencies
platforms :ruby do
gem "sqlite3"
gem "mysql2"
if RUBY_VERSION < '1.9.3'
gem "pg", '<0.18.0'
else
gem "pg"
end
end
# JRuby Adapter Dependencies
platforms :jruby do
gem 'jdbc-sqlite3'
gem 'jdbc-mysql'
gem 'jdbc-postgres', '9.4.1200'
end