forked from huboard/huboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
56 lines (50 loc) · 958 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
source 'https://rubygems.org'
ruby "2.0.0"
gem 'encryptor'
gem 'rack-no-www'
gem 'rdiscount'
gem 'slim'
gem 'sinatra', "~> 1.4.0"
gem 'warden-github'
gem 'sinatra-content-for', "~> 0.1.0"
gem 'ghee'
gem 'rack-cache'
gem 'rack-ssl'
gem 'activesupport'
gem 'addressable'
gem 'kgio'
gem 'dalli'
gem 'connection_pool'
gem 'octokit'
gem 'rack-robustness'
gem 'coffee-script'
gem 'uglifier'
gem 'yui-compressor'
gem 'sprockets'
gem 'compass'
gem 'sass'
gem 'bourbon'
gem 'sprockets-helpers'
gem 'sinatra-asset-pipeline'
gem 'execjs', "~> 1.4"
gem 'guard-sprockets2'
gem 'sucker_punch', '~> 1.0'
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
group :development do
#gem 'couch_docs'
gem 'dotenv'
gem 'watchr'
gem 'shotgun'
gem 'foreman'
gem 'thin'
gem 'heroku'
gem 'pry'
gem 'pry-rescue'
gem 'pry-stack_explorer'
gem 'better_errors'
gem 'librarian-chef'
end
group :production do
gem 'newrelic_rpm'
gem 'unicorn'
end