forked from kopertop/papertrail-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (33 loc) · 711 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
ruby "1.9.3"
source 'https://rubygems.org'
gem 'sinatra'
gem 'activesupport', '~> 3.0', :require => 'active_support'
gem 'yajl-ruby', :require => [ 'yajl', 'yajl/json_gem' ]
gem 'faraday'
gem 'tzinfo'
gem 'hoptoad_notifier'
gem "sentry-raven"
# service: mail
gem 'mail', '~> 2.2'
# service :campfire
gem 'tinder', '~> 1.4'
# service :hipchat
gem 'hipchat-api'
# service :libratometrics
gem 'librato-metrics', '~> 1.0.1', :require => "librato/metrics"
group :development do
gem 'foreman'
gem 'heroku'
end
group :building do
gem 'rake'
end
group :production do
gem 'pg'
# Use unicorn as the web server
gem 'unicorn'
gem 'puma'
end
group :test do
gem 'mocha', :require => false
end