simp-test 0.2.6 → 0.2.7
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/.github/workflows/tag_deploy_rubygem.yml +6 -6
- data/lib/simp/test/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ccb769727351c7642097dcfcd4e54ca1dd3d5423117d34c48d8387ba254e64d4
|
|
4
|
+
data.tar.gz: ff206eb86e90069cecfdaa1eabd1d9aea59d38717ac8cf1fc1e19e04f05a8b35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38f3fc3380a0640cc7e2aee3d0e7fb6725ec1dbebb80902c6149dea07e1f216c28d58513e912d4132f43906896cd23db87ba618e1435fb96442ea2f2f42756c6
|
|
7
|
+
data.tar.gz: d41622abd737631923d36e2542e1a42bca4ba4b0bcbe7a49087a228aad5e66a55819047887eccab7adc401a303ce2cd55e38e61dfe8e16aedc570b44ad19603e
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
#
|
|
31
31
|
# {
|
|
32
32
|
# "gem_build_command": "bundle exec rake build",
|
|
33
|
-
# "gem_release_command": "bundle exec rake release",
|
|
33
|
+
# "gem_release_command": "bundle exec rake build release:rubygem_push",
|
|
34
34
|
# "gem_pkg_dir": "pkg"
|
|
35
35
|
# }
|
|
36
36
|
#
|
|
@@ -70,8 +70,12 @@ jobs:
|
|
|
70
70
|
# By default, these are the standard tasks from "bundler/gem_tasks"
|
|
71
71
|
# To override them in the LOCAL_WORKFLOW_CONFIG_FILE
|
|
72
72
|
GEM_BUILD_COMMAND='bundle exec rake build'
|
|
73
|
+
GEM_RELEASE_COMMAND='bundle exec rake build release:rubygem_push'
|
|
73
74
|
GEM_PKG_DIR='pkg'
|
|
74
|
-
|
|
75
|
+
if jq -r '. | keys' "$LOCAL_WORKFLOW_CONFIG_FILE" 2>/dev/null | \
|
|
76
|
+
grep -w '"gem_pkg_dir"' &> /dev/null; then
|
|
77
|
+
GEM_PKG_DIR="$(jq .gem_pkg_dir "$LOCAL_WORKFLOW_CONFIG_FILE" )"
|
|
78
|
+
fi
|
|
75
79
|
if jq -r '. | keys' "$LOCAL_WORKFLOW_CONFIG_FILE" 2>/dev/null | \
|
|
76
80
|
grep -w '"gem_build_command"' &> /dev/null; then
|
|
77
81
|
GEM_BUILD_COMMAND="$(jq .gem_build_command "$LOCAL_WORKFLOW_CONFIG_FILE" )"
|
|
@@ -80,10 +84,6 @@ jobs:
|
|
|
80
84
|
grep -w '"gem_release_command"' &> /dev/null; then
|
|
81
85
|
GEM_RELEASE_COMMAND="$(jq .gem_release_command "$LOCAL_WORKFLOW_CONFIG_FILE" )"
|
|
82
86
|
fi
|
|
83
|
-
if jq -r '. | keys' "$LOCAL_WORKFLOW_CONFIG_FILE" 2>/dev/null | \
|
|
84
|
-
grep -w '"gem_pkg_dir"' &> /dev/null; then
|
|
85
|
-
GEM_PKG_DIR="$(jq .gem_release_command "$LOCAL_WORKFLOW_CONFIG_FILE" )"
|
|
86
|
-
fi
|
|
87
87
|
echo "::set-output name=build_command::${GEM_BUILD_COMMAND}"
|
|
88
88
|
echo "::set-output name=pkg_dir::${GEM_PKG_DIR}"
|
|
89
89
|
echo "::set-output name=release_command::${GEM_RELEASE_COMMAND}"
|
data/lib/simp/test/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simp-test
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- SIMP Team
|
|
@@ -56,7 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
56
56
|
version: '0'
|
|
57
57
|
requirements: []
|
|
58
58
|
rubyforge_project:
|
|
59
|
-
rubygems_version: 2.7.
|
|
59
|
+
rubygems_version: 2.7.6.2
|
|
60
60
|
signing_key:
|
|
61
61
|
specification_version: 4
|
|
62
62
|
summary: test gem for CI
|