File: .ci.gemfile

package info (click to toggle)
ruby-sequel-pg 1.18.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 204 kB
  • sloc: ansic: 1,938; ruby: 348; makefile: 2
file content (54 lines) | stat: -rw-r--r-- 966 bytes parent folder | download
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
# This file is only used for CI.

source 'http://rubygems.org'

gem 'minitest-hooks'
gem 'minitest-global_expectations'

# Plugin/Extension Dependencies
gem 'tzinfo'

if RUBY_VERSION < '2.1'
  gem 'nokogiri', '<1.7'
elsif RUBY_VERSION < '2.3'
  gem 'nokogiri', '<1.10'
else
  gem 'nokogiri'
end

if RUBY_VERSION < '2.2'
  gem 'activemodel', '<5'
elsif RUBY_VERSION < '2.4'
  gem 'activemodel', '<6'
elsif RUBY_VERSION < '2.7'
  gem 'concurrent-ruby', '1.3.4'
  gem 'activemodel'
else
  gem 'activemodel'
end

if RUBY_VERSION < '3.1' && RUBY_VERSION >= '3'
  gem 'json', '2.5.1'
  gem 'rake'
elsif RUBY_VERSION < '2'
  gem 'json', '<1.8.5'
  gem 'rake', '<10'
else
  gem 'json'
  gem 'rake'
end

if RUBY_VERSION < '2.4'
  # Until mintest 5.12.0 is fixed
  gem 'minitest', '5.11.3'
else
  gem 'minitest', '>=5.7'
end

if RUBY_VERSION < '2'
  gem "pg", '<0.19'
  gem 'rake-compiler', '<1'
else
  gem "pg", RUBY_VERSION < '2.2' ? '<1.2' : '>0'
  gem 'rake-compiler'
end