-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
39 lines (34 loc) · 2.18 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
source 'http://rubygems.org'
gem 'rack'
gem 'rails', '3.0.7'
gem 'mysql2', '~> 0.2.7'
gem 'capistrano'
gem 'rvm-capistrano'
gem 'devise' # => https://github.com/plataformatec/devise
gem 'paperclip' # => https://github.com/thoughtbot/paperclip
gem 'will_paginate', '~> 3.0' # => https://github.com/mislav/will_paginate
gem 'formtastic', '~> 1.2.3' # => https://github.com/justinfrench/formtastic
gem 'acts-as-taggable-on' # => https://github.com/mbleigh/acts-as-taggable-on
# acts_as_rateable plugin # => https://github.com/azabaj/acts_as_rateable/
gem 'haml' # => https://haml-lang.com
gem 'sass' # => https://sass-lang.com
gem 'jquery-rails' # => https://github.com/indirect/jquery-rails
gem 'friendly_id' # => https://github.com/norman/friendly_id
gem "transitions", :require => ["transitions", "active_record/transitions"] # => https://github.com/qoobaa/transitions
gem 'delayed_job' # => https://github.com/collectiveidea/delayed_job
gem 'delayed_paperclip' # => https://github.com/jstorimer/delayed_paperclip
gem 'passenger'
gem 'net-ldap'
# 'pretty_flash' Plugin # => https://github.com/rpheath/pretty_flash
gem 'ssl_requirement' # => https://github.com/retr0h/ssl_requirement
group :development do
gem 'hpricot'
gem 'ruby_parser'
end
group :test, :cucumber do
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'cucumber-rails'
gem 'database_cleaner'
gem 'capybara'
end