-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
57 lines (48 loc) · 1.9 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
source :rubygems
# Specify the database driver as appropriate for your application (only one is necessary).
# Defaults to sqlite3. Don't remove any of these below in the core or gems won't install.
gem 'sqlite3-ruby', :require => 'sqlite3' #db_adapter=sqlite3
# gem 'mysql', :require => 'mysql' #db_adapter=mysql
# gem 'pg' #db_adapter=postgresql
# Specify your favourite web server (only one) - not required.
# gem 'unicorn', :group => :development
# gem 'mongrel', :group => :development
# Deploy with Capistrano
# gem 'capistrano'
# If you are using Amazon S3 you probably want this gem:
# gem 'aws-s3'
#===REFINERY REQUIRED GEMS===
gem 'acts_as_indexed', '= 0.6.6', :require => 'acts_as_indexed'
gem 'authlogic', '= 2.1.6', :require => 'authlogic'
gem 'friendly_id', '= 3.1.7', :require => 'friendly_id'
gem 'rails', '= 2.3.10'
gem 'rmagick', '~> 2.12.0'
gem 'truncate_html', '= 0.3.2', :require => 'truncate_html'
gem 'will_paginate', '= 2.3.14', :require => 'will_paginate'
group :test do
gem 'json_pure', '=1.4.6', :require => 'json/pure'
gem 'factory_girl'
gem 'test-unit', '= 1.2.3'
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'rspec'
gem 'rspec-rails'
gem 'spork' unless RUBY_PLATFORM =~ /mswin|mingw/
gem 'launchy'
gem 'gherkin'
gem 'factory_girl'
gem 'ruby-prof'
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.15'
#===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.3", :require => "news"
# gem "refinerycms-portfolio", "~> 0.9.6", :require => "portfolio"
gem 'albino'
gem 'acts-as-taggable-on', '2.0.0.rc1'