sidekiq-web_custom 0.3.0 → 0.3.1
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/.gitignore +1 -1
- data/Gemfile.lock +1 -1
- data/bin/publish_git +3 -3
- data/lib/sidekiq/web_custom/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33751169bc37e3ce515c82a40cceef962731d790aa317a9637b18914a46190a3
|
4
|
+
data.tar.gz: 91eb14067a2e743cc3022cea2147958210db08bfb29c51ce0fd7949ae3781780
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb1ffa2cc81485ae694b25fc0f24bbe963cc3cbba4868014ca726ac310247d1b24bab5faf8650c55cb16a0aa0d61ec2f3ba733767a453eb0b66d5267328311f5
|
7
|
+
data.tar.gz: c209d5562abc1426237b51290dac6e5575b4c0ea63241758795d42f061f1c0130c158fbbe320453e68a632a479af59f9dbf5e2d053cda1b0c42631ffe196a57c
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
data/bin/publish_git
CHANGED
@@ -17,7 +17,7 @@ PACKAGE=${GEM_NAME}-${VERSION}.gem
|
|
17
17
|
|
18
18
|
if [ $(git tag -l "$VERSION") ]; then
|
19
19
|
echo "Pre existing version $VERSION, not tagging."
|
20
|
-
exit
|
20
|
+
exit 1
|
21
21
|
fi
|
22
22
|
|
23
23
|
gem build ${GEM_NAME}.gemspec
|
@@ -32,7 +32,7 @@ echo "Finished Tagging to git"
|
|
32
32
|
|
33
33
|
# send artifacts to git
|
34
34
|
SHA=$(git rev-parse HEAD)
|
35
|
-
./$GHRLOCATION -soft -t ${GITHUB_TOKEN} -u ${GITHUB_USER} -r
|
35
|
+
./$GHRLOCATION -soft -t ${GITHUB_TOKEN} -u ${GITHUB_USER} -r ${GEM_NAME} -c ${SHA} ${VERSION} *.gem
|
36
36
|
echo "Finished Pushing artificat to Git"
|
37
37
|
|
38
|
-
rm $
|
38
|
+
rm ${FILE}
|
@@ -4,7 +4,7 @@ module Sidekiq
|
|
4
4
|
module WebCustom
|
5
5
|
MAJOR = 0 # With backwards incompatability. Requires annoucment and update documentation
|
6
6
|
MINOR = 3 # With feature launch. Documentation of upgrade is useful via a changelog
|
7
|
-
PATCH =
|
7
|
+
PATCH = 1 # With minor upgrades or patcing a small bug. No changelog necessary
|
8
8
|
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
9
9
|
|
10
10
|
def self.get_version
|