Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add verison file and bump #5

Merged
merged 1 commit into from
Dec 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# frozen_string_literal: true

VERSION = '1.1.1'
Binary file added sidekiq_unique_digests_cleaner-1.1.1.gem
Binary file not shown.
7 changes: 5 additions & 2 deletions sidekiq_unique_digests_cleaner.gemspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# frozen_string_literal: true

require File.expand_path('../lib/version', __FILE__)

Gem::Specification.new do |s|
s.name = 'sidekiq_unique_digests_cleaner'
s.version = '1.0.1'
s.version = VERSION
s.platform = Gem::Platform::RUBY
s.licenses = ['MIT']
s.summary = 'Tool for cleaning unique digests which were stuck because of SIGKILL or any other accident.'
s.authors = ["Max Honcharov"]
Expand All @@ -11,4 +14,4 @@ Gem::Specification.new do |s|
s.homepage = 'https://rubygems.org/gems/sidekiq_unique_digests_cleaner'
s.metadata = { 'source_code_uri' => 'https://github.com/restaurant-cheetah/sidekiq_unique_digests_cleaner' }
s.add_dependency 'sidekiq-unique-jobs', '~> 6.0'
end
end