pennyworth 14.1.1 → 14.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: 496677033cffc14c6e9dc2baa4c8e30f2ebc8dc6d0a9f9bdd078e2e7feadd4e3
4
- data.tar.gz: 96c6fc522f76482b43083f9e4972fcc88342ffafa8198c48de1525f9f368ae12
3
+ metadata.gz: 00e4f1ea91951c61489f4d7db8379ac4cfd6a93420a55608f0900302981db541
4
+ data.tar.gz: 96552a951d94c8df12e7e3e41ce5787822f14ecc487abe8b7a61e27c4af3b875
5
5
  SHA512:
6
- metadata.gz: a0ec68e84c70717d06d16f10bdb3720e1bc500d7d2d52a98819f915f9dbd5f670b82a7e37bff1454420a0baa1a71b494d559aa0f29beef8134bce1c621228d82
7
- data.tar.gz: c2dde4d5a917930ce5753184879fe01e330d1356813e668a3f1a59cc218e701d3be6109ef616bd409fa7f1804f164d8c716676d4a719090272fbf71c7b0e4d51
6
+ metadata.gz: 355e7e7a4021194b89a17f7540dd318b7d0fa5342afa7783e7aa5e4ac3829b009181cb7b738d8c6d35354fa83bc562773b2163cd94e490c1dc889f53545dc9b3
7
+ data.tar.gz: d871308b2aeee9a9ea0ab4ebf65c3036a4115f6c8edf336496a651dc98a56bf521182189727d92bb51dae42695223568c9570541cdf54435d1a82baf31f172be
checksums.yaml.gz.sig CHANGED
Binary file
data/README.adoc CHANGED
@@ -423,12 +423,22 @@ Provides quick access to link:https://github.com[GitHub] resources.
423
423
 
424
424
  image:https://www.alchemists.io/images/projects/pennyworth/screenshots/hanami.png[Hanami workflow screenshot.,width=706,height=632,role=focal_point]
425
425
 
426
- Provides quick access to link:https://hanamirb.org[Hanami] resources.
426
+ Provides quick access to the link:https://hanamirb.org[Hanami] web framework.
427
427
 
428
428
  1. link:https://www.alchemists.io/public/alfred/workflows/hanami.alfredworkflow[Download] and
429
429
  double click to install.
430
430
  2. Click on _Configure Workflow_ to view documentation.
431
431
 
432
+ ===== HTMX
433
+
434
+ image:https://www.alchemists.io/images/projects/pennyworth/screenshots/htmx.png[HTMX workflow screenshot.,width=706,height=523,role=focal_point]
435
+
436
+ Provides quick access to the link:https://htmx.org[HTMX] JavaScript library.
437
+
438
+ 1. link:https://www.alchemists.io/public/alfred/workflows/htmx.alfredworkflow[Download] and
439
+ double click to install.
440
+ 2. Click on _Configure Workflow_ to view documentation.
441
+
432
442
  ===== Jitsi
433
443
 
434
444
  image:https://www.alchemists.io/images/projects/pennyworth/screenshots/jitsi.png[Jitsi workflow screenshot.,width=706,height=254,role=focal_point]
@@ -459,6 +469,16 @@ Provides quick access to link:https://github.com/rack/rack[Rack] resources.
459
469
  click to install.
460
470
  2. Click on _Configure Workflow_ to view documentation.
461
471
 
472
+ ===== Roda
473
+
474
+ image:https://www.alchemists.io/images/projects/pennyworth/screenshots/roda.png[Roda workflow screenshot.,width=706,height=577,role=focal_point]
475
+
476
+ Provides quick access to the link:http://roda.jeremyevans.net[Roda] web framework.
477
+
478
+ 1. link:https://www.alchemists.io/public/alfred/workflows/roda.alfredworkflow[Download] and double
479
+ click to install.
480
+ 2. Click on _Configure Workflow_ to view documentation.
481
+
462
482
  ===== ROM
463
483
 
464
484
  image:https://www.alchemists.io/images/projects/pennyworth/screenshots/rom.png[ROM workflow screenshot.,width=706,height=415,role=focal_point]
@@ -483,7 +503,7 @@ Provides quick access to link:https://rspec.info[RSpec] resources.
483
503
 
484
504
  image:https://www.alchemists.io/images/projects/pennyworth/screenshots/ruby_on_rails.png[Ruby on Rails workflow screenshot.,width=706,height=524,role=focal_point]
485
505
 
486
- Provides access to link:https://https://rubyonrails.org[Ruby on Rails] resources.
506
+ Provides access to the link:https://https://rubyonrails.org[Ruby on Rails] web framework.
487
507
 
488
508
  1. link:https://www.alchemists.io/public/alfred/workflows/ruby_on_rails.alfredworkflow[Download] and double click to install.
489
509
  2. Click on _Configure Workflow_ to view documentation.
@@ -7,8 +7,8 @@ module Pennyworth
7
7
  class Config
8
8
  include Pennyworth::Import[:kernel, :logger]
9
9
 
10
- def initialize configuration: Configuration::Loader::CLIENT, **dependencies
11
- super(**dependencies)
10
+ def initialize(configuration: Configuration::Loader::CLIENT, **)
11
+ super(**)
12
12
  @configuration = configuration
13
13
  end
14
14
 
@@ -7,8 +7,8 @@ module Pennyworth
7
7
  class Encodings
8
8
  include Pennyworth::Import[:logger]
9
9
 
10
- def initialize processor: Processor.for_encodings, **dependencies
11
- super(**dependencies)
10
+ def initialize(processor: Processor.for_encodings, **)
11
+ super(**)
12
12
  @processor = processor
13
13
  end
14
14
 
@@ -7,8 +7,8 @@ module Pennyworth
7
7
  class GitHub
8
8
  include Pennyworth::Import[:logger]
9
9
 
10
- def initialize processor: Processor.for_projects, **dependencies
11
- super(**dependencies)
10
+ def initialize(processor: Processor.for_projects, **)
11
+ super(**)
12
12
  @processor = processor
13
13
  end
14
14
 
@@ -7,8 +7,8 @@ module Pennyworth
7
7
  class HTTPStatuses
8
8
  include Pennyworth::Import[:logger]
9
9
 
10
- def initialize processor: Processor.for_http_statuses, **dependencies
11
- super(**dependencies)
10
+ def initialize(processor: Processor.for_http_statuses, **)
11
+ super(**)
12
12
  @processor = processor
13
13
  end
14
14
 
@@ -7,8 +7,8 @@ module Pennyworth
7
7
  class RubyGems
8
8
  include Pennyworth::Import[:logger]
9
9
 
10
- def initialize processor: Processor.for_gems, **dependencies
11
- super(**dependencies)
10
+ def initialize(processor: Processor.for_gems, **)
11
+ super(**)
12
12
  @processor = processor
13
13
  end
14
14
 
@@ -7,8 +7,8 @@ module Pennyworth
7
7
  class StandardErrors
8
8
  include Pennyworth::Import[:logger]
9
9
 
10
- def initialize processor: Processor.for_standard_errors, **dependencies
11
- super(**dependencies)
10
+ def initialize(processor: Processor.for_standard_errors, **)
11
+ super(**)
12
12
  @processor = processor
13
13
  end
14
14
 
@@ -8,8 +8,8 @@ module Pennyworth
8
8
  class Errors
9
9
  include Pennyworth::Import[:logger]
10
10
 
11
- def initialize processor: Processor.for_system_errors, **dependencies
12
- super(**dependencies)
11
+ def initialize(processor: Processor.for_system_errors, **)
12
+ super(**)
13
13
  @processor = processor
14
14
  end
15
15
 
@@ -8,8 +8,8 @@ module Pennyworth
8
8
  class Signals
9
9
  include Pennyworth::Import[:logger]
10
10
 
11
- def initialize processor: Processor.for_system_signals, **dependencies
12
- super(**dependencies)
11
+ def initialize(processor: Processor.for_system_signals, **)
12
+ super(**)
13
13
  @processor = processor
14
14
  end
15
15
 
@@ -7,8 +7,8 @@ module Pennyworth
7
7
  class Text
8
8
  include Pennyworth::Import[:logger]
9
9
 
10
- def initialize processor: Processor.for_text, **dependencies
11
- super(**dependencies)
10
+ def initialize(processor: Processor.for_text, **)
11
+ super(**)
12
12
  @processor = processor
13
13
  end
14
14
 
@@ -14,10 +14,8 @@ module Pennyworth
14
14
 
15
15
  def self.call(...) = new(...).call
16
16
 
17
- def initialize configuration = Container[:configuration],
18
- client: Parser::CLIENT,
19
- **dependencies
20
- super(**dependencies)
17
+ def initialize(configuration = Container[:configuration], client: Parser::CLIENT, **)
18
+ super(**)
21
19
  @configuration = configuration
22
20
  @client = client
23
21
  end
@@ -20,13 +20,13 @@ module Pennyworth
20
20
  :logger
21
21
  ]
22
22
 
23
- def initialize parser: Parser.new, **dependencies
24
- super(**dependencies)
23
+ def initialize(parser: Parser.new, **)
24
+ super(**)
25
25
  @parser = parser
26
26
  end
27
27
 
28
28
  def call arguments = Core::EMPTY_ARRAY
29
- perform parser.call(arguments)
29
+ act_on parser.call(arguments)
30
30
  rescue OptionParser::ParseError, KeyError => error
31
31
  logger.error { error.message }
32
32
  end
@@ -35,7 +35,7 @@ module Pennyworth
35
35
 
36
36
  attr_reader :parser
37
37
 
38
- def perform configuration
38
+ def act_on configuration
39
39
  case configuration
40
40
  in action_config: Symbol => action then config.call action
41
41
  in action_encodings: true then encodings.call
@@ -8,10 +8,8 @@ module Pennyworth
8
8
  class HTTPStatuses
9
9
  include Import[:configuration]
10
10
 
11
- def initialize codes: Rack::Utils::HTTP_STATUS_CODES,
12
- model: Models::HTTPStatus,
13
- **dependencies
14
- super(**dependencies)
11
+ def initialize(codes: Rack::Utils::HTTP_STATUS_CODES, model: Models::HTTPStatus, **)
12
+ super(**)
15
13
  @codes = codes
16
14
  @model = model
17
15
  end
data/pennyworth.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "pennyworth"
5
- spec.version = "14.1.1"
5
+ spec.version = "14.1.2"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
8
  spec.homepage = "https://www.alchemists.io/projects/pennyworth"
data.tar.gz.sig CHANGED
@@ -1 +1 @@
1
- G7Y���.��5,ja���TQ��$�ʹ�@ ]Z�#�h�M���b!5�<�f�O���'4?����!�l��FT�۝i?����&>!�bק.�on9��s-Kj�H(&���N���q4L�"慵ݐ;���'漫ZH:��,u���j�M'Q5P�:��ӡBby���1M��C}|�Q1RD&Ǻ��p��:��5'A�l誀�A��m(�g��'ݯ֮UB|q"�R�ƽ����}wF������f�t
1
+ �@����'��13K'j�μ)x��, o('N���1-5���_Ssd�-<i�-�:�u �&X9�|7O+/���g5e�ڻ�`�.�~�F�mԲ���bcLsP[�s8z��~��x��@����֩�]�8۝m`��y�ۛwz3��"�+�M�txL]���t(fz�����!�������Ӌ��}�'7^� P,�5�\�x�풒([��Fq0(����/ܟ��w��LB�=.e(c�� ���
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pennyworth
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.1.1
4
+ version: 14.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -28,7 +28,7 @@ cert_chain:
28
28
  CxDe2+VuChj4I1nvIHdu+E6XoEVlanUPKmSg6nddhkKn2gC45Kyzh6FZqnzH/CRp
29
29
  RFE=
30
30
  -----END CERTIFICATE-----
31
- date: 2023-01-22 00:00:00.000000000 Z
31
+ date: 2023-02-05 00:00:00.000000000 Z
32
32
  dependencies:
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: cogger
@@ -278,7 +278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
278
278
  - !ruby/object:Gem::Version
279
279
  version: '0'
280
280
  requirements: []
281
- rubygems_version: 3.4.4
281
+ rubygems_version: 3.4.6
282
282
  signing_key:
283
283
  specification_version: 4
284
284
  summary: A command line interface that augments Alfred workflows.
metadata.gz.sig CHANGED
Binary file