-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
30 lines (27 loc) · 842 Bytes
/
Gemfile
File metadata and controls
30 lines (27 loc) · 842 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
# If you need to 'vendor your gems' for deploying your daemons, bundler is a
# great option. Update this Gemfile with any additional dependencies and run
# 'bundle install' to get them all installed. Daemon-kit's capistrano
# deployment will ensure that the bundle required by your daemon is properly
# installed.
#
# For more information on bundler, please visit http://gembundler.com
source 'https://rubygems.org'
ruby '2.0.0'
# daemon-kit
gem 'daemon-kit'
gem 'sqlite3'
gem 'github_api'
gem 'activerecord', '~> 4.0.0'
gem 'rest-client'
gem 'json'
gem 'parallel'
# safely (http://github.com/kennethkalmer/safely)
gem 'safely'
# gem 'toadhopper' # For reporting exceptions to hoptoad
# gem 'mail' # For reporting exceptions via mail
gem 'rufus-scheduler', '>= 2.0.3'
group :development, :test do
gem 'pry'
gem 'rake'
gem 'rspec'
end