-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
78 lines (56 loc) · 1.53 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
74
75
76
77
78
source "http://rubygems.org"
gem "rails", "~> 3.2.14"
# Used accross environments
#gem "rails-backbone"
gem "bcrypt-ruby", "~> 3.0.1" # To use ActiveModel has_secure_password
gem "bundler"
gem "cancan"
gem "carrierwave" #, git: "git://github.com/jnicklas/carrierwave.git"
gem "carrierwave_backgrounder"
gem "daemons"
gem "delayed_job_active_record" #, git: "git://github.com/collectiveidea/delayed_job_active_record.git"
gem "exception_notification"
gem "galetahub-simple_captcha", require: "simple_captcha"#, git: "git://github.com/galetahub/simple-captcha.git"
gem "jquery-rails"
gem "mini_magick"
gem "nested_form" #, git: "git://github.com/ryanb/nested_form.git"
gem "paper_trail"
gem "prawn_rails"
gem "rake"
gem "rvm"
gem "settingslogic"
gem "state_machine"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem "coffee-rails"
gem "jombo"
gem "pcs_tablesorter"
gem "sass-rails"
gem "uglifier"
end
group :development do
gem "capistrano"
gem "capistrano-ext"
gem "letter_opener"
gem "rvm-capistrano"
end
group :test do
gem "capybara"
gem "factory_girl_rails"
gem "guard-bundler"
gem "guard-rspec"
gem "guard-spork"
gem "launchy" # Ref: http://techiferous.com/2010/04/using-capybara-in-rails-3/ for save_and_open_page to work
gem "rack_session_access"
gem "spork-rails"
end
group :test, :development do
#gem "rb-fsevent" # Mac
gem "rb-inotify", "~> 0.9"
gem "rspec-rails", "~> 2.14.0"
gem "sqlite3"
end
group :production do
gem "mysql2"
end