aruba 1.1.1 → 1.1.2
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 +4 -4
- data/CHANGELOG.md +8 -2
- data/CONTRIBUTING.md +9 -1
- data/README.md +7 -7
- data/lib/aruba/api/bundler.rb +1 -0
- data/lib/aruba/version.rb +1 -1
- metadata +47 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 310ecfb205a45e39a9822c3d40272f5b1121eaa132ee597589c816b53b478ae2
|
|
4
|
+
data.tar.gz: 664722acb2e5e82421f25b1a9be77720af6b191935bdc3e177ee4c962697f0fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ddc31e116d5d122e70e4cc95ad0596318ffcfb4955b02b54f64a3800ea6917c461ca0332108e586811931f31253e34cae5ca011f4a7094aa2686f724ff9141a4
|
|
7
|
+
data.tar.gz: f63cd42a52b764686866d0a9070429830979136927270cd704d47ab7cd5533e656a7fc2b055cbee9d14e3dd8ed27a3ab7c8727a446bee89da9f88ec8e130735a
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,10 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [1.1.2] / 2021-06-20
|
|
12
|
+
|
|
13
|
+
* Add Bundler as an explicit runtime dependency ([#810] by [luke-hill])
|
|
14
|
+
|
|
11
15
|
## [1.1.1] / 2021-05-14
|
|
12
16
|
|
|
13
17
|
* Loosen dependency on the contracts gem ([#804] by [mvz])
|
|
@@ -977,6 +981,7 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
|
977
981
|
|
|
978
982
|
<!-- issues & pull requests -->
|
|
979
983
|
|
|
984
|
+
[#810]: https://github.com/cucumber/aruba/pull/810
|
|
980
985
|
[#804]: https://github.com/cucumber/aruba/pull/804
|
|
981
986
|
[#801]: https://github.com/cucumber/aruba/pull/801
|
|
982
987
|
[#727]: https://github.com/cucumber/aruba/pull/727
|
|
@@ -1257,7 +1262,8 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
|
1257
1262
|
|
|
1258
1263
|
<!-- Releases -->
|
|
1259
1264
|
|
|
1260
|
-
[Unreleased]: https://github.com/cucumber/aruba/compare/v1.1.
|
|
1265
|
+
[Unreleased]: https://github.com/cucumber/aruba/compare/v1.1.2...main
|
|
1266
|
+
[1.1.2]: https://github.com/cucumber/aruba/compare/v1.1.1...v1.1.2
|
|
1261
1267
|
[1.1.1]: https://github.com/cucumber/aruba/compare/v1.1.0...v1.1.1
|
|
1262
1268
|
[1.1.0]: https://github.com/cucumber/aruba/compare/v1.0.4...v1.1.0
|
|
1263
1269
|
[1.0.4]: https://github.com/cucumber/aruba/compare/v1.0.3...v1.0.4
|
|
@@ -1364,4 +1370,4 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
|
1364
1370
|
|
|
1365
1371
|
[1]: http://semver.org
|
|
1366
1372
|
[2]: http://keepachangelog.com
|
|
1367
|
-
[3]: https://github.com/cucumber/aruba/blob/
|
|
1373
|
+
[3]: https://github.com/cucumber/aruba/blob/main/CONTRIBUTING.md
|
data/CONTRIBUTING.md
CHANGED
|
@@ -73,7 +73,7 @@ Please...
|
|
|
73
73
|
|
|
74
74
|
* Use pull requests for larger or controversial changes made by yourself or
|
|
75
75
|
changes you might expected to break the build.
|
|
76
|
-
* Commit smaller changes directly to
|
|
76
|
+
* Commit smaller changes directly to `main`, e.g. fixing typos, adding tests or
|
|
77
77
|
adding documentation.
|
|
78
78
|
* Update [`CHANGELOG.md`][] when a pull request is merged.
|
|
79
79
|
* Make sure all tests are green before merging a pull request.
|
|
@@ -145,6 +145,14 @@ docker run -v $PWD:/aruba --rm -it test-aruba:latest bash
|
|
|
145
145
|
bundle exec rake
|
|
146
146
|
```
|
|
147
147
|
|
|
148
|
+
If you want to run the test suite against specific versions of Aruba's
|
|
149
|
+
dependencies, you can use [appraisal](https://github.com/thoughtbot/appraisal):
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
bundle exec appraisal cucumber_6 bundle install
|
|
153
|
+
bundle exec appraisal cucumber_6 bundle exec rake
|
|
154
|
+
```
|
|
155
|
+
|
|
148
156
|
### Installing your own gems used for development
|
|
149
157
|
|
|
150
158
|
A `Gemfile.local` file can be used, to have your own gems installed to support
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[](https://raw.githubusercontent.com/cucumber/aruba/
|
|
1
|
+
[](https://raw.githubusercontent.com/cucumber/aruba/main/LICENSE)
|
|
2
2
|
[](https://app.cucumber.pro/projects/aruba)
|
|
3
3
|
[](http://badge.fury.io/rb/aruba)
|
|
4
4
|
[](https://codeclimate.com/github/cucumber/aruba)
|
|
@@ -32,7 +32,7 @@ gem install aruba
|
|
|
32
32
|
### As a user getting started with Aruba
|
|
33
33
|
|
|
34
34
|
Our most current documentation to get started with Aruba as a user can be
|
|
35
|
-
found in [./features/](https://github.com/cucumber/aruba/tree/
|
|
35
|
+
found in [./features/](https://github.com/cucumber/aruba/tree/main/features/).
|
|
36
36
|
|
|
37
37
|
### As a user getting started with a ruby testing framework
|
|
38
38
|
|
|
@@ -57,15 +57,15 @@ A full documentation of the API for developers can be found on
|
|
|
57
57
|
|
|
58
58
|
## Support
|
|
59
59
|
|
|
60
|
-
### Channels
|
|
61
|
-
|
|
62
60
|
For support, please have a look at the [support website](https://cucumber.io/support)
|
|
63
61
|
of Cucumber. You have different options to reach out for help: Recommended for
|
|
64
62
|
Aruba are using the Slack channels — e.g. `committers-aruba` or `help-cucumber-ruby`
|
|
65
|
-
— ([register account](https://cucumberbdd-slack-invite.herokuapp.com/))
|
|
63
|
+
— ([register account](https://cucumberbdd-slack-invite.herokuapp.com/))
|
|
64
|
+
|
|
65
|
+
Concrete issues can be reported via the
|
|
66
66
|
[Issues page on GitHub](https://github.com/cucumber/aruba/issues).
|
|
67
67
|
|
|
68
|
-
|
|
68
|
+
## Maintainers
|
|
69
69
|
|
|
70
70
|
Currently, this gem is mainly maintained by this group of people:
|
|
71
71
|
|
|
@@ -91,7 +91,7 @@ Please see the [CONTRIBUTING](CONTRIBUTING.md) file.
|
|
|
91
91
|
|
|
92
92
|
## Code branches
|
|
93
93
|
|
|
94
|
-
Development takes place in the `
|
|
94
|
+
Development takes place in the `main` branch and currently targets the 1.x
|
|
95
95
|
releases. If necessary, maintenance of the old 0.14.x releases takes place in
|
|
96
96
|
the `0-14-stable` branch. Stable branches will not be created until absolutely
|
|
97
97
|
necessary.
|
data/lib/aruba/api/bundler.rb
CHANGED
data/lib/aruba/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aruba
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aslak Hellesøy, Matt Wynne and other Aruba Contributors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-06-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.17'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '3.0'
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '1.17'
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '3.0'
|
|
13
33
|
- !ruby/object:Gem::Dependency
|
|
14
34
|
name: childprocess
|
|
15
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -98,6 +118,20 @@ dependencies:
|
|
|
98
118
|
- - "~>"
|
|
99
119
|
- !ruby/object:Gem::Version
|
|
100
120
|
version: '1.0'
|
|
121
|
+
- !ruby/object:Gem::Dependency
|
|
122
|
+
name: appraisal
|
|
123
|
+
requirement: !ruby/object:Gem::Requirement
|
|
124
|
+
requirements:
|
|
125
|
+
- - "~>"
|
|
126
|
+
- !ruby/object:Gem::Version
|
|
127
|
+
version: '2.4'
|
|
128
|
+
type: :development
|
|
129
|
+
prerelease: false
|
|
130
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
131
|
+
requirements:
|
|
132
|
+
- - "~>"
|
|
133
|
+
- !ruby/object:Gem::Version
|
|
134
|
+
version: '2.4'
|
|
101
135
|
- !ruby/object:Gem::Dependency
|
|
102
136
|
name: json
|
|
103
137
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -158,16 +192,22 @@ dependencies:
|
|
|
158
192
|
name: rake
|
|
159
193
|
requirement: !ruby/object:Gem::Requirement
|
|
160
194
|
requirements:
|
|
161
|
-
- - "
|
|
195
|
+
- - ">="
|
|
196
|
+
- !ruby/object:Gem::Version
|
|
197
|
+
version: '12.0'
|
|
198
|
+
- - "<"
|
|
162
199
|
- !ruby/object:Gem::Version
|
|
163
|
-
version: '
|
|
200
|
+
version: '14.0'
|
|
164
201
|
type: :development
|
|
165
202
|
prerelease: false
|
|
166
203
|
version_requirements: !ruby/object:Gem::Requirement
|
|
167
204
|
requirements:
|
|
168
|
-
- - "
|
|
205
|
+
- - ">="
|
|
206
|
+
- !ruby/object:Gem::Version
|
|
207
|
+
version: '12.0'
|
|
208
|
+
- - "<"
|
|
169
209
|
- !ruby/object:Gem::Version
|
|
170
|
-
version: '
|
|
210
|
+
version: '14.0'
|
|
171
211
|
- !ruby/object:Gem::Dependency
|
|
172
212
|
name: rake-manifest
|
|
173
213
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -434,5 +474,5 @@ requirements: []
|
|
|
434
474
|
rubygems_version: 3.2.15
|
|
435
475
|
signing_key:
|
|
436
476
|
specification_version: 4
|
|
437
|
-
summary: aruba-1.1.
|
|
477
|
+
summary: aruba-1.1.2
|
|
438
478
|
test_files: []
|