blimpy-cucumber 0.0.4 → 0.0.5
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/lib/blimpy/cucumber/api.rb +4 -3
- data/lib/blimpy/cucumber/version.rb +1 -1
- metadata +3 -9
data/lib/blimpy/cucumber/api.rb
CHANGED
|
@@ -75,7 +75,7 @@ module Blimpy
|
|
|
75
75
|
end
|
|
76
76
|
|
|
77
77
|
def work_dir
|
|
78
|
-
File.
|
|
78
|
+
File.join(Dir.pwd, 'tmp', 'cucumber')
|
|
79
79
|
end
|
|
80
80
|
|
|
81
81
|
def manifest_path
|
|
@@ -95,8 +95,9 @@ module Blimpy
|
|
|
95
95
|
|
|
96
96
|
# If we have an ignore file, we'll probably want it in the new tree as
|
|
97
97
|
# well
|
|
98
|
-
|
|
99
|
-
|
|
98
|
+
original_ignore = File.join(@original_dir, '.blimpignore')
|
|
99
|
+
if File.exists? original_ignore
|
|
100
|
+
FileUtils.ln_s(original_ignore, '.blimpignore')
|
|
100
101
|
end
|
|
101
102
|
end
|
|
102
103
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: blimpy-cucumber
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,7 @@ date: 2012-09-03 00:00:00.000000000Z
|
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: blimpy
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &17464840 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ~>
|
|
@@ -21,7 +21,7 @@ dependencies:
|
|
|
21
21
|
version: 0.6.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *17464840
|
|
25
25
|
description: Cucumber steps for testing with Blimpy
|
|
26
26
|
email:
|
|
27
27
|
- tyler@monkeypox.org
|
|
@@ -50,18 +50,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
50
50
|
- - ! '>='
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
52
|
version: '0'
|
|
53
|
-
segments:
|
|
54
|
-
- 0
|
|
55
|
-
hash: -1647332449013654325
|
|
56
53
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
57
54
|
none: false
|
|
58
55
|
requirements:
|
|
59
56
|
- - ! '>='
|
|
60
57
|
- !ruby/object:Gem::Version
|
|
61
58
|
version: '0'
|
|
62
|
-
segments:
|
|
63
|
-
- 0
|
|
64
|
-
hash: -1647332449013654325
|
|
65
59
|
requirements: []
|
|
66
60
|
rubyforge_project:
|
|
67
61
|
rubygems_version: 1.8.10
|