pennyworth 14.0.0 → 14.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +2 -1
- data/README.adoc +21 -1
- data/lib/pennyworth/cli/parser.rb +2 -1
- data/lib/pennyworth/cli/parsers/core.rb +2 -1
- data/lib/pennyworth/cli/parsers/git_hub.rb +2 -1
- data/lib/pennyworth/cli/parsers/ruby_gems.rb +3 -1
- data/lib/pennyworth/cli/shell.rb +3 -1
- data/pennyworth.gemspec +2 -1
- data.tar.gz.sig +1 -3
- metadata +17 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 496677033cffc14c6e9dc2baa4c8e30f2ebc8dc6d0a9f9bdd078e2e7feadd4e3
|
4
|
+
data.tar.gz: 96c6fc522f76482b43083f9e4972fcc88342ffafa8198c48de1525f9f368ae12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0ec68e84c70717d06d16f10bdb3720e1bc500d7d2d52a98819f915f9dbd5f670b82a7e37bff1454420a0baa1a71b494d559aa0f29beef8134bce1c621228d82
|
7
|
+
data.tar.gz: c2dde4d5a917930ce5753184879fe01e330d1356813e668a3f1a59cc218e701d3be6109ef616bd409fa7f1804f164d8c716676d4a719090272fbf71c7b0e4d51
|
checksums.yaml.gz.sig
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
|
1
|
+
�+��R,�k�V8H�Kj�!�N �Z��d-jR�፷[J
|
2
|
+
e�l��Mj�:��Zu"9�� P������Y�(~���g�����t|'���WU:���� �*���
|
data/README.adoc
CHANGED
@@ -459,6 +459,16 @@ Provides quick access to link:https://github.com/rack/rack[Rack] resources.
|
|
459
459
|
click to install.
|
460
460
|
2. Click on _Configure Workflow_ to view documentation.
|
461
461
|
|
462
|
+
===== ROM
|
463
|
+
|
464
|
+
image:https://www.alchemists.io/images/projects/pennyworth/screenshots/rom.png[ROM workflow screenshot.,width=706,height=415,role=focal_point]
|
465
|
+
|
466
|
+
Provides quick access to link:https://rom-rb.org[Ruby Object Mapper (ROM)] resources.
|
467
|
+
|
468
|
+
1. link:https://www.alchemists.io/public/alfred/workflows/rom.alfredworkflow[Download] and double
|
469
|
+
click to install.
|
470
|
+
2. Click on _Configure Workflow_ to view documentation.
|
471
|
+
|
462
472
|
===== RSpec
|
463
473
|
|
464
474
|
image:https://www.alchemists.io/images/projects/pennyworth/screenshots/rspec.png[RSpec workflow screenshot.,width=706,height=362,role=focal_point]
|
@@ -478,6 +488,16 @@ Provides access to link:https://https://rubyonrails.org[Ruby on Rails] resources
|
|
478
488
|
1. link:https://www.alchemists.io/public/alfred/workflows/ruby_on_rails.alfredworkflow[Download] and double click to install.
|
479
489
|
2. Click on _Configure Workflow_ to view documentation.
|
480
490
|
|
491
|
+
===== Search
|
492
|
+
|
493
|
+
image:https://www.alchemists.io/images/projects/pennyworth/screenshots/search.png[Search workflow screenshot.,width=706,height=631,role=focal_point]
|
494
|
+
|
495
|
+
Provides quick access to search resources.
|
496
|
+
|
497
|
+
1. link:https://www.alchemists.io/public/alfred/workflows/search.alfredworkflow[Download] and
|
498
|
+
double click to install.
|
499
|
+
2. Click on _Configure Workflow_ to view documentation.
|
500
|
+
|
481
501
|
===== Slack
|
482
502
|
|
483
503
|
image:https://www.alchemists.io/images/projects/pennyworth/screenshots/slack.png[Slack workflow screenshot.,width=706,height=524,role=focal_point]
|
@@ -559,7 +579,7 @@ To test, run:
|
|
559
579
|
|
560
580
|
[source,bash]
|
561
581
|
----
|
562
|
-
|
582
|
+
bin/rake
|
563
583
|
----
|
564
584
|
|
565
585
|
== link:https://www.alchemists.io/policies/license[License]
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "core"
|
3
4
|
require "optparse"
|
4
5
|
|
5
6
|
module Pennyworth
|
@@ -17,7 +18,7 @@ module Pennyworth
|
|
17
18
|
@client = client
|
18
19
|
end
|
19
20
|
|
20
|
-
def call arguments =
|
21
|
+
def call arguments = Core::EMPTY_ARRAY
|
21
22
|
sections.each { |parser| parser.call configuration_duplicate, client: }
|
22
23
|
client.parse arguments
|
23
24
|
configuration_duplicate.freeze
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "core"
|
3
4
|
require "refinements/structs"
|
4
5
|
|
5
6
|
module Pennyworth
|
@@ -21,7 +22,7 @@ module Pennyworth
|
|
21
22
|
@client = client
|
22
23
|
end
|
23
24
|
|
24
|
-
def call arguments =
|
25
|
+
def call arguments = ::Core::EMPTY_ARRAY
|
25
26
|
client.banner = specification.labeled_summary
|
26
27
|
client.separator "\nUSAGE:\n"
|
27
28
|
collate
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "core"
|
3
4
|
require "refinements/structs"
|
4
5
|
|
5
6
|
module Pennyworth
|
@@ -16,7 +17,7 @@ module Pennyworth
|
|
16
17
|
@client = client
|
17
18
|
end
|
18
19
|
|
19
|
-
def call arguments =
|
20
|
+
def call arguments = ::Core::EMPTY_ARRAY
|
20
21
|
client.separator "\nGITHUB OPTIONS:\n"
|
21
22
|
private_methods.sort.grep(/add_/).each { |method| __send__ method }
|
22
23
|
client.parse arguments
|
@@ -1,5 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "core"
|
4
|
+
|
3
5
|
module Pennyworth
|
4
6
|
module CLI
|
5
7
|
module Parsers
|
@@ -12,7 +14,7 @@ module Pennyworth
|
|
12
14
|
@client = client
|
13
15
|
end
|
14
16
|
|
15
|
-
def call arguments =
|
17
|
+
def call arguments = ::Core::EMPTY_ARRAY
|
16
18
|
client.separator "\nRUBYGEMS OPTIONS:\n"
|
17
19
|
add_owner
|
18
20
|
client.parse arguments
|
data/lib/pennyworth/cli/shell.rb
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "core"
|
4
|
+
|
3
5
|
module Pennyworth
|
4
6
|
module CLI
|
5
7
|
# The main Command Line Interface (CLI) object.
|
@@ -23,7 +25,7 @@ module Pennyworth
|
|
23
25
|
@parser = parser
|
24
26
|
end
|
25
27
|
|
26
|
-
def call arguments =
|
28
|
+
def call arguments = Core::EMPTY_ARRAY
|
27
29
|
perform parser.call(arguments)
|
28
30
|
rescue OptionParser::ParseError, KeyError => error
|
29
31
|
logger.error { error.message }
|
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.
|
5
|
+
spec.version = "14.1.1"
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
8
8
|
spec.homepage = "https://www.alchemists.io/projects/pennyworth"
|
@@ -24,6 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
|
25
25
|
spec.required_ruby_version = "~> 3.2"
|
26
26
|
spec.add_dependency "cogger", "~> 0.5"
|
27
|
+
spec.add_dependency "core", "~> 0.1"
|
27
28
|
spec.add_dependency "dry-container", "~> 0.11"
|
28
29
|
spec.add_dependency "ghub", "~> 0.3"
|
29
30
|
spec.add_dependency "http", "~> 5.1"
|
data.tar.gz.sig
CHANGED
@@ -1,3 +1 @@
|
|
1
|
-
�
|
2
|
-
�!�lZ�����D�ò�B���)Xrx�Ο�����w���4��x�?���XC(gФ�M;oQ�����
|
3
|
-
�h�"%�BV�,yd���3���<f� ~�PpO�P�}�oz�<F�m�u��a;�����c݄p�����{������0���C=�YM��ٺA���r�JC�
|
1
|
+
G7Y���.��5,ja���TQ��$�ʹ�@ ]Z�#�h�M���b!5�<�f�O���'4?����!�l��F�T�i?����&>!�bק.�on9��s-Kj�H�(&���N���q4L�"慵ݐ;���'漫ZH:��,u���j�M'Q�5�P�:��ӡBb�y���1M��C}|�Q1RD&Ǻ��p��:��5'A�l誀�A��m(�g��'ݯ֮U�B|q"�R�ƽ����}wF������f�t
|
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.
|
4
|
+
version: 14.1.1
|
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:
|
31
|
+
date: 2023-01-22 00:00:00.000000000 Z
|
32
32
|
dependencies:
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: cogger
|
@@ -44,6 +44,20 @@ dependencies:
|
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '0.5'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: core
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0.1'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0.1'
|
47
61
|
- !ruby/object:Gem::Dependency
|
48
62
|
name: dry-container
|
49
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -264,7 +278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
264
278
|
- !ruby/object:Gem::Version
|
265
279
|
version: '0'
|
266
280
|
requirements: []
|
267
|
-
rubygems_version: 3.4.
|
281
|
+
rubygems_version: 3.4.4
|
268
282
|
signing_key:
|
269
283
|
specification_version: 4
|
270
284
|
summary: A command line interface that augments Alfred workflows.
|
metadata.gz.sig
CHANGED
Binary file
|