-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
84 lines (59 loc) · 1.37 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
79
80
81
82
83
84
source "http://rubygems.org"
# Our foundation
gem "rails", "~> 3.2.16"
# Used accross environments
gem "bcrypt-ruby", "~> 3.0.1"
gem "bundler"
gem "cancan"
gem "carrierwave"
gem "carrierwave_backgrounder"
gem "daemons"
gem "delayed_job_active_record"
gem "exception_notification"
gem "galetahub-simple_captcha", require: "simple_captcha"#, git: "git://github.com/galetahub/simple-captcha.git"
gem "jquery-rails"
gem "meta-tags", require: "meta_tags"
gem "nested_form"
gem "paper_trail"
gem "prawn_rails"
gem "rake"
gem "roman-numerals"
gem "rvm"
gem "settingslogic"
gem "sqlite3"
gem "state_machine"
gem "tinder"
gem "twitter"
# 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 :test, :development do
gem "rb-fsevent"
gem "rb-inotify"
gem "rspec-rails"
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 :development do
gem "capistrano"
gem "capistrano-ext"
gem "letter_opener"
gem "rvm-capistrano", require: false
end
group :production do
gem "mysql2"
end