forked from parndt/p-dot-arndt-dot-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
53 lines (40 loc) · 1.3 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
53
source 'https://rubygems.org'
ruby '2.1.2'
gem 'puma'
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.0.3'
gem 'compass'
gem 'compass-rails'
gem 'jquery-rails'
group :production do
gem 'newrelic_rpm'
end
# Refinery CMS
git 'https://github.com/refinery/refinerycms.git', branch: 'master' do
gem 'refinerycms'
gem 'refinerycms-testing', group: 'test'
end
# Specify additional Refinery CMS Extensions here (all optional):
gem 'refinerycms-i18n', github: 'refinery/refinerycms-i18n', branch: 'master'
gem 'refinerycms-blog', github: 'refinery/refinerycms-blog', branch: 'master'
gem 'refinerycms-inquiries', github: 'refinery/refinerycms-inquiries', branch: 'master'
gem 'refinerycms-settings', github: 'refinery/refinerycms-settings', branch: 'master'
gem 'refinerycms-acts-as-indexed', github: 'refinery/refinerycms-acts-as-indexed', branch: 'master'
gem 'refinerycms-wymeditor', github: 'parndt/refinerycms-wymeditor', branch: 'take-2'
# Add postgres support
gem 'activerecord-jdbcpostgresql-adapter', platform: :jruby
gem 'pg', platform: :ruby
# Fog allows you to use S3 assets (added for Heroku)
gem 'fog'
group :development do
gem 'quiet_assets'
end
group :test do
gem 'generator_spec'
gem 'rspec-rails'
end
group :development, :test do
gem 'pry'
gem 'pry-nav'
end