forked from lobsters/lobsters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
65 lines (42 loc) · 1.06 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
source "https://rubygems.org"
gem "rails", "4.1.12"
gem "unicorn"
#gem "mysql2", ">= 0.3.14"
# uncomment to use PostgreSQL
gem "pg"
#
# NOTE: If you use PostgreSQL, you must still leave enabled the above mysql2
# gem for Sphinx full text search to function.
#gem "thinking-sphinx", "~> 3.1.2"
gem 'pg_search'
#gem 'searchkick'
gem "uglifier", ">= 1.3.0"
gem "jquery-rails"
gem "dynamic_form"
gem "exception_notification"
#gem "bcrypt", "~> 3.1.2"
gem 'devise'
gem "nokogiri", "= 1.6.1"
gem "htmlentities"
gem "rdiscount"
# for twitter-posting bot
gem "oauth"
gem "omniauth-facebook"
gem "omniauth-google-oauth2"
# for parsing incoming mail
gem "mail"
gem 'mailgun_rails', '0.8.0', :path=> "vendor/gems/mailgun_rails-0.8.0"#, :require => ["mailgun_rails", "rest-client"]
gem "recaptcha", require: "recaptcha/rails"
gem 'social-share-button'
gem 'phonelib'
#gem 'activejob_backport'
gem 'sidekiq'
#gem 'devise-async'
gem 'puma'
group :test, :development do
gem "rspec-rails", "~> 2.6"
gem "machinist"
gem "sqlite3"
gem "faker"
gem 'web-console', '~> 2.0'
end