outboxable 0.1.1 → 0.1.2

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: 8a4b1567dc9149941d4012ac68f5b03fb32a43b2b7f4207db3fa792dffc397a6
4
- data.tar.gz: e1080f39feb5299293bdc0d2fea3eb53ef08a4c78fa30fa5f5e1ee5ed8fc20f5
3
+ metadata.gz: f1d338ac197df1adcd420ef12703e96615086f8cc7a0062b72f11deaaec68666
4
+ data.tar.gz: 8af422939a04418b12fdb66701b310d49399ba12c974cbeb7718c91b2975760a
5
5
  SHA512:
6
- metadata.gz: ec58b90edf96ea5e01ae3203199938233d8f698868be57a0611150b04a00397cfdf6eb73c05a265a28b81492494762c181248d59cb34992ad88a9aa5d83ca6ef
7
- data.tar.gz: a0587bfac39936da153301ad8002794d4758c94afb7d78840acd711154a1834ac72abcc6c6b7d80055d7541184a0c9ab0875405459923cb138ecd68c05089bab
6
+ metadata.gz: 4fa5c959e651053d21bc817f58e93ed9d5b58badf44abda041308de7b5be2f17a380bf1656095ad5fde6d9e55cf5c54e241b8fb91980ca800570d2d2028ab6f3
7
+ data.tar.gz: 90f310a90f39dcebce8ae111aaeec53db9ea056d5e995763a58380e904ad6c17152696af05299db7a087fa55d37f8fe219c141395d12b520fe433f733eb4f279
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- outboxable (0.1.1)
4
+ outboxable (0.1.2)
5
5
  bunny (>= 2.19.0)
6
6
  connection_pool (~> 2.3.0)
7
7
 
@@ -7,11 +7,11 @@ module Outboxable
7
7
 
8
8
  def initialize
9
9
  @connection = Bunny.new(
10
- host: RabbitCarrots.configuration.rabbitmq_host,
11
- port: RabbitCarrots.configuration.rabbitmq_port,
12
- user: RabbitCarrots.configuration.rabbitmq_user,
13
- password: RabbitCarrots.configuration.rabbitmq_password,
14
- vhost: RabbitCarrots.configuration.rabbitmq_vhost
10
+ host: Outboxable.configuration.rabbitmq_host,
11
+ port: Outboxable.configuration.rabbitmq_port,
12
+ user: Outboxable.configuration.rabbitmq_user,
13
+ password: Outboxable.configuration.rabbitmq_password,
14
+ vhost: Outboxable.configuration.rabbitmq_vhost
15
15
  )
16
16
 
17
17
  @connection.start
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Outboxable
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: outboxable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brusk Awat
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-01 00:00:00.000000000 Z
11
+ date: 2023-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bunny
@@ -67,7 +67,6 @@ files:
67
67
  - lib/templates/create_outboxable_outboxes.rb
68
68
  - lib/templates/initializer.rb
69
69
  - lib/templates/outbox.rb
70
- - outboxable.gemspec
71
70
  - sig/outboxable.rbs
72
71
  homepage: https://githuh.com/broosk1993/outboxable
73
72
  licenses:
data/outboxable.gemspec DELETED
@@ -1,36 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/outboxable/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "outboxable"
7
- spec.version = Outboxable::VERSION
8
- spec.authors = ["Brusk Awat"]
9
- spec.email = ["broosk.edogawa@gmail.com"]
10
-
11
- spec.summary = "An opiniated Gem for Rails applications to implement the transactional outbox pattern."
12
- spec.description = "The Outboxable Gem is tailored for Rails applications to implement the transactional outbox pattern. It currently only supports ActiveRecord."
13
- spec.homepage = "https://githuh.com/broosk1993/outboxable"
14
- spec.license = "MIT"
15
- spec.required_ruby_version = ">= 2.6.0"
16
-
17
- spec.metadata['allowed_push_host'] = 'https://rubygems.org'
18
-
19
- spec.metadata["homepage_uri"] = spec.homepage
20
- spec.metadata["source_code_uri"] = "https://githuh.com/broosk1993/outboxable"
21
- spec.metadata["changelog_uri"] = "https://githuh.com/broosk1993/outboxable/CHANGELOG.md"
22
-
23
- # Specify which files should be added to the gem when it is released.
24
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
- spec.files = Dir.chdir(__dir__) do
26
- `git ls-files -z`.split("\x0").reject do |f|
27
- (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)})
28
- end
29
- end
30
- spec.bindir = "exe"
31
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
32
- spec.require_paths = ["lib"]
33
-
34
- spec.add_dependency 'bunny', '>= 2.19.0'
35
- spec.add_dependency 'connection_pool', '~> 2.3.0'
36
- end