-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (35 loc) · 854 Bytes
/
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
source "https://rubygems.org"
ruby "2.3.0"
gem 'rack-host-redirect'
gem "rails", "4.1.12"
gem "puma"
gem "rails_12factor"
gem "mysql2", '~> 0.3.18'
gem 'pg', '~> 0.11'
# 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 'flying-sphinx', '1.2.0'
gem "uglifier", ">= 1.3.0"
gem "jquery-rails"
gem "dynamic_form"
gem "exception_notification"
gem "postmark-rails"
gem "bcrypt", "~> 3.1.2"
gem "nokogiri", "= 1.6.1"
gem "htmlentities"
gem "rdiscount"
gem "twitter-bootstrap-rails"
gem "activerecord-typedstore"
gem 'sitemap_generator'
gem 'friendly_id'
# for twitter-posting bot
gem "oauth"
# for parsing incoming mail
gem "mail"
group :test, :development do
gem "rspec-rails"
gem "machinist"
gem "sqlite3"
gem "faker"
end