cucumber-slices 0.0.1 → 0.0.2
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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/bin/cucumber-slices +5 -4
- data/cucumber-slices.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae4a03739d39cd82a6a7609586add2240485f033
|
|
4
|
+
data.tar.gz: 90bc2c713873ba35d56e736775dfa8f6462ab948
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 554683ef6749752e5e358465a29c1b5549a3f2daec7524fd6eec06f7e3a7de9806b126ea63562cd388fd9ec8d811c678cba4cf7e7abd5cbf4708df8006999cf9
|
|
7
|
+
data.tar.gz: 46c286a3f6b23a7254a5844c458597e7a75acb0cb6770a7eccf456b7660b48fa16191f2700371ddab6303cc6b1458eece850336a4f69bb1661a0333cabbb2498
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.2
|
data/bin/cucumber-slices
CHANGED
|
@@ -23,11 +23,14 @@ rescue Docopt::Exit => e
|
|
|
23
23
|
puts e.message
|
|
24
24
|
end
|
|
25
25
|
|
|
26
|
-
if opts
|
|
26
|
+
if !opts
|
|
27
27
|
puts doc
|
|
28
|
+
exit
|
|
28
29
|
end
|
|
29
30
|
|
|
30
|
-
|
|
31
|
+
if opts['-h']
|
|
32
|
+
puts doc
|
|
33
|
+
end
|
|
31
34
|
|
|
32
35
|
if opts['<feature_file>']
|
|
33
36
|
lines_range = nil
|
|
@@ -51,8 +54,6 @@ if opts['<feature_file>']
|
|
|
51
54
|
step_file = step_file_with_underscore if File.exists? step_file_with_underscore
|
|
52
55
|
end
|
|
53
56
|
|
|
54
|
-
# catch 'em all!
|
|
55
|
-
# TODO: don't catch them all, just catch file not found
|
|
56
57
|
begin
|
|
57
58
|
open(step_file) do |file|
|
|
58
59
|
cs.extract_steps file
|
data/cucumber-slices.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: cucumber-slices 0.0.
|
|
5
|
+
# stub: cucumber-slices 0.0.2 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "cucumber-slices"
|
|
9
|
-
s.version = "0.0.
|
|
9
|
+
s.version = "0.0.2"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|