-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (26 loc) · 762 Bytes
/
Gemfile
File metadata and controls
34 lines (26 loc) · 762 Bytes
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
source "https://rubygems.org"
gemspec
git "https://github.com/refinery/refinerycms", branch: "master" do
gem "refinerycms"
group :test do
gem "refinerycms-testing"
end
end
gem 'generator_spec', '~> 0.9.3'
group :development do
gem 'listen'
end
# Database Configuration
unless ENV['TRAVIS']
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'sqlite3', :platform => :ruby
end
if !ENV['TRAVIS'] || ENV['DB'] == 'mysql'
gem 'activerecord-jdbcmysql-adapter', :platform => :jruby
gem 'jdbc-mysql', '= 5.1.13', :platform => :jruby
gem 'mysql2', '~> 0.5', :platform => :ruby
end
if !ENV['TRAVIS'] || ENV['DB'] == 'postgresql'
gem 'activerecord-jdbcpostgresql-adapter', :platform => :jruby
gem 'pg', :platform => :ruby
end