-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
43 lines (36 loc) · 866 Bytes
/
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
source "https://rubygems.org"
gemspec
git 'https://github.com/refinery/refinerycms.git', :branch => 'master' do
gem 'refinerycms'
group :development, :test do
gem 'refinerycms-testing'
end
end
# Database Configuration
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
gem 'activerecord-jdbcmysql-adapter'
gem 'activerecord-jdbcpostgresql-adapter'
gem 'jruby-openssl'
end
platforms :ruby do
gem 'sqlite3'
gem 'mysql2'
gem 'pg'
end
group :development, :test do
gem 'rspec-its' # for the model's validation tests.
platforms :ruby do
require 'rbconfig'
if RbConfig::CONFIG['target_os'] =~ /linux/i
gem 'therubyracer', '~> 0.11.4'
end
end
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end