macros4cuke 0.3.32 → 0.3.34
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 +3 -0
- data/CHANGELOG.md +7 -0
- data/Rakefile +0 -1
- data/examples/demo/features/step_definitions/step_defs.rb +0 -1
- data/examples/demo/features/step_definitions/use_macro_steps.rb +0 -1
- data/examples/demo/features/support/env.rb +0 -1
- data/examples/demo/features/support/macro_support.rb +0 -1
- data/features/step_definitions/demo_steps.rb +0 -1
- data/features/step_definitions/use_macro_steps.rb +0 -1
- data/features/support/env.rb +0 -1
- data/features/support/macro_support.rb +0 -1
- data/lib/macro_steps.rb +0 -1
- data/lib/macros4cuke/constants.rb +1 -2
- data/lib/macros4cuke/exceptions.rb +0 -1
- data/lib/macros4cuke/macro-collection.rb +0 -1
- data/lib/macros4cuke/macro-step-support.rb +0 -1
- data/lib/macros4cuke/macro-step.rb +0 -1
- data/lib/macros4cuke/templating/engine.rb +0 -1
- data/lib/macros4cuke.rb +0 -1
- data/spec/macros4cuke/macro-collection_spec.rb +0 -1
- data/spec/macros4cuke/macro-step-support_spec.rb +0 -1
- data/spec/macros4cuke/macro-step_spec.rb +0 -1
- data/spec/macros4cuke/templating/engine_spec.rb +0 -1
- data/spec/macros4cuke/templating/placeholder_spec.rb +0 -1
- data/spec/macros4cuke/templating/section_spec.rb +0 -1
- data/spec/spec_helper.rb +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NjVkMmIzOWZjOTg2YjUyNWQzN2QxMGY4MjMyZGYyYjc0OTk2ZjA3Ng==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZDA2ZjNhOWNiYTE4MDczZWYyOWRlNGRkNzE2YzIxMmY1ZWY2N2IzMw==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NGY2YmU4MGVlOTgzOTE1ZDM3YzhhZGYyODRiMDE1ZjJiYTE2NGYxYzlkMWY4
|
|
10
|
+
ZGIxODQwNGUwYjU4NzFjNDcwOWM2NGViZjlkZjA0Yjg3YjgwYTZhZWMxZDk5
|
|
11
|
+
NTg3MWRhZjAyYzhkYThjMDEyNTAxNzA4NDIyNmFjZTNiMTkzMjc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NmI2Y2FkYmIwNjUyOGViZTkxYjQ1NGQ0MDY0YTliODEyYzM3Y2ZiYjY4Y2Ni
|
|
14
|
+
NzBlZWIyNzgwMDc2ZWY1NzBhYjQ1M2QxNjliZWFkMmEzNjk2MDk0NzkzYzQ3
|
|
15
|
+
OGI3MGJhOTY1NTBkMGFmMmQzNTc5OGVlZWQ3Mzk1OWEwNTE2YTY=
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
### 0.3.34 / 2013-06-20
|
|
2
|
+
* [CHANGE] Most files: Except for the i18n sample files, the utf-8 encoding comment was in all Ruby files of the project.
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### 0.3.33 / 2013-06-19
|
|
6
|
+
* [CHANGE] File `travis.yml`: Wrong config in Travis CI. As a temporary workaround, removed RVM environments: - jruby-19mode - ruby-head.
|
|
7
|
+
|
|
1
8
|
### 0.3.32 / 2013-06-19
|
|
2
9
|
* [FIX] File `macros4cuke.gemspec`: Replaced obsolete code for generating the gem (broken with Rubygem v 2+).
|
|
3
10
|
* [CHANGE] File `macros4cuke.gemspec`: Added development dependency on rubygem version > 2+
|
data/Rakefile
CHANGED
data/features/support/env.rb
CHANGED
data/lib/macro_steps.rb
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
# encoding: utf-8
|
|
2
1
|
# File: constants.rb
|
|
3
2
|
# Purpose: definition of Macros4Cuke constants.
|
|
4
3
|
|
|
5
4
|
module Macros4Cuke # Module used as a namespace
|
|
6
5
|
# The version number of the gem.
|
|
7
|
-
Version = '0.3.
|
|
6
|
+
Version = '0.3.34'
|
|
8
7
|
|
|
9
8
|
# Brief description of the gem.
|
|
10
9
|
Description = 'Macros for Cucumber'
|
data/lib/macros4cuke.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
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.3.
|
|
4
|
+
version: 0.3.34
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dimitri Geshef
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-06-
|
|
11
|
+
date: 2013-06-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cucumber
|