forked from backup/backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
56 lines (50 loc) · 1.41 KB
/
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
# encoding: utf-8
source 'https://rubygems.org'
##
# Gemfile.lock controls the dependencies used when running the specs in `spec/`.
#
# backup.gemspec controls the dependencies that will be installed and used by
# the released version of backup. It also controls the dependencies used when
# running the specs in `vagrant/spec`, which are run on the VM.
#
# Whenever Gemfile.lock is updated, `rake gemspec` must be run to sync
# backup.gemspec with Gemfile.lock. All gems in the :production group
# (and their dependencies) will be added to backup.gemspec.
#
# Note that due to this, backup itself is not part of the bundle.
# If you need to run backup from the project root, use:
# $ ruby -rbundler/setup -Ilib ./bin/backup
##
# Specify version requirements to control `bundle update` if needed.
group :production do
gem 'thor'
gem 'open4'
gem 'fog'
# gem 'excon' - use version specified by fog
gem 'unf' # for fog/AWS
gem 'dropbox-sdk', '= 1.5.1' # patched
gem 'net-ssh'
gem 'net-scp'
gem 'net-sftp'
gem 'mail', '= 2.5.4' # patched
gem 'pagerduty'
gem 'twitter'
gem 'hipchat'
gem 'flowdock'
gem 'json'
gem 'dogapi'
gem 'aws-ses'
end
gem 'rspec'
gem 'fuubar'
gem 'mocha'
gem 'timecop'
# Omitted from Travis CI Environment
group :no_ci do
gem 'rb-fsevent' # Mac OS X
gem 'rb-inotify' # Linux
gem 'pry'
gem 'yard'
gem 'redcarpet'
# gem 'rake' - this will interfere with `rake gemspec`
end