forked from sunlightlabs/scout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
67 lines (51 loc) · 1.22 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
source 'https://rubygems.org'
gem 'oj'
gem 'multi_json'
gem 'curb'
gem 'safe_yaml' # avoids problems with YAML vulnerabilities, but no symbol keys
gem 'sinatra', '~> 1.4'
gem 'sinatra-cross_origin'
gem 'sinatra-contrib', '~> 1.4'
gem 'sinatra-flash'
gem 'padrino-helpers', '~> 0.11'
gem 'rinku'
gem 'escape_utils'
gem "mongoid", '~> 3.1'
gem "mongoid-paperclip", require: "mongoid_paperclip"
# exception handling
gem "sentry-raven", github: "getsentry/raven-ruby"
# asset syncing to S3 AND backup monitoring
gem "aws-sdk"
gem 'asset_sync'
gem "unf"
gem 'ruby-hmac'
gem 'bcrypt'
# detect gov't and educational email addresses
gem 'gman'
gem 'swot'
gem 'postmark', '~> 1.0'
gem 'pony', '~> 1.4'
gem 'slack-notifier' # yes
gem 'rack', '~> 1.5'
gem 'rack-ssl'
gem 'rake'
gem 'big_sitemap'
group :development do
gem 'wirb'
gem 'paint'
gem 'unicorn'
gem 'rblineprof'
gem 'rack-lineprof'
end
group :test do
gem 'rack-test'
gem 'rspec-mocks', '~> 2.14' # 3.X would need refactoring
gem 'timecop', '~> 0.7'
gem 'factory_girl'
end
# feed parsing and discovery
gem 'feedjira'
gem 'feedbag'
gem 'sanitize'
# advanced search string parsing
gem 'lucene_query_parser', git: 'git://github.com/sunlightlabs/lucene_query_parser.git'