forked from refinery/refinerycms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
72 lines (54 loc) · 2.03 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
source 'http://rubygems.org'
gemspec
gem 'rails'
gem "rack"#, :git => "git://github.com/rack/rack.git"
gem "arel"#, :git => "https://github.com/rails/arel.git"
gem 'friendly_id_globalize3'#, :path => "../tmp/friendly_id"
gem 'therubyracer'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails'
if RUBY_PLATFORM == 'java'
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.0.2', :platform => :jruby
else
gem 'sqlite3'
gem 'mysql2'
end
# Asset template engines
gem 'sass'
gem 'coffee-script'
gem 'uglifier'
gem 'jquery-rails'
# Use unicorn as the web server
# gem 'unicorn'
# gem 'mongrel'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
gem 'ruby-debug', :platform => :mri_18
# or in 1.9.x:
gem 'ruby-debug19', :platform => :mri_19
# For Heroku/s3:
# gem 'fog'
# REFINERY CMS ================================================================
# Anything you put in here will be overridden when the app gets updated.
# gem 'refinerycms', '~> 1.1.0'
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.
# Finally, run 'rake' to run the tests.
gem 'refinerycms-testing', '~> 1.1.0'
end
# END REFINERY CMS ============================================================
# REFINERY CMS DEVELOPMENT ====================================================
# END REFINERY CMS DEVELOPMENT =================================================
# USER DEFINED
# Specify additional Refinery CMS Engines here (all optional):
# gem 'refinerycms-inquiries', '~> 1.0'
# gem "refinerycms-news", '~> 1.2'
# gem 'refinerycms-blog', '~> 1.5'
# gem 'refinerycms-page-images', '~> 1.0'
# Add i18n support (optional, you can remove this if you really want to).
gem 'refinerycms-i18n', '~> 1.1.0',
:git => 'git://github.com/resolve/refinerycms-i18n',
:branch => 'rails-3-1'
# END USER DEFINED