aruba-jbb 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
- data/aruba-jbb.gemspec +2 -2
- data/features/file_system_commands.feature +5 -0
- data/lib/aruba/cucumber_steps.rb +1 -2
- metadata +4 -4
data/Rakefile
CHANGED
|
@@ -5,7 +5,7 @@ require 'rake'
|
|
|
5
5
|
begin
|
|
6
6
|
require 'jeweler'
|
|
7
7
|
Jeweler::Tasks.new do |gem|
|
|
8
|
-
gem.version = "0.2.
|
|
8
|
+
gem.version = "0.2.3"
|
|
9
9
|
gem.name = "aruba-jbb"
|
|
10
10
|
gem.summary = %Q{CLI Steps for Cucumber}
|
|
11
11
|
gem.description = %Q{CLI Steps for Cucumber, hand-crafted for you in Aruba}
|
data/aruba-jbb.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{aruba-jbb}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Aslak Helles\303\270y", "David Chelimsky", "James B. Byrne"]
|
|
12
|
-
s.date = %q{2010-07-
|
|
12
|
+
s.date = %q{2010-07-26}
|
|
13
13
|
s.description = %q{CLI Steps for Cucumber, hand-crafted for you in Aruba}
|
|
14
14
|
s.email = %q{cukes@googlegroups.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -74,6 +74,11 @@ Feature: file system commands
|
|
|
74
74
|
Then the following directories should exist:
|
|
75
75
|
| foo/bar |
|
|
76
76
|
| foo/bla |
|
|
77
|
+
|
|
78
|
+
Scenario: Check for absence of a subset of directories
|
|
79
|
+
Then the following directories should not exist:
|
|
80
|
+
| foo/bar |
|
|
81
|
+
| foo/bla |
|
|
77
82
|
|
|
78
83
|
Scenario: Check file contents
|
|
79
84
|
Given I do have a file named "foo" with:
|
data/lib/aruba/cucumber_steps.rb
CHANGED
|
@@ -14,7 +14,6 @@ end
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
Before('@no-aruba-tmpdir') do
|
|
17
|
-
puts aruba_working_dir
|
|
18
17
|
aruba_working_dir_set('./')
|
|
19
18
|
dirs_init
|
|
20
19
|
end
|
|
@@ -219,7 +218,7 @@ end
|
|
|
219
218
|
|
|
220
219
|
|
|
221
220
|
When /following directories? should not exist:$/ do |directories|
|
|
222
|
-
|
|
221
|
+
check_directory_presence(directories.raw.map{
|
|
223
222
|
|directory_row| directory_row[0]}, false)
|
|
224
223
|
end
|
|
225
224
|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aruba-jbb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 17
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.2.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- "Aslak Helles\xC3\xB8y"
|
|
@@ -17,7 +17,7 @@ autorequire:
|
|
|
17
17
|
bindir: bin
|
|
18
18
|
cert_chain: []
|
|
19
19
|
|
|
20
|
-
date: 2010-07-
|
|
20
|
+
date: 2010-07-26 00:00:00 -04:00
|
|
21
21
|
default_executable:
|
|
22
22
|
dependencies:
|
|
23
23
|
- !ruby/object:Gem::Dependency
|