macros4cuke 0.3.11 → 0.3.12
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/.rspec +1 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +5 -1
- data/README.md +1 -1
- data/lib/macros4cuke/constants.rb +1 -1
- metadata +5 -2
data/.rspec
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--backtrace
|
data/.ruby-gemset
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
macros4cuke
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.9.3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
## 0.3.
|
|
1
|
+
## 0.3.12 / 2013-05-14
|
|
2
|
+
* [NEW] File `.ruby-gemset` Added (for RVM users).
|
|
3
|
+
* [NEW] File `.ruby-version` Added (for RVM users).
|
|
4
|
+
|
|
5
|
+
## 0.3.11 / 2013-05-14
|
|
2
6
|
* [CHANGE] File `README.md`: Minor reformating.
|
|
3
7
|
* [CHANGE] File `basic.feature` (in examples/): Added one more macro-step example.
|
|
4
8
|
|
data/README.md
CHANGED
|
@@ -8,7 +8,7 @@ _Add macros to your Cucumber scenarios._
|
|
|
8
8
|
[Homepage](https://github.com/famished-tiger/Macros4Cuke)
|
|
9
9
|
|
|
10
10
|
__Macros4Cuke__ is a lightweight library that adds a macro facility your Cucumber scenarios.
|
|
11
|
-
With it, you can create any new step that replaces a sequence of
|
|
11
|
+
With it, you can create any new step that replaces a sequence of substeps.
|
|
12
12
|
All this can be done directly in your feature files without programming step definitions.
|
|
13
13
|
|
|
14
14
|
### Highlights ###
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: macros4cuke
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.12
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-05-
|
|
12
|
+
date: 2013-05-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: cucumber
|
|
@@ -81,6 +81,9 @@ executables: []
|
|
|
81
81
|
extensions: []
|
|
82
82
|
extra_rdoc_files: []
|
|
83
83
|
files:
|
|
84
|
+
- .rspec
|
|
85
|
+
- .ruby-gemset
|
|
86
|
+
- .ruby-version
|
|
84
87
|
- .simplecov
|
|
85
88
|
- .travis.yml
|
|
86
89
|
- .yardopts
|