-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathGemfile
More file actions
27 lines (24 loc) · 564 Bytes
/
Gemfile
File metadata and controls
27 lines (24 loc) · 564 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
source "https://rubygems.org"
group :test do
gem 'rake'
gem 'rspec-wait'
gem 'git'
gem 'docker-api'
gem 'serverspec', '~> 2.24' # Docker 1.8 support
gem 'specinfra', '~> 2.44' # for Docker backend + send_file & commit (http://github.com/mizzy/specinfra/releases/tag/v2.43.11)
end
group :development do
gem 'travis'
gem 'rb-fsevent'
gem 'guard', '~> 2.13'
gem 'guard-rspec'
case RUBY_PLATFORM
when /darwin/
gem 'terminal-notifier-guard'
gem 'growl'
when /linux/
gem 'libnotify'
when /win32/
gem 'rb-notifu'
end
end