forked from kaminari/kaminari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
52 lines (44 loc) · 1.69 KB
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
# Specify your gem's dependencies in kaminari.gemspec
gemspec
if ENV['RAILS_VERSION'] == 'edge'
gem 'railties', git: 'https://github.com/rails/rails.git'
gem 'activerecord', git: 'https://github.com/rails/rails.git', require: 'active_record'
gem 'actionview', git: 'https://github.com/rails/rails.git', require: 'action_view'
elsif ENV['RAILS_VERSION'] == '5.2'
gem 'railties', git: 'https://github.com/rails/rails.git', branch: '5-2-stable'
gem 'activerecord', git: 'https://github.com/rails/rails.git', require: 'active_record', branch: '5-2-stable'
gem 'actionview', git: 'https://github.com/rails/rails.git', require: 'action_view', branch: '5-2-stable'
elsif ENV['RAILS_VERSION']
gem 'railties', "~> #{ENV['RAILS_VERSION']}.0"
gem 'activerecord', "~> #{ENV['RAILS_VERSION']}.0", require: 'active_record'
gem 'actionview', "~> #{ENV['RAILS_VERSION']}.0", require: 'action_view'
else
gem 'rails'
end
gem 'selenium-webdriver'
rails_version = ENV['RAILS_VERSION'] || '∞'
platforms :ruby do
case ENV['DB']
when 'postgresql'
gem 'pg', rails_version >= '5.1' ? '>= 1.0.0' : '< 1.0.0', require: false
when 'mysql'
gem 'mysql2', rails_version >= '4.2' ? '>= 0.4' : '< 0.4', require: false
else
gem 'sqlite3', rails_version >= '5.1' ? '>= 1.4' : '< 1.4', require: false
end
end
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter', require: false
gem 'activerecord-jdbcpostgresql-adapter', require: false
gem 'activerecord-jdbcmysql-adapter', require: false
end
if RUBY_ENGINE == 'rbx'
platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'racc'
gem 'minitest'
gem 'rubinius-developer_tools'
end
end