zaikio-loom 1.0.1 → 1.3.0

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: a73006847e32a2ba98ff3c5cc9dfd1639b9d0e198d1886f59eabf699f6872a11
4
- data.tar.gz: 1706ee24ba6b90be47c15fa00ce8e889892fc6457c1a86267dcad091567b2654
3
+ metadata.gz: 0cbd1fc41bd69bf1024ee63542c4975302e79be1ac0af6e8f2fc38c17cbdc151
4
+ data.tar.gz: a0880a07082f41503d223cfb200add6dfaa1a3854a6ea004c4a3a013ec4931bd
5
5
  SHA512:
6
- metadata.gz: 57bc16d2760ae45ea9518f5485226d0a3de33e41d71b1865acad56bd7728ef18ecd237ed84f716c3acbdf8867a2523bb907753fa5cab17cb0657cc85445d5c1c
7
- data.tar.gz: 348db1e985341b8ce6faf351490ff3532add06bea87db825881f3806c1b0aa5cf719cc10594070eee1892ca0f85a0be208aabe874d3d9195420e8c5f428b96fa
6
+ metadata.gz: a54007ad6ed771175a78f9a9b6e0202c94f1afa34162be8f0c4a842c0f0a0ac8e854e64c43937d640de61a003dba92283ff0c62b7e4cfd16818551b28c70fc7f
7
+ data.tar.gz: 582bbe830956812890f09c4872cab016c80fcd7f4719bf982555d54e49f154a77eeb5a53b8d3eb1e312a0199286f7a818486a76b5ebcd5773bd113c79ba73142
data/.circleci/config.yml CHANGED
@@ -2,7 +2,7 @@ version: 2
2
2
  jobs:
3
3
  build:
4
4
  docker:
5
- - image: circleci/ruby:2.6.5
5
+ - image: circleci/ruby:3.0.0
6
6
  - image: circleci/redis:3.2-alpine
7
7
 
8
8
  working_directory: ~/repo
@@ -0,0 +1,11 @@
1
+ version: 2
2
+
3
+ updates:
4
+ - package-ecosystem: bundler
5
+ directory: "/"
6
+ reviewers:
7
+ - jalyna
8
+ schedule:
9
+ interval: daily
10
+ time: "04:00"
11
+ open-pull-requests-limit: 10
data/.gitignore CHANGED
@@ -8,5 +8,6 @@
8
8
  /tmp/
9
9
  .gem
10
10
  .DS_Store
11
+ Gemfile.lock
11
12
  test/dummy/tmp
12
13
  test/dummy/log
data/.rubocop.yml CHANGED
@@ -1,11 +1,13 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.6
2
+ TargetRubyVersion: 2.7
3
3
  Exclude:
4
4
  - test/**/*.rb
5
5
  NewCops: enable
6
6
 
7
7
  require:
8
+ - rubocop-minitest
8
9
  - rubocop-performance
10
+ - rubocop-rake
9
11
 
10
12
  Layout/HashAlignment:
11
13
  EnforcedColonStyle: table
data/CHANGELOG.md CHANGED
@@ -1,6 +1,24 @@
1
1
  # Zaikio Loom Ruby Gem Changelog
2
2
 
3
- ## 1.0.0 - 2020-06-03
3
+ ## [Unreleased]
4
+
5
+ ## 1.3.0 - 2021-11-22
6
+
7
+ - Support configuration of `queue` for FireEventJob
8
+
9
+ ## 1.2.0 - 2021-10-18
10
+
11
+ - **BREAKING** Fixed: Throw new `Zaikio::Loom::Error` when posting events fails (e.g. 422)
12
+
13
+ ## 1.1.1 - 2021-03-25
14
+
15
+ * Replace dependency on `rails` with a more specific dependency on `railties` and friends
16
+
17
+ ## 1.1.0 - 2021-01-05
18
+
19
+ - Ensure compability with Ruby 3.0 and Ruby on Rails 6.1
20
+
21
+ ## 1.0.1 - 2020-06-03
4
22
 
5
23
  - Fix a bug in the event serializer
6
24
 
data/Gemfile CHANGED
@@ -2,3 +2,8 @@ source "https://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in zaikio-loom.gemspec
4
4
  gemspec
5
+
6
+ gem "actionpack"
7
+ gem "actionview"
8
+ gem "activemodel"
9
+ gem "sprockets-rails"
data/README.md CHANGED
@@ -136,7 +136,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
136
136
 
137
137
  ## Contributing
138
138
 
139
- Bug reports and pull requests are welcome on GitHub at https://github.com/crispymtn/zai-loom-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
139
+ Bug reports and pull requests are welcome on GitHub at https://github.com/zaikio/zaikio-loom-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
140
140
 
141
141
  ## License
142
142
 
@@ -144,4 +144,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
144
144
 
145
145
  ## Code of Conduct
146
146
 
147
- Everyone interacting in the Zaikio Loom Ruby gem project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/crispymtn/zai-loom-ruby/blob/master/CODE_OF_CONDUCT.md).
147
+ Everyone interacting in the Zaikio Loom Ruby gem project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/zaikio/zaikio-loom-ruby/blob/master/CODE_OF_CONDUCT.md).
@@ -10,7 +10,7 @@ module Zaikio
10
10
  }.freeze
11
11
 
12
12
  attr_accessor :version
13
- attr_reader :environment, :host, :apps
13
+ attr_reader :environment, :host, :apps, :queue
14
14
  attr_writer :logger
15
15
 
16
16
  def initialize
@@ -19,7 +19,7 @@ module Zaikio
19
19
  end
20
20
 
21
21
  def logger
22
- @logger ||= Logger.new(STDOUT)
22
+ @logger ||= Logger.new($stdout)
23
23
  end
24
24
 
25
25
  def environment=(env)
@@ -27,6 +27,10 @@ module Zaikio
27
27
  @host = HOSTS[environment]
28
28
  end
29
29
 
30
+ def queue=(name)
31
+ Zaikio::Loom::FireEventJob.queue_as(name)
32
+ end
33
+
30
34
  def application(name)
31
35
  @apps[name.to_s] = AppConfiguration.new(name.to_s)
32
36
  yield(@apps[name.to_s])
@@ -0,0 +1,14 @@
1
+ module Zaikio
2
+ module Loom
3
+ class Error < StandardError
4
+ attr_reader :body, :status_code
5
+
6
+ def initialize(message = nil, body:, status_code:)
7
+ super(message)
8
+
9
+ @body = body
10
+ @status_code = status_code
11
+ end
12
+ end
13
+ end
14
+ end
@@ -37,6 +37,14 @@ module Zaikio
37
37
  @status_code = response.code.to_i
38
38
  @response_body = response.body
39
39
 
40
+ unless response.is_a?(Net::HTTPSuccess)
41
+ raise Zaikio::Loom::Error.new(
42
+ "Sending event failed (#{@status_code}): #{@response_body}",
43
+ body: @response_body,
44
+ status_code: @status_code
45
+ )
46
+ end
47
+
40
48
  response.is_a?(Net::HTTPSuccess)
41
49
  end
42
50
 
@@ -1,5 +1,5 @@
1
1
  module Zaikio
2
2
  module Loom
3
- VERSION = "1.0.1".freeze
3
+ VERSION = "1.3.0".freeze
4
4
  end
5
5
  end
data/lib/zaikio/loom.rb CHANGED
@@ -1,5 +1,6 @@
1
1
  require "zaikio/loom/app_configuration"
2
2
  require "zaikio/loom/configuration"
3
+ require "zaikio/loom/error"
3
4
  require "zaikio/loom/event"
4
5
  require "zaikio/loom/event_serializer"
5
6
  require "zaikio/loom/railtie"
data/zaikio-loom.gemspec CHANGED
@@ -8,11 +8,11 @@ Gem::Specification.new do |spec|
8
8
 
9
9
  spec.authors = ["crispymtn", "Martin Spickermann"]
10
10
  spec.email = ["op@crispymtn.com", "spickermann@gmail.com"]
11
- spec.homepage = "https://github.com/crispymtn/zai-loom-ruby"
11
+ spec.homepage = "https://github.com/zaikio/zaikio-loom-ruby"
12
12
  spec.license = "MIT"
13
13
  spec.summary = "The Zaikio Loom Ruby Gem simplifies publishing events on the Zaikio Loom event system."
14
14
 
15
- spec.metadata["changelog_uri"] = "https://github.com/crispymtn/zai-loom-ruby/blob/master/CHANGELOG.md"
15
+ spec.metadata["changelog_uri"] = "https://github.com/zaikio/zaikio-loom-ruby/blob/master/CHANGELOG.md"
16
16
  spec.metadata["homepage_uri"] = spec.homepage
17
17
  spec.metadata["source_code_uri"] = spec.homepage
18
18
 
@@ -23,14 +23,19 @@ Gem::Specification.new do |spec|
23
23
  end
24
24
  spec.require_paths = ["lib"]
25
25
 
26
+ spec.add_dependency "activejob"
27
+ spec.add_dependency "nokogiri", ">= 1.11.0"
28
+ spec.add_dependency "railties", "~> 6.0", ">= 6.0.2.3"
26
29
  spec.add_runtime_dependency "oj"
27
- spec.add_dependency "rails", "~> 6.0", ">= 6.0.2.2"
30
+ spec.required_ruby_version = ">= 2.7.1"
28
31
 
29
32
  spec.add_development_dependency "bundler"
30
33
  spec.add_development_dependency "minitest"
31
34
  spec.add_development_dependency "mocha"
32
35
  spec.add_development_dependency "rake"
33
36
  spec.add_development_dependency "rubocop"
37
+ spec.add_development_dependency "rubocop-minitest"
34
38
  spec.add_development_dependency "rubocop-performance"
39
+ spec.add_development_dependency "rubocop-rake"
35
40
  spec.add_development_dependency "webmock"
36
41
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zaikio-loom
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - crispymtn
@@ -9,10 +9,10 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-06-03 00:00:00.000000000 Z
12
+ date: 2021-11-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: oj
15
+ name: activejob
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
18
  - - ">="
@@ -26,7 +26,21 @@ dependencies:
26
26
  - !ruby/object:Gem::Version
27
27
  version: '0'
28
28
  - !ruby/object:Gem::Dependency
29
- name: rails
29
+ name: nokogiri
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: 1.11.0
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 1.11.0
42
+ - !ruby/object:Gem::Dependency
43
+ name: railties
30
44
  requirement: !ruby/object:Gem::Requirement
31
45
  requirements:
32
46
  - - "~>"
@@ -34,7 +48,7 @@ dependencies:
34
48
  version: '6.0'
35
49
  - - ">="
36
50
  - !ruby/object:Gem::Version
37
- version: 6.0.2.2
51
+ version: 6.0.2.3
38
52
  type: :runtime
39
53
  prerelease: false
40
54
  version_requirements: !ruby/object:Gem::Requirement
@@ -44,7 +58,21 @@ dependencies:
44
58
  version: '6.0'
45
59
  - - ">="
46
60
  - !ruby/object:Gem::Version
47
- version: 6.0.2.2
61
+ version: 6.0.2.3
62
+ - !ruby/object:Gem::Dependency
63
+ name: oj
64
+ requirement: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ type: :runtime
70
+ prerelease: false
71
+ version_requirements: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
48
76
  - !ruby/object:Gem::Dependency
49
77
  name: bundler
50
78
  requirement: !ruby/object:Gem::Requirement
@@ -115,6 +143,20 @@ dependencies:
115
143
  - - ">="
116
144
  - !ruby/object:Gem::Version
117
145
  version: '0'
146
+ - !ruby/object:Gem::Dependency
147
+ name: rubocop-minitest
148
+ requirement: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ type: :development
154
+ prerelease: false
155
+ version_requirements: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
118
160
  - !ruby/object:Gem::Dependency
119
161
  name: rubocop-performance
120
162
  requirement: !ruby/object:Gem::Requirement
@@ -129,6 +171,20 @@ dependencies:
129
171
  - - ">="
130
172
  - !ruby/object:Gem::Version
131
173
  version: '0'
174
+ - !ruby/object:Gem::Dependency
175
+ name: rubocop-rake
176
+ requirement: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ type: :development
182
+ prerelease: false
183
+ version_requirements: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
132
188
  - !ruby/object:Gem::Dependency
133
189
  name: webmock
134
190
  requirement: !ruby/object:Gem::Requirement
@@ -152,12 +208,12 @@ extensions: []
152
208
  extra_rdoc_files: []
153
209
  files:
154
210
  - ".circleci/config.yml"
211
+ - ".github/dependabot.yml"
155
212
  - ".gitignore"
156
213
  - ".rubocop.yml"
157
214
  - CHANGELOG.md
158
215
  - CODE_OF_CONDUCT.md
159
216
  - Gemfile
160
- - Gemfile.lock
161
217
  - LICENSE.txt
162
218
  - README.md
163
219
  - Rakefile
@@ -169,18 +225,19 @@ files:
169
225
  - lib/zaikio/loom/app_configuration.rb
170
226
  - lib/zaikio/loom/configuration.rb
171
227
  - lib/zaikio/loom/engine.rb
228
+ - lib/zaikio/loom/error.rb
172
229
  - lib/zaikio/loom/event.rb
173
230
  - lib/zaikio/loom/event_serializer.rb
174
231
  - lib/zaikio/loom/railtie.rb
175
232
  - lib/zaikio/loom/version.rb
176
233
  - zaikio-loom.gemspec
177
- homepage: https://github.com/crispymtn/zai-loom-ruby
234
+ homepage: https://github.com/zaikio/zaikio-loom-ruby
178
235
  licenses:
179
236
  - MIT
180
237
  metadata:
181
- changelog_uri: https://github.com/crispymtn/zai-loom-ruby/blob/master/CHANGELOG.md
182
- homepage_uri: https://github.com/crispymtn/zai-loom-ruby
183
- source_code_uri: https://github.com/crispymtn/zai-loom-ruby
238
+ changelog_uri: https://github.com/zaikio/zaikio-loom-ruby/blob/master/CHANGELOG.md
239
+ homepage_uri: https://github.com/zaikio/zaikio-loom-ruby
240
+ source_code_uri: https://github.com/zaikio/zaikio-loom-ruby
184
241
  post_install_message:
185
242
  rdoc_options: []
186
243
  require_paths:
@@ -189,14 +246,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
189
246
  requirements:
190
247
  - - ">="
191
248
  - !ruby/object:Gem::Version
192
- version: '0'
249
+ version: 2.7.1
193
250
  required_rubygems_version: !ruby/object:Gem::Requirement
194
251
  requirements:
195
252
  - - ">="
196
253
  - !ruby/object:Gem::Version
197
254
  version: '0'
198
255
  requirements: []
199
- rubygems_version: 3.1.2
256
+ rubygems_version: 3.1.4
200
257
  signing_key:
201
258
  specification_version: 4
202
259
  summary: The Zaikio Loom Ruby Gem simplifies publishing events on the Zaikio Loom
data/Gemfile.lock DELETED
@@ -1,184 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- zaikio-loom (1.0.1)
5
- oj
6
- rails (~> 6.0, >= 6.0.2.2)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (6.0.3.1)
12
- actionpack (= 6.0.3.1)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- actionmailbox (6.0.3.1)
16
- actionpack (= 6.0.3.1)
17
- activejob (= 6.0.3.1)
18
- activerecord (= 6.0.3.1)
19
- activestorage (= 6.0.3.1)
20
- activesupport (= 6.0.3.1)
21
- mail (>= 2.7.1)
22
- actionmailer (6.0.3.1)
23
- actionpack (= 6.0.3.1)
24
- actionview (= 6.0.3.1)
25
- activejob (= 6.0.3.1)
26
- mail (~> 2.5, >= 2.5.4)
27
- rails-dom-testing (~> 2.0)
28
- actionpack (6.0.3.1)
29
- actionview (= 6.0.3.1)
30
- activesupport (= 6.0.3.1)
31
- rack (~> 2.0, >= 2.0.8)
32
- rack-test (>= 0.6.3)
33
- rails-dom-testing (~> 2.0)
34
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
35
- actiontext (6.0.3.1)
36
- actionpack (= 6.0.3.1)
37
- activerecord (= 6.0.3.1)
38
- activestorage (= 6.0.3.1)
39
- activesupport (= 6.0.3.1)
40
- nokogiri (>= 1.8.5)
41
- actionview (6.0.3.1)
42
- activesupport (= 6.0.3.1)
43
- builder (~> 3.1)
44
- erubi (~> 1.4)
45
- rails-dom-testing (~> 2.0)
46
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
47
- activejob (6.0.3.1)
48
- activesupport (= 6.0.3.1)
49
- globalid (>= 0.3.6)
50
- activemodel (6.0.3.1)
51
- activesupport (= 6.0.3.1)
52
- activerecord (6.0.3.1)
53
- activemodel (= 6.0.3.1)
54
- activesupport (= 6.0.3.1)
55
- activestorage (6.0.3.1)
56
- actionpack (= 6.0.3.1)
57
- activejob (= 6.0.3.1)
58
- activerecord (= 6.0.3.1)
59
- marcel (~> 0.3.1)
60
- activesupport (6.0.3.1)
61
- concurrent-ruby (~> 1.0, >= 1.0.2)
62
- i18n (>= 0.7, < 2)
63
- minitest (~> 5.1)
64
- tzinfo (~> 1.1)
65
- zeitwerk (~> 2.2, >= 2.2.2)
66
- addressable (2.7.0)
67
- public_suffix (>= 2.0.2, < 5.0)
68
- ast (2.4.0)
69
- builder (3.2.4)
70
- concurrent-ruby (1.1.6)
71
- crack (0.4.3)
72
- safe_yaml (~> 1.0.0)
73
- crass (1.0.6)
74
- erubi (1.9.0)
75
- globalid (0.4.2)
76
- activesupport (>= 4.2.0)
77
- hashdiff (1.0.1)
78
- i18n (1.8.2)
79
- concurrent-ruby (~> 1.0)
80
- loofah (2.5.0)
81
- crass (~> 1.0.2)
82
- nokogiri (>= 1.5.9)
83
- mail (2.7.1)
84
- mini_mime (>= 0.1.1)
85
- marcel (0.3.3)
86
- mimemagic (~> 0.3.2)
87
- method_source (1.0.0)
88
- mimemagic (0.3.5)
89
- mini_mime (1.0.2)
90
- mini_portile2 (2.4.0)
91
- minitest (5.14.1)
92
- mocha (1.11.2)
93
- nio4r (2.5.2)
94
- nokogiri (1.10.9)
95
- mini_portile2 (~> 2.4.0)
96
- oj (3.10.6)
97
- parallel (1.19.1)
98
- parser (2.7.1.3)
99
- ast (~> 2.4.0)
100
- public_suffix (4.0.4)
101
- rack (2.2.2)
102
- rack-test (1.1.0)
103
- rack (>= 1.0, < 3)
104
- rails (6.0.3.1)
105
- actioncable (= 6.0.3.1)
106
- actionmailbox (= 6.0.3.1)
107
- actionmailer (= 6.0.3.1)
108
- actionpack (= 6.0.3.1)
109
- actiontext (= 6.0.3.1)
110
- actionview (= 6.0.3.1)
111
- activejob (= 6.0.3.1)
112
- activemodel (= 6.0.3.1)
113
- activerecord (= 6.0.3.1)
114
- activestorage (= 6.0.3.1)
115
- activesupport (= 6.0.3.1)
116
- bundler (>= 1.3.0)
117
- railties (= 6.0.3.1)
118
- sprockets-rails (>= 2.0.0)
119
- rails-dom-testing (2.0.3)
120
- activesupport (>= 4.2.0)
121
- nokogiri (>= 1.6)
122
- rails-html-sanitizer (1.3.0)
123
- loofah (~> 2.3)
124
- railties (6.0.3.1)
125
- actionpack (= 6.0.3.1)
126
- activesupport (= 6.0.3.1)
127
- method_source
128
- rake (>= 0.8.7)
129
- thor (>= 0.20.3, < 2.0)
130
- rainbow (3.0.0)
131
- rake (13.0.1)
132
- regexp_parser (1.7.0)
133
- rexml (3.2.4)
134
- rubocop (0.85.0)
135
- parallel (~> 1.10)
136
- parser (>= 2.7.0.1)
137
- rainbow (>= 2.2.2, < 4.0)
138
- regexp_parser (>= 1.7)
139
- rexml
140
- rubocop-ast (>= 0.0.3)
141
- ruby-progressbar (~> 1.7)
142
- unicode-display_width (>= 1.4.0, < 2.0)
143
- rubocop-ast (0.0.3)
144
- parser (>= 2.7.0.1)
145
- rubocop-performance (1.6.0)
146
- rubocop (>= 0.71.0)
147
- ruby-progressbar (1.10.1)
148
- safe_yaml (1.0.5)
149
- sprockets (4.0.0)
150
- concurrent-ruby (~> 1.0)
151
- rack (> 1, < 3)
152
- sprockets-rails (3.2.1)
153
- actionpack (>= 4.0)
154
- activesupport (>= 4.0)
155
- sprockets (>= 3.0.0)
156
- thor (1.0.1)
157
- thread_safe (0.3.6)
158
- tzinfo (1.2.7)
159
- thread_safe (~> 0.1)
160
- unicode-display_width (1.7.0)
161
- webmock (3.8.3)
162
- addressable (>= 2.3.6)
163
- crack (>= 0.3.2)
164
- hashdiff (>= 0.4.0, < 2.0.0)
165
- websocket-driver (0.7.2)
166
- websocket-extensions (>= 0.1.0)
167
- websocket-extensions (0.1.5)
168
- zeitwerk (2.3.0)
169
-
170
- PLATFORMS
171
- ruby
172
-
173
- DEPENDENCIES
174
- bundler
175
- minitest
176
- mocha
177
- rake
178
- rubocop
179
- rubocop-performance
180
- webmock
181
- zaikio-loom!
182
-
183
- BUNDLED WITH
184
- 2.1.4