-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Gemfile
50 lines (40 loc) · 1.15 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
source "https://rubygems.org"
gemspec
git "https://github.com/refinery/refinerycms", branch: "master" do
gem 'refinerycms'
group :development, :test do
gem 'refinerycms-testing'
end
end
gem 'refinerycms-i18n', github: 'refinery/refinerycms-i18n', branch: 'master'
group :test do
gem 'launchy'
gem 'listen'
gem 'pry'
gem 'puma'
gem 'rspec-retry'
gem 'selenium-webdriver'
end
# Database Configuration
unless ENV['CI']
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'sqlite3', :platform => :ruby
end
if !ENV['CI'] || ENV['DB'] == 'mysql'
gem 'activerecord-jdbcmysql-adapter', :platform => :jruby
gem 'jdbc-mysql', '= 5.1.13', :platform => :jruby
gem 'mysql2', :platform => :ruby
end
if !ENV['CI'] || ENV['DB'] == 'postgresql'
gem 'activerecord-jdbcpostgresql-adapter', :platform => :jruby
gem 'pg', :platform => :ruby
end
# Refinery/rails should pull in the proper versions of these
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
end
# Load local gems according to Refinery developer preference.
if File.exist?(local_gemfile = File.expand_path('../.gemfile', __FILE__))
eval File.read(local_gemfile)
end