forked from refinery/refinerycms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
50 lines (40 loc) · 1.55 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
source :rubygems
# Specify the database driver as appropriate for your application (only one).
gem 'mysql', :require => 'mysql'
#gem 'sqlite3-ruby', :require => 'sqlite3'
# Specify your favourite web server (only one).
gem 'unicorn', :group => :development
#gem 'mongrel', :group => :development
# Deploy with Capistrano
# gem 'capistrano'
# If you are using s3 you probably want this gem:
# gem 'aws-s3'
#===REFINERY REQUIRED GEMS===
gem 'acts_as_indexed', '= 0.6.2', :require => 'acts_as_indexed', :git => 'git://github.com/parndt/acts_as_indexed.git', :branch => 'master'
gem 'authlogic', '= 2.1.5', :require => 'authlogic'
gem 'friendly_id', '= 3.0.6', :require => 'friendly_id'
gem 'rails', '= 2.3.8'
gem 'rmagick', '~> 2.12.2'
gem 'truncate_html', '= 0.3.2', :require => 'truncate_html'
gem 'will_paginate', '= 2.3.14', :require => 'will_paginate'
group :test do
gem 'rspec'
gem 'rspec-rails'
gem 'factory_girl'
end
group :cucumber do
gem 'cucumber-rails'
gem 'capybara'
gem 'factory_girl'
gem 'database_cleaner'
gem 'launchy'
end
#===REFINERY END OF REQUIRED GEMS===
#===REQUIRED FOR REFINERY GEM INSTALL===
# Leave the gem below disabled (commented out) if you're not using the gem install method.
#gem 'refinerycms', '= 0.9.7.dev'
#===END OF REFINERY GEM INSTALL REQUIREMENTS===
# Bundle gems for certain environments:
# Specify your application's gem requirements here. See the examples below:
# gem "refinerycms-news", "~> 0.9.7", :require => "news"
# gem "refinerycms-portfolio", "~> 0.9.3.8", :require => "portfolio"