pennyworth 9.5.0 → 11.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/README.adoc +341 -31
  5. data/bin/pennyworth +1 -3
  6. data/lib/pennyworth.rb +11 -2
  7. data/lib/pennyworth/cli/actions/config.rb +35 -0
  8. data/lib/pennyworth/cli/actions/encodings.rb +23 -0
  9. data/lib/pennyworth/cli/actions/git_hub.rb +27 -0
  10. data/lib/pennyworth/cli/actions/http_statuses.rb +23 -0
  11. data/lib/pennyworth/cli/actions/ruby_gems.rb +27 -0
  12. data/lib/pennyworth/cli/actions/system/errors.rb +25 -0
  13. data/lib/pennyworth/cli/actions/system/signals.rb +25 -0
  14. data/lib/pennyworth/cli/actions/text.rb +23 -0
  15. data/lib/pennyworth/cli/configuration/content.rb +28 -0
  16. data/lib/pennyworth/cli/configuration/defaults.yml +25 -0
  17. data/lib/pennyworth/cli/configuration/loader.rb +37 -0
  18. data/lib/pennyworth/cli/parsers.rb +11 -0
  19. data/lib/pennyworth/cli/parsers/assembler.rb +32 -0
  20. data/lib/pennyworth/cli/parsers/core.rb +100 -0
  21. data/lib/pennyworth/cli/parsers/git_hub.rb +51 -0
  22. data/lib/pennyworth/cli/parsers/ruby_gems.rb +35 -0
  23. data/lib/pennyworth/cli/shell.rb +82 -0
  24. data/lib/pennyworth/container.rb +40 -0
  25. data/lib/pennyworth/identity.rb +2 -1
  26. data/lib/pennyworth/inflector.rb +18 -0
  27. data/lib/pennyworth/integrations/git_hub/client.rb +59 -0
  28. data/lib/pennyworth/integrations/git_hub/response.rb +33 -0
  29. data/lib/pennyworth/integrations/ruby_gems/client.rb +29 -0
  30. data/lib/pennyworth/loaders/encodings.rb +31 -0
  31. data/lib/pennyworth/loaders/http_statuses.rb +28 -0
  32. data/lib/pennyworth/loaders/projects.rb +22 -0
  33. data/lib/pennyworth/loaders/system/errors.rb +33 -0
  34. data/lib/pennyworth/loaders/system/signals.rb +21 -0
  35. data/lib/pennyworth/loaders/text.rb +27 -0
  36. data/lib/pennyworth/models/encoding.rb +8 -0
  37. data/lib/pennyworth/models/http_status.rb +8 -0
  38. data/lib/pennyworth/models/system/error.rb +10 -0
  39. data/lib/pennyworth/models/system/signal.rb +10 -0
  40. data/lib/pennyworth/models/text.rb +8 -0
  41. data/lib/pennyworth/presenters/encoding.rb +22 -0
  42. data/lib/pennyworth/presenters/gem.rb +48 -0
  43. data/lib/pennyworth/presenters/http_status.rb +41 -0
  44. data/lib/pennyworth/presenters/repository.rb +35 -0
  45. data/lib/pennyworth/presenters/system/error.rb +28 -0
  46. data/lib/pennyworth/presenters/system/signal.rb +22 -0
  47. data/lib/pennyworth/presenters/text.rb +25 -0
  48. data/lib/pennyworth/processor.rb +68 -0
  49. data/lib/pennyworth/serializers/encoding.rb +33 -0
  50. data/lib/pennyworth/serializers/http_status.rb +41 -0
  51. data/lib/pennyworth/serializers/project.rb +52 -0
  52. data/lib/pennyworth/serializers/system/error.rb +46 -0
  53. data/lib/pennyworth/serializers/system/signal.rb +40 -0
  54. data/lib/pennyworth/serializers/text.rb +31 -0
  55. metadata +125 -34
  56. metadata.gz.sig +0 -0
  57. data/lib/pennyworth/cli.rb +0 -140
  58. data/lib/pennyworth/templates/workflows/user.workflow.B59B22A2-1880-4765-9358-412791BE9202/icon.png +0 -0
  59. data/lib/pennyworth/templates/workflows/user.workflow.B59B22A2-1880-4765-9358-412791BE9202/info.plist +0 -159
  60. data/lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/icon.png +0 -0
  61. data/lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/info.plist +0 -272
  62. data/lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-camelcase.png +0 -0
  63. data/lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-capitalize.png +0 -0
  64. data/lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-lowercase.png +0 -0
  65. data/lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-size.png +0 -0
  66. data/lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-snakecase.png +0 -0
  67. data/lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-titleize.png +0 -0
  68. data/lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-uppercase.png +0 -0
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Pennyworth
4
+ module Serializers
5
+ # Serializes a HTTP status into a compatible format for parsing within Alfred script filters.
6
+ class HTTPStatus
7
+ def initialize presenter
8
+ @presenter = presenter
9
+ end
10
+
11
+ def to_h
12
+ {
13
+ uid: id,
14
+ title: code,
15
+ subtitle: label,
16
+ arg: presenter.symbol,
17
+ mods: modifications,
18
+ text: {copy: "#{code} #{label}", largetype: "#{code} #{label}"}
19
+ }
20
+ end
21
+
22
+ private
23
+
24
+ attr_reader :presenter
25
+
26
+ def id = presenter.id
27
+
28
+ def code = presenter.code
29
+
30
+ def label = presenter.label
31
+
32
+ def modifications
33
+ {
34
+ control: {subtitle: "Copy code.", arg: id},
35
+ alt: {subtitle: "Copy label.", arg: label},
36
+ cmd: {subtitle: "View documentation.", arg: presenter.url}
37
+ }
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,52 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Pennyworth
4
+ module Serializers
5
+ # Serializes a project into a compatible format for parsing within Alfred script filters.
6
+ class Project
7
+ def initialize presenter
8
+ @presenter = presenter
9
+ end
10
+
11
+ def to_h
12
+ {
13
+ uid: presenter.id,
14
+ title: presenter.label,
15
+ subtitle: presenter.subtitle,
16
+ arg: site_url,
17
+ quicklookurl: site_url,
18
+ mods: modifications,
19
+ text: text
20
+ }
21
+ end
22
+
23
+ private
24
+
25
+ attr_reader :presenter
26
+
27
+ def modifications
28
+ {
29
+ control: modification(presenter.changes_url, "View changes."),
30
+ alt: modification(presenter.source_url, "View source."),
31
+ cmd: modification(presenter.issues_url, "View issues.")
32
+ }
33
+ end
34
+
35
+ def modification argument, subtitle
36
+ {
37
+ subtitle: subtitle,
38
+ arg: argument
39
+ }
40
+ end
41
+
42
+ def text
43
+ {
44
+ copy: site_url,
45
+ largetype: site_url
46
+ }
47
+ end
48
+
49
+ def site_url = presenter.site_url
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Pennyworth
4
+ module Serializers
5
+ module System
6
+ # Serializes a system error into a compatible format for parsing within Alfred script filters.
7
+ class Error
8
+ def initialize presenter
9
+ @presenter = presenter
10
+ end
11
+
12
+ def to_h
13
+ {
14
+ uid: id,
15
+ title: id,
16
+ subtitle: presenter.subtitle,
17
+ arg: label,
18
+ mods: modifications,
19
+ text: {copy: label, largetype: label}
20
+ }
21
+ end
22
+
23
+ private
24
+
25
+ attr_reader :presenter
26
+
27
+ def id = presenter.id
28
+
29
+ def label = presenter.label
30
+
31
+ def description = presenter.description
32
+
33
+ def modifications
34
+ {
35
+ control: {subtitle: "Copy ID.", arg: id},
36
+ alt: {subtitle: "Copy description.", arg: description},
37
+ cmd: {
38
+ subtitle: "Copy ID, name, and description.",
39
+ arg: "#{id}, #{label}, #{description}"
40
+ }
41
+ }
42
+ end
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Pennyworth
4
+ module Serializers
5
+ module System
6
+ # Serializes a signal into a compatible format for parsing within Alfred script filters.
7
+ class Signal
8
+ def initialize presenter
9
+ @presenter = presenter
10
+ end
11
+
12
+ def to_h
13
+ {
14
+ uid: id,
15
+ title: label,
16
+ subtitle: id,
17
+ arg: label,
18
+ mods: modifications,
19
+ text: {copy: label, largetype: label}
20
+ }
21
+ end
22
+
23
+ private
24
+
25
+ attr_reader :presenter
26
+
27
+ def id = presenter.id
28
+
29
+ def label = presenter.label
30
+
31
+ def modifications
32
+ {
33
+ alt: {subtitle: "Copy ID.", arg: id},
34
+ cmd: {subtitle: "Copy ID and name.", arg: "#{id}, #{label}"}
35
+ }
36
+ end
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Pennyworth
4
+ module Serializers
5
+ # Serializes a text into a compatible format for parsing within Alfred script filters.
6
+ class Text
7
+ def initialize presenter
8
+ @presenter = presenter
9
+ end
10
+
11
+ def to_h
12
+ {
13
+ uid: id,
14
+ title: presenter.label,
15
+ subtitle: id.capitalize,
16
+ arg: content,
17
+ icon: {path: "text/#{id}.png"},
18
+ text: {copy: content, largetype: content}
19
+ }
20
+ end
21
+
22
+ private
23
+
24
+ attr_reader :presenter
25
+
26
+ def id = presenter.id
27
+
28
+ def content = presenter.content
29
+ end
30
+ end
31
+ end
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: 9.5.0
4
+ version: 11.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -10,9 +10,9 @@ bindir: bin
10
10
  cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
- MIIC/jCCAeagAwIBAgIBAzANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDDBpicm9v
14
- a2UvREM9YWxjaGVtaXN0cy9EQz1pbzAeFw0yMDAzMTUxNDQ1MzJaFw0yMTAzMTUx
15
- NDQ1MzJaMCUxIzAhBgNVBAMMGmJyb29rZS9EQz1hbGNoZW1pc3RzL0RDPWlvMIIB
13
+ MIIC/jCCAeagAwIBAgIBBDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDDBpicm9v
14
+ a2UvREM9YWxjaGVtaXN0cy9EQz1pbzAeFw0yMTAzMTkxMjQ4MDZaFw0yMjAzMTkx
15
+ MjQ4MDZaMCUxIzAhBgNVBAMMGmJyb29rZS9EQz1hbGNoZW1pc3RzL0RDPWlvMIIB
16
16
  IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6l1qpXTiomH1RfMRloyw7MiE
17
17
  xyVx/x8Yc3EupdH7uhNaTXQGyORN6aOY//1QXXMHIZ9tW74nZLhesWMSUMYy0XhB
18
18
  brs+KkurHnc9FnEJAbG7ebGvl/ncqZt72nQvaxpDxvuCBHgJAz+8i5wl6FhLw+oT
@@ -20,58 +20,114 @@ cert_chain:
20
20
  D5vkU0YlAm1r98BymuJlcQ1qdkVEI1d48ph4kcS0S0nv1RiuyVb6TCAR3Nu3VaVq
21
21
  3fPzZKJLZBx67UvXdbdicWPiUR75elI4PXpLIic3xytaF52ZJYyKZCNZJhNwfQID
22
22
  AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU0nzow9vc
23
- 2CdikiiE3fJhP/gY4ggwDQYJKoZIhvcNAQELBQADggEBAIHhAlD3po4sTYqacXaQ
24
- XI9jIhrfMy//2PgbHWcETtlJPBeNUbbSNBABcllUHKqYsVDlSvSmss034KSWNR8F
25
- bF1GcloicyvcCC4y6IoW4it0COAcdeaaxkxiBSgKdQFpff9REnDlIKK4uQ9lLxIo
26
- Y2G5xubiziKZkyfWFuSr67PIjW3Bu673D1JVBArhA1qbgQmYQcy1CkGOjo+iO8Nf
27
- 7u/QSfBHb+r/bXhKscDgPpnKwbUmvgO2+94zJG9KsrmIydlzYfsD09aXKx0t6Xy4
28
- 2XV8FRa7/JimI07sPLC13eLY3xd/aYTi85Z782KIA4j0G8XEEWAX0ouBhlXPocZv
29
- QWc=
23
+ 2CdikiiE3fJhP/gY4ggwDQYJKoZIhvcNAQELBQADggEBAEjpaOXHHp8s/7GL2qCb
24
+ YAs7urOLv9VHSPfQWAwaTMVnSsIf3Sw4xzISOP/mmfEPBPXtz61K5esrE/uTFtgb
25
+ FyjxQk2H0sEWgrRXGGNHBWQRhhEs7LP/TByoC15A0br++xLxRz4r7HBLGAWQQDpg
26
+ 66BJ2TBVjxS6K64tKbq7+ACyrOZGgTfNHACh4M076y0x0oRf/rwBrU39/KRfuhbb
27
+ cm+nNCEtO35gTmZ2bVDHLGvWazi3gJt6+huQjfXTCUUG2YYBxwhu+GPdAGQPxpf9
28
+ lkHilIrX69jq8wMPpBhlaw2mRmeSL50Wv5u6xVBvOHhXFSP1crXM95vfLhLyRYod
29
+ W2A=
30
30
  -----END CERTIFICATE-----
31
- date: 2020-12-14 00:00:00.000000000 Z
31
+ date: 2021-06-08 00:00:00.000000000 Z
32
32
  dependencies:
33
+ - !ruby/object:Gem::Dependency
34
+ name: dry-container
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '0.8'
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '0.8'
47
+ - !ruby/object:Gem::Dependency
48
+ name: http
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '5.0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '5.0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: pastel
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '0.8'
68
+ type: :runtime
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '0.8'
75
+ - !ruby/object:Gem::Dependency
76
+ name: rack
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '2.2'
82
+ type: :runtime
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: '2.2'
33
89
  - !ruby/object:Gem::Dependency
34
90
  name: refinements
35
91
  requirement: !ruby/object:Gem::Requirement
36
92
  requirements:
37
93
  - - "~>"
38
94
  - !ruby/object:Gem::Version
39
- version: '7.16'
95
+ version: '8.0'
40
96
  type: :runtime
41
97
  prerelease: false
42
98
  version_requirements: !ruby/object:Gem::Requirement
43
99
  requirements:
44
100
  - - "~>"
45
101
  - !ruby/object:Gem::Version
46
- version: '7.16'
102
+ version: '8.0'
47
103
  - !ruby/object:Gem::Dependency
48
104
  name: runcom
49
105
  requirement: !ruby/object:Gem::Requirement
50
106
  requirements:
51
107
  - - "~>"
52
108
  - !ruby/object:Gem::Version
53
- version: '6.4'
109
+ version: '7.0'
54
110
  type: :runtime
55
111
  prerelease: false
56
112
  version_requirements: !ruby/object:Gem::Requirement
57
113
  requirements:
58
114
  - - "~>"
59
115
  - !ruby/object:Gem::Version
60
- version: '6.4'
116
+ version: '7.0'
61
117
  - !ruby/object:Gem::Dependency
62
- name: thor
118
+ name: zeitwerk
63
119
  requirement: !ruby/object:Gem::Requirement
64
120
  requirements:
65
121
  - - "~>"
66
122
  - !ruby/object:Gem::Version
67
- version: '0.20'
123
+ version: '2.4'
68
124
  type: :runtime
69
125
  prerelease: false
70
126
  version_requirements: !ruby/object:Gem::Requirement
71
127
  requirements:
72
128
  - - "~>"
73
129
  - !ruby/object:Gem::Version
74
- version: '0.20'
130
+ version: '2.4'
75
131
  description:
76
132
  email:
77
133
  - brooke@alchemists.io
@@ -86,19 +142,54 @@ files:
86
142
  - README.adoc
87
143
  - bin/pennyworth
88
144
  - lib/pennyworth.rb
89
- - lib/pennyworth/cli.rb
145
+ - lib/pennyworth/cli/actions/config.rb
146
+ - lib/pennyworth/cli/actions/encodings.rb
147
+ - lib/pennyworth/cli/actions/git_hub.rb
148
+ - lib/pennyworth/cli/actions/http_statuses.rb
149
+ - lib/pennyworth/cli/actions/ruby_gems.rb
150
+ - lib/pennyworth/cli/actions/system/errors.rb
151
+ - lib/pennyworth/cli/actions/system/signals.rb
152
+ - lib/pennyworth/cli/actions/text.rb
153
+ - lib/pennyworth/cli/configuration/content.rb
154
+ - lib/pennyworth/cli/configuration/defaults.yml
155
+ - lib/pennyworth/cli/configuration/loader.rb
156
+ - lib/pennyworth/cli/parsers.rb
157
+ - lib/pennyworth/cli/parsers/assembler.rb
158
+ - lib/pennyworth/cli/parsers/core.rb
159
+ - lib/pennyworth/cli/parsers/git_hub.rb
160
+ - lib/pennyworth/cli/parsers/ruby_gems.rb
161
+ - lib/pennyworth/cli/shell.rb
162
+ - lib/pennyworth/container.rb
90
163
  - lib/pennyworth/identity.rb
91
- - lib/pennyworth/templates/workflows/user.workflow.B59B22A2-1880-4765-9358-412791BE9202/icon.png
92
- - lib/pennyworth/templates/workflows/user.workflow.B59B22A2-1880-4765-9358-412791BE9202/info.plist
93
- - lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/icon.png
94
- - lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/info.plist
95
- - lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-camelcase.png
96
- - lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-capitalize.png
97
- - lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-lowercase.png
98
- - lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-size.png
99
- - lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-snakecase.png
100
- - lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-titleize.png
101
- - lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/string-uppercase.png
164
+ - lib/pennyworth/inflector.rb
165
+ - lib/pennyworth/integrations/git_hub/client.rb
166
+ - lib/pennyworth/integrations/git_hub/response.rb
167
+ - lib/pennyworth/integrations/ruby_gems/client.rb
168
+ - lib/pennyworth/loaders/encodings.rb
169
+ - lib/pennyworth/loaders/http_statuses.rb
170
+ - lib/pennyworth/loaders/projects.rb
171
+ - lib/pennyworth/loaders/system/errors.rb
172
+ - lib/pennyworth/loaders/system/signals.rb
173
+ - lib/pennyworth/loaders/text.rb
174
+ - lib/pennyworth/models/encoding.rb
175
+ - lib/pennyworth/models/http_status.rb
176
+ - lib/pennyworth/models/system/error.rb
177
+ - lib/pennyworth/models/system/signal.rb
178
+ - lib/pennyworth/models/text.rb
179
+ - lib/pennyworth/presenters/encoding.rb
180
+ - lib/pennyworth/presenters/gem.rb
181
+ - lib/pennyworth/presenters/http_status.rb
182
+ - lib/pennyworth/presenters/repository.rb
183
+ - lib/pennyworth/presenters/system/error.rb
184
+ - lib/pennyworth/presenters/system/signal.rb
185
+ - lib/pennyworth/presenters/text.rb
186
+ - lib/pennyworth/processor.rb
187
+ - lib/pennyworth/serializers/encoding.rb
188
+ - lib/pennyworth/serializers/http_status.rb
189
+ - lib/pennyworth/serializers/project.rb
190
+ - lib/pennyworth/serializers/system/error.rb
191
+ - lib/pennyworth/serializers/system/signal.rb
192
+ - lib/pennyworth/serializers/text.rb
102
193
  homepage: https://www.alchemists.io/projects/pennyworth
103
194
  licenses:
104
195
  - Apache-2.0
@@ -115,15 +206,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
115
206
  requirements:
116
207
  - - "~>"
117
208
  - !ruby/object:Gem::Version
118
- version: '2.7'
209
+ version: '3.0'
119
210
  required_rubygems_version: !ruby/object:Gem::Requirement
120
211
  requirements:
121
212
  - - ">="
122
213
  - !ruby/object:Gem::Version
123
214
  version: '0'
124
215
  requirements: []
125
- rubygems_version: 3.2.0
216
+ rubygems_version: 3.2.19
126
217
  signing_key:
127
218
  specification_version: 4
128
- summary: A command line interface that enhances Alfred with Ruby support.
219
+ summary: A command line interface that augments Alfred workflows.
129
220
  test_files: []