forked from lobsters/lobsters
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
48 lines (34 loc) · 840 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
source "https://rubygems.org"
gem "rails", "4.2.8"
gem "unicorn"
gem "mysql2", ">= 0.4.10", "<0.5"
# 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 "uglifier", ">= 1.3.0"
gem "jquery-rails"
gem "dynamic_form"
gem "exception_notification"
gem "bcrypt", "~> 3.1.2"
gem "rotp"
gem "rqrcode"
gem "nokogiri", "= 1.6.8"
gem "htmlentities"
gem "commonmarker", "~> 0.17.9"
gem "activerecord-typedstore"
# for twitter-posting bot
gem "oauth"
# for parsing incoming mail
gem "mail"
gem 'scenic', "1.4.0"
gem 'scenic-mysql'
group :test, :development do
gem "rspec-rails", "~> 3.5", ">= 3.5.2"
gem "machinist"
gem "sqlite3"
gem "faker"
end
gem 'piwik_analytics', '~> 1.0.1'