macros4cuke 0.5.08 → 0.5.09
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 +8 -8
- data/.rubocop.yml +5 -4
- data/CHANGELOG.md +7 -1
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/lib/macros4cuke/constants.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZDQ1MjA4MDZkNTBlNTE4YzRiZDNmMDczYzg0Yjk4YmFlNmJjOThlNQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZmMwNzU4NmE0N2M0ODcyMmExOGZkMjc2Yzc0NWFkZmYyYmE3OWZiYw==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YzVmZjUxY2I3OWE0MzVjMTk3OWE4MTRiZWE4OTg1YjY5OGU2Njc3NjMwYjAz
|
|
10
|
+
MzU3Y2QxOGFkNWI3YzE3ZGI1YWJlODEzOWE0ZGE5MjYxMTljNTU1N2I4OTQ2
|
|
11
|
+
NjE5ODRmZTlhMjYyZjAwNGQ5ZTZkNmE4Y2RhM2E3OGUzYzQzNTk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZWU3NzczMjM1MzhkOWU4ZTZlMTRkZDhlMTU3OGVjMjg2ZmE1ZDI4OWNiODg0
|
|
14
|
+
YWI3MmUyY2JjM2U0OGQxZTUzZDNkZmI5NWQ3YzllZDgzYjY2MjJiOTJhZDY5
|
|
15
|
+
Nzg3MGRkOWM3NmE3MjBjZjRkNGQ2MGFiZTQ0MjhiNDY3YWIxMjg=
|
data/.rubocop.yml
CHANGED
|
@@ -3,6 +3,7 @@ AllCops:
|
|
|
3
3
|
- 'examples/**/*'
|
|
4
4
|
- 'features/**/*'
|
|
5
5
|
- 'gems/**/*'
|
|
6
|
+
- 'lab/**/*'
|
|
6
7
|
|
|
7
8
|
AbcSize:
|
|
8
9
|
Max: 45
|
|
@@ -38,10 +39,7 @@ Documentation:
|
|
|
38
39
|
Enabled: false
|
|
39
40
|
|
|
40
41
|
EmptyLines:
|
|
41
|
-
Enabled: false
|
|
42
|
-
|
|
43
|
-
EmptyLinesAroundBody:
|
|
44
|
-
Enabled: false
|
|
42
|
+
Enabled: false
|
|
45
43
|
|
|
46
44
|
Encoding:
|
|
47
45
|
Enabled: false
|
|
@@ -64,6 +62,9 @@ NonNilCheck:
|
|
|
64
62
|
NumericLiterals:
|
|
65
63
|
Enabled: false
|
|
66
64
|
|
|
65
|
+
PerceivedComplexity:
|
|
66
|
+
Max: 10
|
|
67
|
+
|
|
67
68
|
RaiseArgs:
|
|
68
69
|
Enabled: false
|
|
69
70
|
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
### 0.5.
|
|
1
|
+
### 0.5.09 / 2015-02-06
|
|
2
|
+
* [CHANGE] Minimal code layout reformat to please Rubocop 0.29.0
|
|
3
|
+
* [CHANGE] File `README.md` added licensing badge (MIT license)
|
|
4
|
+
* [FIX] File `.rubocop.yml`: removal of setting for obsolete EmptyLinesAroundBody cop.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### 0.5.08 / 2015-02-03
|
|
2
8
|
* [CHANGE] Code layout reformat to please Rubocop 0.28.0 (Removal of 'Extra empty line detected at...' offenses)
|
|
3
9
|
* [TEST] Regression tests with Cucumber 1.3.18: all pass
|
|
4
10
|
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -8,7 +8,7 @@ _Extend Cucumber with macro-steps._
|
|
|
8
8
|
[](https://codeclimate.com/github/famished-tiger/Macros4Cuke.png)
|
|
9
9
|
[](http://badge.fury.io/rb/macros4cuke)
|
|
10
10
|
[](https://gemnasium.com/famished-tiger/Macros4Cuke)
|
|
11
|
-
|
|
11
|
+
[](https://github.com/famished-tiger/Macros4Cuke/blob/master/LICENSE.txt)
|
|
12
12
|
|
|
13
13
|
__Macros4Cuke__ is a Cucumber extension that adds a macro facility for your Cucumber scenarios.
|
|
14
14
|
With it, you can create any new step that replaces a sequence of sub-steps.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: macros4cuke
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.09
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dimitri Geshef
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-02-
|
|
11
|
+
date: 2015-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cucumber
|