forked from stripe-archive/gaps
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
35 lines (29 loc) · 752 Bytes
/
Gemfile
File metadata and controls
35 lines (29 loc) · 752 Bytes
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
ruby '2.1.9'
# Execute bundler hook (analogous to sourcing a dotfile)
['~/.', '/etc/'].any? do |file|
File.lstat(path = File.expand_path(file + 'bundle-gemfile-hook')) rescue next
eval(File.read(path), binding, path); break true
end || source('https://rubygems.org/')
gem 'thread'
gem 'puma'
gem 'rack-flash3'
gem 'rack_csrf'
gem 'erubis'
gem 'sinatra'
gem 'mongo', '~> 1.12'
gem 'mongo_mapper'
gem 'bson_ext'
gem 'einhorn'
gem 'chalk-log'
gem 'chalk-config'
gem 'rake'
#########
gem 'google-api-client', '~> 0.8.6'
gem 'configatron'
gem 'pry'
gem 'rest-client'
gem 'mail'
gem 'gmail-britta', :git => 'git://github.com/bkrausz/gmail-britta.git', :ref => 'ced6355443fe2b99f6414b2da096c70a38b23f98'
group :development, :test do
gem 'mocha'
end