macros4cuke 0.5.11 → 0.5.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.
- checksums.yaml +8 -8
- data/.travis.yml +6 -3
- data/CHANGELOG.md +5 -1
- data/lib/macros4cuke/constants.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
OTdmM2JkNWVlNGNjNjQ3YjkwYmY1N2FiNzJhYTcwY2YzMGZlYmMwMw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MTQ0NWZmYjgyY2VjMzhmMjFjMjExN2MwYWVkNzVmNmUyYzg4YjBkYg==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MzE2MjZiOGM5ZjczZjFjNDc1Mjc4MGQ3YmEyMGM2MzE2YTIwYTI5NTg3MmFj
|
|
10
|
+
ZDJhNTU3NTk1ODc5ZTQyNWRmM2U1NjBiNjJiMzhmNTI2NDUxMWJkNWQyOWYz
|
|
11
|
+
MWQwNzg1ZGVhN2RiMmRmZTZmMzNlOTM2Yzg1NGY1NmRhMjcyMGE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NGU5YmJmZTQ0YjUwMzMxNmE4NGI5ZmNhMmEyZjNkN2ExMjZlODIxOWMyYWI0
|
|
14
|
+
N2U1YTM5OWFjOTAzN2Y2MWVmNTUzMTQxNTAzY2Y4YjY1Yzk2MDYzY2I2NWM3
|
|
15
|
+
MmFkMDJiMDRjZDUyOTVkZDhlYjJhZmVkNzI4OTMzMDZmMDA4Y2I=
|
data/.travis.yml
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
rvm:
|
|
3
|
+
- ruby-head
|
|
4
|
+
- 2.2.0
|
|
3
5
|
- 2.1.0
|
|
4
6
|
- 2.0.0
|
|
5
7
|
- 1.9.3
|
|
6
|
-
- 1.9.2
|
|
7
|
-
- jruby-19mode
|
|
8
8
|
- jruby-head
|
|
9
|
+
- jruby-19mode
|
|
10
|
+
|
|
9
11
|
|
|
10
|
-
# Workaround issue of jruby-head configuration on Travis CI
|
|
12
|
+
# Workaround issue of jruby-head configuration on Travis CI
|
|
11
13
|
matrix:
|
|
12
14
|
allow_failures:
|
|
13
15
|
- rvm: jruby-head
|
|
16
|
+
- rvm: ruby-head
|
|
14
17
|
|
|
15
18
|
gemfile:
|
|
16
19
|
- Gemfile
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
### 0.5.
|
|
1
|
+
### 0.5.12 / 2015-04-02
|
|
2
|
+
* [FIX] File `.travis.yml`: Removed MRI Ruby 1.9.2 since it is rejected by latest Cucumber version.
|
|
3
|
+
* [NEW] File `.travis.yml` Added support for Ruby 2.2.0
|
|
4
|
+
|
|
5
|
+
### 0.5.11 / 2015-04-02
|
|
2
6
|
* [TEST] Regression tests with Cucumber 2.0.0: all pass, no code change required
|
|
3
7
|
* [CHANGE] File `README.md` Mention that _Macros4Cuke_ works with Cucumber 2.0.0
|
|
4
8
|
|