hedgelog 0.2.1.alpha.2 → 0.2.1.alpha.3
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/lib/hedgelog/version.rb +1 -1
- data/script/publish.sh +6 -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: 6c916bad939c2f6eecff7165beea0db8b2509032bd0153086c2e480e26312f2f
|
|
4
|
+
data.tar.gz: cc5887edfe9ffe3ebc5d13bac5da9d0a19a2e96fc56e653e1d8b6d7f42c7fd24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: efe0ee73a9cdf8767d2979d23250cf50c79a1a17d38f90bca4590efefc6b125067e1747661bdb7b3b810f6392c6c8c5d17e82997d1ede24d0bcfc86178809f3b
|
|
7
|
+
data.tar.gz: 760a8a610f6ea4dcc3d67b544b0ccee1f951eb66c02f1033ece069f68e35631c567a83392b3f1fef468fb0a3f6466a7cc983d954bbedcc3b1d765ac6a07f30ce
|
data/lib/hedgelog/version.rb
CHANGED
data/script/publish.sh
CHANGED
|
@@ -107,7 +107,12 @@ publish_hedgelog()
|
|
|
107
107
|
# Publish the gem
|
|
108
108
|
echo "Starting ruby container to build and publish gem"
|
|
109
109
|
# MSYS_NO_PATHCONV=1 docker-compose ${COMPOSE_FILES} run --no-deps -v "${RUBYGEMS_CRED_VOLUME}" --entrypoint /bin/sh client-ruby -c "gem build stbaldricks.gemspec && gem push stbaldricks-${desired_version}.gem"
|
|
110
|
-
gem
|
|
110
|
+
gem update --system
|
|
111
|
+
gem install bundler
|
|
112
|
+
bundle exec bundle-audit update && bundle exec bundle-audit check
|
|
113
|
+
bundle exec rspec
|
|
114
|
+
bundle exec rubocop lib spec
|
|
115
|
+
gem build hedgelog.gemspec # && gem push "hedgelog-${desired_version}.gem"
|
|
111
116
|
fi
|
|
112
117
|
echo
|
|
113
118
|
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hedgelog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.1.alpha.
|
|
4
|
+
version: 0.2.1.alpha.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeff Utter
|
|
@@ -91,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
91
91
|
- !ruby/object:Gem::Version
|
|
92
92
|
version: 1.3.1
|
|
93
93
|
requirements: []
|
|
94
|
-
rubygems_version: 3.
|
|
94
|
+
rubygems_version: 3.3.25
|
|
95
95
|
signing_key:
|
|
96
96
|
specification_version: 4
|
|
97
97
|
summary: A structured JSON logger for Ruby
|