features/cucumber_kata.feature in shuhari-0.1.0 vs features/cucumber_kata.feature in shuhari-0.1.1
- old
+ new
@@ -21,11 +21,11 @@
end
"""
And the file "fizz_buzz/features/support/env.rb" should contain:
"""
$LOAD_PATH.unshift File.expand_path('../../lib', File.dirname(__FILE__))
-
+
require 'fizz_buzz'
require 'rspec/expectations'
"""
And the file "fizz_buzz/Guardfile" should contain:
"""
@@ -44,46 +44,58 @@
@osx
Scenario: OS X
When I run `shuhari new FizzBuzz --cucumber`
Then the file "fizz_buzz/Gemfile" should contain:
"""
+ source 'https://rubygems.org'
+
group :development do
+ gem 'shuhari'
gem 'cucumber'
gem 'rspec'
gem 'guard-cucumber'
gem 'coolline', :require => false
gem 'growl'
# gem 'growl_notify'
# gem 'ruby_gntp'
+ # gem 'terminal-notifier-guard'
gem 'rb-fsevent'
end
"""
@linux
Scenario: Linux
When I run `shuhari new FizzBuzz --cucumber`
Then the file "fizz_buzz/Gemfile" should contain:
"""
+ source 'https://rubygems.org'
+
group :development do
+ gem 'shuhari'
gem 'cucumber'
gem 'rspec'
gem 'guard-cucumber'
gem 'coolline', :require => false
gem 'libnotify'
+ # gem 'ruby_gntp'
gem 'rb-inotify'
end
"""
@windows
Scenario: Windows
When I run `shuhari new FizzBuzz --cucumber`
Then the file "fizz_buzz/Gemfile" should contain:
"""
+ source 'https://rubygems.org'
+
group :development do
+ gem 'shuhari'
gem 'cucumber'
gem 'rspec'
gem 'guard-cucumber'
gem 'rb-notifu'
gem 'win32console'
+ # gem 'ruby_gntp'
gem 'wdm'
end
"""