-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
36 lines (26 loc) · 1.01 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
source 'http://rubygems.org'
gem 'rails', '~> 3.0.5'
gem 'pg'
gem 'bcrypt-ruby'
gem 'aws-s3', :require => 'aws/s3'
# REFINERY CMS ================================================================
# Anything you put in here will be overridden when the app gets updated.
gem 'refinerycms'
group :development, :test do
# To use refinerycms-testing, uncomment it (if it's commented out) and run 'bundle install'
# Then, run 'rails generate refinerycms_testing' which will copy its support files.
# gem 'refinerycms-testing', '~> 0.9.9.13'
end
# END REFINERY CMS ============================================================
# USER DEFINED
# Specify additional Refinery CMS Engines here (all optional):
gem 'refinerycms-inquiries'
# gem 'refinerycms-news', '~> 1.0'
# gem 'refinerycms-portfolio', '~> 0.9.9'
gem 'refinerycms-theming'
# gem 'refinerycms-search', '~> 0.9.8'
# gem 'refinerycms-blog', '~> 1.3'
gem 'refinerycms-page-images'
gem 'heroku'
gem 'taps', '~> 0.3.22'
# END USER DEFINED