-
Notifications
You must be signed in to change notification settings - Fork 100
/
Gemfile
47 lines (36 loc) · 903 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
44
45
46
47
source "http://rubygems.org"
gemspec
git "https://github.com/refinery/refinerycms", branch: "master" do
gem "refinerycms"
group :test do
gem "refinerycms-testing"
end
end
gem 'refinerycms-acts-as-indexed', git: 'https://github.com/refinery/refinerycms-acts-as-indexed', branch: 'master'
# Refinery/Rails should pull in the proper versions of these
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'jquery-rails'
group :development, :test do
gem 'pry'
gem 'launchy'
gem 'generator_spec', '~> 0.9.0'
require 'rbconfig'
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
gem 'activerecord-jdbcmysql-adapter'
gem 'activerecord-jdbcpostgresql-adapter'
gem 'jruby-openssl'
end
unless defined?(JRUBY_VERSION)
gem 'sqlite3'
gem 'mysql2'
gem 'pg'
end
end
group :test do
gem 'rspec-activemodel-mocks'
end