manageiq-cross_repo 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 303420d045bf57bacab3391945b7652115e42e2dece17c37c9c15b6bfe4e07bd
4
- data.tar.gz: fd8e604e86f2ed8abb7c383ad08403cb4b20970caeba3fdae913d55fb87543ea
3
+ metadata.gz: 8b41a33500bc19d1787fc628f2b36526425dafe94b8176376205b3d77e6b8c56
4
+ data.tar.gz: fcb915b5746293c0f0969cda70116337a5b27795ec94673fe123dfb3357460d4
5
5
  SHA512:
6
- metadata.gz: 94020cc0c92e37dca3df2c0eb78ec3b61e3874ea79d5fa09f5d16949d0acf28a99095c2396d3b3ae7b8ca92d8de7d7889084bf6cdce2fbde77c6efe0928aacdf
7
- data.tar.gz: 040c9f3265bce6a0d51c7e0ab46cf414f7c8b7fb798a34725ee5e162adb137907ec699cbe004d7ab084e868a72fa41ed78f9e208332bb66fc546c43df68c4a81
6
+ metadata.gz: f99033869bee7e81ccf5a3fa68ad5c0cbe4d775e50372cccdb79474a92385c9ea258be6754015ef1ca3deb2c4db2dfcd400115e3b571db1dfb956d0f61a84f66
7
+ data.tar.gz: '082df5577e2c09309900e1782f621c05764b8de1d25b22b63a41eecfe4d71d040cc1290d5abe241d6093547419be14f09d762587dda8d3b6ac759ed6a43ef05e'
data/CHANGELOG.md ADDED
@@ -0,0 +1,58 @@
1
+ # Change Log
2
+ All notable changes to this project will be documented in this file.
3
+ This project adheres to [Semantic Versioning](http://semver.org/).
4
+
5
+ ## [Unreleased]
6
+
7
+ ## [1.2.1] - 2022-01-11
8
+ ### Fixed
9
+ - Fix unpacking the hash for ruby 3 support
10
+
11
+ ## [1.2.0] - 2021-12-15
12
+ ### Changed
13
+ - Add support for test repos using Github Actions
14
+
15
+ ### Fixed
16
+ - If the list of repos is empty default to the core repo
17
+
18
+ ## [1.1.3] - 2021-08-27
19
+ ### Changed
20
+ - Add retry to ensure_clone (#74)
21
+
22
+ ## [1.1.2] - 2021-05-13
23
+ ### Changed
24
+ - Fix newer activesupport pulling in newer tzinfo and causing automate engine specs to fail
25
+
26
+ ## [1.1.1] - 2021-02-22
27
+ ### Changed
28
+ - [#71] Pass BUNDLE_PATH env var to test script
29
+
30
+ ## [1.1.0] - 2021-02-05
31
+ ### Changed
32
+ - Fix a warning from Kernel#open
33
+ - Add a --script-cmd and SCRIPT_CMD option
34
+ - Parse .travis.yml and run before_*/install/script sections
35
+
36
+ ## [1.0.4] - 2020-04-14
37
+ ### Changed
38
+ - Run tools/ci/before_install.sh for all plugins
39
+
40
+ ## [1.0.3] - 2020-03-05
41
+ ### Changed
42
+ - Prefer testing using the merge commit if it exists rather than the PR head
43
+
44
+ ## [1.0.2] - 2020-02-04
45
+ ### Changed
46
+ - Fix an issue extracting tgz files smaller than 10Kb
47
+ - Fix an issue overriding gems whose repo name doesn't match
48
+
49
+ [Unreleased]: https://github.com/ManageIQ/more_core_extensions/compare/v1.2.1...HEAD
50
+ [1.2.1]: https://github.com/ManageIQ/more_core_extensions/compare/v1.2.0...v1.2.1
51
+ [1.2.0]: https://github.com/ManageIQ/more_core_extensions/compare/v1.1.3...v1.2.0
52
+ [1.1.3]: https://github.com/ManageIQ/more_core_extensions/compare/v1.1.2...v1.1.3
53
+ [1.1.2]: https://github.com/ManageIQ/more_core_extensions/compare/v1.1.1...v1.1.2
54
+ [1.1.1]: https://github.com/ManageIQ/more_core_extensions/compare/v1.1.0...v1.1.1
55
+ [1.1.0]: https://github.com/ManageIQ/more_core_extensions/compare/v1.0.4...v1.1.0
56
+ [1.0.4]: https://github.com/ManageIQ/more_core_extensions/compare/v1.0.3...v1.0.4
57
+ [1.0.3]: https://github.com/ManageIQ/more_core_extensions/compare/v1.0.2...v1.0.3
58
+ [1.0.2]: https://github.com/ManageIQ/more_core_extensions/compare/v1.0.1...v1.0.2
data/README.md CHANGED
@@ -16,8 +16,12 @@ Options:
16
16
  If any of the repositories in the list are a core repository that will
17
17
  be used as the root repository, otherwise ManageIQ/manageiq@master will be the default.
18
18
  Can also be passed as a REPOS environment variable.
19
- -s, --script-cmd=<s> Optional, a command string for running the specs. Defaults to `bundle exec rake`.
20
19
  (default: )
20
+ -e, --test-suite=<s> Optional, the name of a rake test suite to pass as an environment variable to the test being run.
21
+ This is commonly used by the CI config to conditionally perform different setup tasks
22
+ and also to run different test suites, e.g. spec:javascript.
23
+ -s, --script-cmd=<s> Optional, a command string for running the specs.
24
+ If present this will override the the script section of the test_repo's CI config
21
25
 
22
26
  -v, --version Print version and exit
23
27
  -h, --help Show this message
@@ -1,5 +1,5 @@
1
1
  module ManageIQ
2
2
  module CrossRepo
3
- VERSION = "1.2.0"
3
+ VERSION = "1.2.1"
4
4
  end
5
5
  end
@@ -7,8 +7,8 @@ module ManageIQ
7
7
  module CrossRepo
8
8
  REPOS_DIR = Pathname.pwd.join("repos")
9
9
 
10
- def self.run(*args)
11
- Runner.new(*args).run
10
+ def self.run(**args)
11
+ Runner.new(**args).run
12
12
  end
13
13
  end
14
14
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manageiq-cross_repo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ManageIQ Authors
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-15 00:00:00.000000000 Z
11
+ date: 2022-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: manageiq-style
@@ -123,7 +123,7 @@ dependencies:
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
125
  description: ManageIQ CrossRepo testing library
126
- email:
126
+ email:
127
127
  executables:
128
128
  - manageiq-cross_repo
129
129
  extensions: []
@@ -136,6 +136,7 @@ files:
136
136
  - ".rubocop_cc.yml"
137
137
  - ".rubocop_local.yml"
138
138
  - ".travis.yml"
139
+ - CHANGELOG.md
139
140
  - Gemfile
140
141
  - LICENSE.txt
141
142
  - README.md
@@ -159,7 +160,7 @@ licenses:
159
160
  metadata:
160
161
  homepage_uri: https://github.com/ManageIQ/manageiq-cross_repo
161
162
  source_code_uri: https://github.com/ManageIQ/manageiq-cross_repo
162
- post_install_message:
163
+ post_install_message:
163
164
  rdoc_options: []
164
165
  require_paths:
165
166
  - lib
@@ -174,8 +175,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
174
175
  - !ruby/object:Gem::Version
175
176
  version: '0'
176
177
  requirements: []
177
- rubygems_version: 3.2.27
178
- signing_key:
178
+ rubygems_version: 3.1.6
179
+ signing_key:
179
180
  specification_version: 4
180
181
  summary: ManageIQ CrossRepo testing library
181
182
  test_files: []