From b9896389eb762a1fea4700bd2082a049f09e9dbc Mon Sep 17 00:00:00 2001 From: Jens Norrgrann Date: Thu, 12 Dec 2019 10:01:10 +0100 Subject: [PATCH 1/2] Prepare for rubygems release --- bukowskis_after_transaction.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bukowskis_after_transaction.gemspec b/bukowskis_after_transaction.gemspec index 82ca1f1..b3ab72c 100644 --- a/bukowskis_after_transaction.gemspec +++ b/bukowskis_after_transaction.gemspec @@ -4,11 +4,11 @@ Gem::Specification.new do |s| s.authors = %w[Bukowskis] s.summary = 'Run blocks of code after transaction is commited' s.description = 'Run blocks of code after transaction is commited' - - s.metadata["allowed_push_host"] = "none" + s.homepage = 'https://github.com/bukowskis/bukowskis_after_transaction' s.files = Dir["{lib}/**/*", "README.md"] s.test_files = Dir["spec/**/*"] + s.license = 'MIT' s.add_runtime_dependency 'activerecord', '< 6.0' From 855c1d4e66661b3df7e3f619035f4592d379bc44 Mon Sep 17 00:00:00 2001 From: Jens Norrgrann Date: Thu, 12 Dec 2019 10:29:30 +0100 Subject: [PATCH 2/2] Rename to after_transaction --- ...s_after_transaction.gemspec => after_transaction.gemspec | 6 +++--- lib/bukowskis_after_transaction.rb | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) rename bukowskis_after_transaction.gemspec => after_transaction.gemspec (76%) delete mode 100644 lib/bukowskis_after_transaction.rb diff --git a/bukowskis_after_transaction.gemspec b/after_transaction.gemspec similarity index 76% rename from bukowskis_after_transaction.gemspec rename to after_transaction.gemspec index b3ab72c..dbba960 100644 --- a/bukowskis_after_transaction.gemspec +++ b/after_transaction.gemspec @@ -1,10 +1,10 @@ Gem::Specification.new do |s| - s.name = 'bukowskis_after_transaction' - s.version = '0.0.2' + s.name = 'after_transaction' + s.version = '0.0.3' s.authors = %w[Bukowskis] s.summary = 'Run blocks of code after transaction is commited' s.description = 'Run blocks of code after transaction is commited' - s.homepage = 'https://github.com/bukowskis/bukowskis_after_transaction' + s.homepage = 'https://github.com/bukowskis/after_transaction' s.files = Dir["{lib}/**/*", "README.md"] s.test_files = Dir["spec/**/*"] diff --git a/lib/bukowskis_after_transaction.rb b/lib/bukowskis_after_transaction.rb deleted file mode 100644 index 5bd52a6..0000000 --- a/lib/bukowskis_after_transaction.rb +++ /dev/null @@ -1 +0,0 @@ -require 'after_transaction'