cuke-patterns 0.1.0 → 0.1.1
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/.gitignore +21 -0
- data/README.markdown +1 -1
- data/VERSION +1 -1
- data/cuke-patterns.gemspec +3 -2
- metadata +3 -2
data/.gitignore
ADDED
data/README.markdown
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Makes cucumber step definitions more focused, understandable, searchable and awesomeable.
|
4
4
|
|
5
|
-
* Author: Brendan Baldwin
|
5
|
+
* Author: Brendan Baldwin - brendan@usergenic.com
|
6
6
|
* Github: http://github.com/brendan/cuke-patterns
|
7
7
|
|
8
8
|
## What does it do?
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/cuke-patterns.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{cuke-patterns}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Brendan Baldwin"]
|
@@ -17,7 +17,8 @@ Gem::Specification.new do |s|
|
|
17
17
|
"README.markdown"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
|
-
"
|
20
|
+
".gitignore",
|
21
|
+
"LICENSE",
|
21
22
|
"README.markdown",
|
22
23
|
"Rakefile",
|
23
24
|
"VERSION",
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Brendan Baldwin
|
@@ -28,6 +28,7 @@ extra_rdoc_files:
|
|
28
28
|
- LICENSE
|
29
29
|
- README.markdown
|
30
30
|
files:
|
31
|
+
- .gitignore
|
31
32
|
- LICENSE
|
32
33
|
- README.markdown
|
33
34
|
- Rakefile
|