forked from refinery/refinerycms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
73 lines (54 loc) · 2.24 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
73
source 'http://rubygems.org'
gemspec
# 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'
gem 'refinerycms-generators', '~> 1.1.0', :git => 'git://github.com/resolve/refinerycms-generators.git'
gem 'seo_meta', :git => 'git://github.com/parndt/seo_meta.git'
gem 'globalize3', :git => 'git://github.com/svenfuchs/globalize3.git'
gem 'awesome_nested_set', :git => 'git://github.com/collectiveidea/awesome_nested_set.git'
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 ====================================================
gem 'therubyracer'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git', :branch => '3-1-stable'
# gem 'rack', :git => 'git://github.com/rack/rack.git'
# gem 'arel', :git => 'git://github.com/rails/arel.git'
if RUBY_PLATFORM == 'java'
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.0.2', :platform => :jruby
else
gem 'sqlite3'
gem 'mysql2'
end
# Asset template engines
gem 'sass-rails', '>= 3.1.0.rc.5'
gem 'coffee-script'
gem 'uglifier'
gem 'jquery-rails'
# 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.6'
# 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/parndt/refinerycms-i18n'
# END USER DEFINED