sidekiq-web_custom 0.3.0 → 0.3.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: 5abbc69dbb993fbb70331bfd382fe15e82e5ed61b587a80f1110bb75f852bf28
4
- data.tar.gz: f5002194f3f13ee5fce6d5dd7b85bc35f9f7bea6a1144be85f00936c3f7c945f
3
+ metadata.gz: 33751169bc37e3ce515c82a40cceef962731d790aa317a9637b18914a46190a3
4
+ data.tar.gz: 91eb14067a2e743cc3022cea2147958210db08bfb29c51ce0fd7949ae3781780
5
5
  SHA512:
6
- metadata.gz: a33e6cf805366090f696f4d68c40f71da6a6799461bc39b6377ba9b98fb922686aeb12b452514b319c2eabbb0eee80caf30e0dfb12f3102a6dbd854e53dbe750
7
- data.tar.gz: 25613e8ba0f928b4c2821658f2a799e98b461b2301676408f8ba940f09dabea68506a502d2d3ceaa5d1b58ea93c693320624f1ff3f48ba62ec07acde5451d052
6
+ metadata.gz: fb1ffa2cc81485ae694b25fc0f24bbe963cc3cbba4868014ca726ac310247d1b24bab5faf8650c55cb16a0aa0d61ec2f3ba733767a453eb0b66d5267328311f5
7
+ data.tar.gz: c209d5562abc1426237b51290dac6e5575b4c0ea63241758795d42f061f1c0130c158fbbe320453e68a632a479af59f9dbf5e2d053cda1b0c42631ffe196a57c
data/.gitignore CHANGED
@@ -9,7 +9,7 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
-
12
+ spec/examples.txt
13
13
 
14
14
  # dummy app
15
15
  .byebug_history
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sidekiq-web_custom (0.3.0)
4
+ sidekiq-web_custom (0.3.1)
5
5
  sidekiq (>= 6.0)
6
6
  timeoutable (>= 1.0)
7
7
 
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 0
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 timeoutable -c ${SHA} ${VERSION} *.gem
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 = 0 # With minor upgrades or patcing a small bug. No changelog necessary
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiq-web_custom
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Taylor