chained_job 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a8aa04f7ae42cb12af32784e969ce63952884ff5db3e6e435943bcf1112f50b
4
- data.tar.gz: db0cc9308feec6d98a8d8444f7c96da901b204f14d265cc1f6b20df9eab6a72a
3
+ metadata.gz: '0174385a9a25b2f075952147d50294614ae4dfc744acc4ce155cf9bfa5ba91af'
4
+ data.tar.gz: e6f2366519f09f0c11ede71e9270190ab12f7e5f6657c16e44523a4feb6bc595
5
5
  SHA512:
6
- metadata.gz: b865a3f752707bea1255f0bbc76bbb29ed901ab83b05092ef4c03274651d7b0eadee5307f6f28610a0cbfe374ede0e141a482c837b9677ed2defb52923b03190
7
- data.tar.gz: 6b3b01a064ed9a76948196c16715c24226382c6fed5925a5fa3f53455a0b6b7d7976a066721de58746b0cb1bf6d3ed28899dd97901bfbf510f28b38f40a033dd
6
+ metadata.gz: b17c3a986b31c8c6eb1f01445d96615d1970db038a8b608d60ce9aceabe3194f57be9df3f908b31bccfed5d961ada85b530c64f57dd8dd0660add5265816fb09
7
+ data.tar.gz: edd731cfe81e89c3954ec3f3f2c2144ff99e0a27b015a43bc7526c728e12bdd0a9ba685a744b0ecd0be3cc17f07127f54c2c47b5fbedbb61284890f94554e657
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ChainedJob
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chained_job
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mantas Kūjalis
@@ -72,14 +72,10 @@ description: Chained job allows you to define an array of queued jobs that shoul
72
72
  email:
73
73
  - mantas.kujalis@vinted.com
74
74
  - titas@vinted.com
75
- executables:
76
- - setup
77
- - console
75
+ executables: []
78
76
  extensions: []
79
77
  extra_rdoc_files: []
80
78
  files:
81
- - bin/console
82
- - bin/setup
83
79
  - lib/chained_job.rb
84
80
  - lib/chained_job/config.rb
85
81
  - lib/chained_job/helpers.rb
data/bin/console DELETED
@@ -1,10 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- # frozen_string_literal: true
4
-
5
- require 'bundler/setup'
6
- require 'irb'
7
-
8
- require 'chained_job'
9
-
10
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here