-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (29 loc) · 760 Bytes
/
Gemfile
File metadata and controls
36 lines (29 loc) · 760 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
36
source 'https://rubygems.org'
gemspec
group :development do
gem 'ruby-graphviz', '~> 1.0'
gem 'rspec', '~> 2.10'
gem 'cucumber', '~> 1.2'
gem 'aruba', '~> 0.5'
gem 'simplecov', '~> 0.7.1', :require => false
gem 'yard'
gem 'guard-rspec'
gem 'guard-cucumber'
gem 'rattler', :path => '.'
gem 'coolline', :require => false
# uncomment one of the following for guard notifications on OS X
# gem "growl"
# gem "growl_notify"
# gem "ruby_gntp"
# gem 'terminal-notifier-guard'
gem 'rb-fsevent', :require => false
gem 'libnotify', :require => false
gem 'rb-inotify', :require => false
platforms :mswin, :mingw do
gem 'rb-readline'
gem 'rb-notifu'
gem 'win32console'
# gem 'ruby_gntp'
gem 'wdm'
end
end