forked from huboard/huboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
59 lines (52 loc) · 1015 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
52
53
54
55
56
57
58
59
source 'https://rubygems.org'
ruby "2.1.2"
gem 'sinatra', "~> 1.4.0"
gem 'sinatra-contrib', github: 'maccman/sinatra-contrib'
gem 'sprockets-memcache-store'
gem 'rack-standards'
gem 'thin'
gem 'erubis'
gem 'i18n'
gem 'activesupport'
gem 'dotenv'
gem 'rake'
gem 'uglifier'
gem 'closure-compiler'
gem 'yui-compressor'
gem 'coffee-script'
gem 'sinatra-pubsub'
gem 'encryptor'
gem 'rack-no-www'
gem 'rdiscount'
gem 'slim'
gem 'warden-github'
gem 'ghee'
gem 'rack-ssl'
gem 'addressable'
gem 'kgio'
gem 'dalli'
gem 'connection_pool'
gem 'octokit'
gem 'rack-robustness'
gem 'sprockets'
gem 'sass', '~> 3.3.9'
gem 'sprockets-helpers'
gem 'execjs', "~> 1.4"
gem 'sucker_punch', '~> 1.0'
gem 'eventmachine'
gem 'memcachier'
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
group :development do
gem 'shotgun'
gem 'foreman'
gem 'heroku'
gem 'pry'
gem 'pry-rescue'
gem 'pry-stack_explorer'
gem 'better_errors'
end
group :production do
gem 'newrelic_rpm'
gem 'puma'
gem 'raygun4ruby'
end