pennyworth 9.1.0 → 10.0.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: 19ead49fc0720f44bc878e7c87d690b734c69cf98f7c4e32c1b6441634568d9a
4
- data.tar.gz: 412a54b1eb8104e776cebe485418cf0cd5fb15cadcd0d1bff2f0b6872af58716
3
+ metadata.gz: bf24de6b246bd486a8657d86700b3097b281acfcd0c4bd2d2700b0da579faa7e
4
+ data.tar.gz: 6b5f65c8336823d39358031813bc26867b513c401af441b684b0a80ee133717b
5
5
  SHA512:
6
- metadata.gz: 66b75f41ca6858ae29b10cb517a521e37d3da506fb4d6eb60f069ba27dc11fdb3d0a983eaeca38438a8ff220515f9db2512ed43342cb0b58abae655643eb2ed7
7
- data.tar.gz: 13d980be8229578ae9b5aa35c126f4b6ed275ffaed281c13101b139b3e26732328b1bdccda42a8ae33dffe06968e98e4c997715bd3474218edfba307e8d49cfc
6
+ metadata.gz: 0bd04c90c0f7ef6e59ed12a100c716241e963a4ef6a070960c6e7a79b0fb617142b453da6273cec3bfcc91c1fce2541f7fe1a8e20aac84e25010339df0138cdc
7
+ data.tar.gz: 8ccdc2b29495bdd21a9b35dbfaf92ecf235ff70e3534f382382d8118234e816984e5a7cf2f7da33b0c2940ca1e06285d5fe49f35eac3421e5ca0b7b80540687c
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -150,7 +150,7 @@ additional liability.
150
150
 
151
151
  END OF TERMS AND CONDITIONS
152
152
 
153
- Copyright link:https://www.alchemists.io[Alchemists].
153
+ Copyright 2012 link:https://www.alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
154
154
 
155
155
  Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
156
156
  compliance with the License. You may obtain a link:https://www.apache.org/licenses/LICENSE-2.0[copy]
@@ -6,6 +6,8 @@
6
6
 
7
7
  [link=http://badge.fury.io/rb/pennyworth]
8
8
  image::https://badge.fury.io/rb/pennyworth.svg[Gem Version]
9
+ [link=https://www.alchemists.io/projects/code_quality]
10
+ image::https://img.shields.io/badge/code_style-alchemists-brightgreen.svg[Alchemists Style Guide]
9
11
  [link=https://circleci.com/gh/bkuhlmann/pennyworth]
10
12
  image::https://circleci.com/gh/bkuhlmann/pennyworth.svg?style=svg[Circle CI Status]
11
13
 
@@ -23,16 +25,14 @@ Workflow]
23
25
 
24
26
  == Requirements
25
27
 
26
- . https://www.apple.com/macos[macOS].
27
- . https://www.alfredapp.com[Alfred] (Version 2.x.x or higher).
28
- . https://www.alfredapp.com/purchase[Alfred Powerpack].
29
- . https://github.com/postmodern/chruby[chruby].
30
- . https://www.ruby-lang.org[Ruby 2.7.x].
28
+ . https://www.apple.com/macos[macOS]
29
+ . https://www.alfredapp.com[Alfred]
30
+ . https://www.alfredapp.com/purchase[Alfred Powerpack]
31
+ . https://github.com/postmodern/chruby[chruby]
32
+ . https://www.ruby-lang.org[Ruby]
31
33
 
32
34
  == Setup
33
35
 
34
- === Production
35
-
36
36
  To install, run:
37
37
 
38
38
  [source,bash]
@@ -40,24 +40,6 @@ To install, run:
40
40
  gem install pennyworth
41
41
  ----
42
42
 
43
- === Development
44
-
45
- To contribute, run:
46
-
47
- [source,bash]
48
- ----
49
- git clone https://github.com/bkuhlmann/pennyworth.git
50
- cd pennyworth
51
- bin/setup
52
- ----
53
-
54
- You can also use the IRB console for direct access to all objects:
55
-
56
- [source,bash]
57
- ----
58
- bin/console
59
- ----
60
-
61
43
  == Usage
62
44
 
63
45
  === Command Line Interface (CLI)
@@ -110,6 +92,24 @@ The default configuration is as follows:
110
92
  Feel free to take this default configuration, modify, and save as your own custom
111
93
  `configuration.yml`.
112
94
 
95
+ == Development
96
+
97
+ To contribute, run:
98
+
99
+ [source,bash]
100
+ ----
101
+ git clone https://github.com/bkuhlmann/pennyworth.git
102
+ cd pennyworth
103
+ bin/setup
104
+ ----
105
+
106
+ You can also use the IRB console for direct access to all objects:
107
+
108
+ [source,bash]
109
+ ----
110
+ bin/console
111
+ ----
112
+
113
113
  == Tests
114
114
 
115
115
  To test, run:
@@ -146,4 +146,4 @@ Read link:CHANGES.adoc[CHANGES] for details.
146
146
 
147
147
  == Credits
148
148
 
149
- Engineered by link:https://www.alchemists.io/team/brooke_kuhlmann.html[Brooke Kuhlmann].
149
+ Engineered by link:https://www.alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
@@ -58,8 +58,6 @@ module Pennyworth
58
58
  desc: "Calculate string size.",
59
59
  type: :boolean,
60
60
  default: false
61
- # rubocop:disable Metrics/CyclomaticComplexity
62
- # rubocop:disable Metrics/PerceivedComplexity
63
61
  def string value
64
62
  if options.downcase? then say value.downcase
65
63
  elsif options.upcase? then say value.upcase
@@ -70,8 +68,6 @@ module Pennyworth
70
68
  else say "Type 'pennyworth help string' for usage."
71
69
  end
72
70
  end
73
- # rubocop:enable Metrics/CyclomaticComplexity
74
- # rubocop:enable Metrics/PerceivedComplexity
75
71
 
76
72
  desc "-i, [--install]", "Install Alfred Workflows."
77
73
  map %w[-i --install] => :install
@@ -83,6 +79,7 @@ module Pennyworth
83
79
  if valid_file? alfred_settings_root, "Invalid directory for Alfred settings root"
84
80
  if yes? "Installing Alfred Workflows will destroy exiting, identical, workflows. " \
85
81
  "Continue (y/n)?"
82
+
86
83
  say_status :info, "Installing Alfred Workflows...", :green
87
84
 
88
85
  workflows = Dir.glob File.join(self.class.source_root, "workflows", "**")
@@ -5,7 +5,7 @@ module Pennyworth
5
5
  module Identity
6
6
  NAME = "pennyworth"
7
7
  LABEL = "Pennyworth"
8
- VERSION = "9.1.0"
8
+ VERSION = "10.0.0"
9
9
  VERSION_LABEL = "#{LABEL} #{VERSION}"
10
10
  end
11
11
  end
@@ -113,13 +113,9 @@
113
113
  </dict>
114
114
  </array>
115
115
  <key>readme</key>
116
- <string>Copyright © 2014 Alchemists.
116
+ <string>= Overview
117
117
 
118
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
119
-
120
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
121
-
122
- THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</string>
118
+ Provides a collection of Ruby on Rails utilities when interacting with the application locally.</string>
123
119
  <key>uidata</key>
124
120
  <dict>
125
121
  <key>9AF7E939-D5FB-483D-927D-537571A9F4C1</key>
@@ -153,8 +149,10 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I
153
149
  <key>port</key>
154
150
  <string>3000</string>
155
151
  </dict>
152
+ <key>variablesdontexport</key>
153
+ <array/>
156
154
  <key>version</key>
157
- <string>0.1.0</string>
155
+ <string>1.0.0</string>
158
156
  <key>webaddress</key>
159
157
  <string>https://www.alchemists.io</string>
160
158
  </dict>
@@ -83,6 +83,8 @@
83
83
  <false/>
84
84
  <key>alfredfiltersresultsmatchmode</key>
85
85
  <integer>0</integer>
86
+ <key>argumenttreatemptyqueryasnil</key>
87
+ <false/>
86
88
  <key>argumenttrimmode</key>
87
89
  <integer>0</integer>
88
90
  <key>argumenttype</key>
@@ -181,7 +183,7 @@ EOB
181
183
  <key>uid</key>
182
184
  <string>F6F8148B-CEA3-47D4-BC24-142C40A03CBC</string>
183
185
  <key>version</key>
184
- <integer>2</integer>
186
+ <integer>3</integer>
185
187
  </dict>
186
188
  <dict>
187
189
  <key>config</key>
@@ -224,17 +226,13 @@ eval {query}</string>
224
226
  <key>uid</key>
225
227
  <string>9F8D5496-FDF9-42A7-9247-60D15CCCE012</string>
226
228
  <key>version</key>
227
- <integer>2</integer>
229
+ <integer>3</integer>
228
230
  </dict>
229
231
  </array>
230
232
  <key>readme</key>
231
- <string>Copyright © 2013 Alchemists.
232
-
233
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
234
-
235
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
233
+ <string>= Pennyworth
236
234
 
237
- THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</string>
235
+ Provides a collection of workflows for interacting with the Pennyworth CLI.</string>
238
236
  <key>uidata</key>
239
237
  <dict>
240
238
  <key>3A7EDDC3-8686-4988-998C-9EA7A1B804D1</key>
@@ -267,7 +265,7 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I
267
265
  </dict>
268
266
  </dict>
269
267
  <key>version</key>
270
- <string>1.0.0</string>
268
+ <string>1.1.0</string>
271
269
  <key>webaddress</key>
272
270
  <string>https://www.alchemists.io</string>
273
271
  </dict>
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pennyworth
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.1.0
4
+ version: 10.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain:
11
11
  - |
@@ -28,7 +28,7 @@ cert_chain:
28
28
  2XV8FRa7/JimI07sPLC13eLY3xd/aYTi85Z782KIA4j0G8XEEWAX0ouBhlXPocZv
29
29
  QWc=
30
30
  -----END CERTIFICATE-----
31
- date: 2020-04-01 00:00:00.000000000 Z
31
+ date: 2020-12-30 00:00:00.000000000 Z
32
32
  dependencies:
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: refinements
@@ -36,28 +36,28 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '7.0'
39
+ version: '8.0'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '7.0'
46
+ version: '8.0'
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: runcom
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '6.0'
53
+ version: '7.0'
54
54
  type: :runtime
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '6.0'
60
+ version: '7.0'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: thor
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -72,203 +72,7 @@ dependencies:
72
72
  - - "~>"
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0.20'
75
- - !ruby/object:Gem::Dependency
76
- name: bundler-audit
77
- requirement: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - "~>"
80
- - !ruby/object:Gem::Version
81
- version: '0.6'
82
- type: :development
83
- prerelease: false
84
- version_requirements: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - "~>"
87
- - !ruby/object:Gem::Version
88
- version: '0.6'
89
- - !ruby/object:Gem::Dependency
90
- name: gemsmith
91
- requirement: !ruby/object:Gem::Requirement
92
- requirements:
93
- - - "~>"
94
- - !ruby/object:Gem::Version
95
- version: '14.0'
96
- type: :development
97
- prerelease: false
98
- version_requirements: !ruby/object:Gem::Requirement
99
- requirements:
100
- - - "~>"
101
- - !ruby/object:Gem::Version
102
- version: '14.0'
103
- - !ruby/object:Gem::Dependency
104
- name: git-cop
105
- requirement: !ruby/object:Gem::Requirement
106
- requirements:
107
- - - "~>"
108
- - !ruby/object:Gem::Version
109
- version: '4.0'
110
- type: :development
111
- prerelease: false
112
- version_requirements: !ruby/object:Gem::Requirement
113
- requirements:
114
- - - "~>"
115
- - !ruby/object:Gem::Version
116
- version: '4.0'
117
- - !ruby/object:Gem::Dependency
118
- name: guard-rspec
119
- requirement: !ruby/object:Gem::Requirement
120
- requirements:
121
- - - "~>"
122
- - !ruby/object:Gem::Version
123
- version: '4.7'
124
- type: :development
125
- prerelease: false
126
- version_requirements: !ruby/object:Gem::Requirement
127
- requirements:
128
- - - "~>"
129
- - !ruby/object:Gem::Version
130
- version: '4.7'
131
- - !ruby/object:Gem::Dependency
132
- name: pry
133
- requirement: !ruby/object:Gem::Requirement
134
- requirements:
135
- - - "~>"
136
- - !ruby/object:Gem::Version
137
- version: '0.12'
138
- type: :development
139
- prerelease: false
140
- version_requirements: !ruby/object:Gem::Requirement
141
- requirements:
142
- - - "~>"
143
- - !ruby/object:Gem::Version
144
- version: '0.12'
145
- - !ruby/object:Gem::Dependency
146
- name: pry-byebug
147
- requirement: !ruby/object:Gem::Requirement
148
- requirements:
149
- - - "~>"
150
- - !ruby/object:Gem::Version
151
- version: '3.7'
152
- type: :development
153
- prerelease: false
154
- version_requirements: !ruby/object:Gem::Requirement
155
- requirements:
156
- - - "~>"
157
- - !ruby/object:Gem::Version
158
- version: '3.7'
159
- - !ruby/object:Gem::Dependency
160
- name: rake
161
- requirement: !ruby/object:Gem::Requirement
162
- requirements:
163
- - - "~>"
164
- - !ruby/object:Gem::Version
165
- version: '13.0'
166
- type: :development
167
- prerelease: false
168
- version_requirements: !ruby/object:Gem::Requirement
169
- requirements:
170
- - - "~>"
171
- - !ruby/object:Gem::Version
172
- version: '13.0'
173
- - !ruby/object:Gem::Dependency
174
- name: reek
175
- requirement: !ruby/object:Gem::Requirement
176
- requirements:
177
- - - "~>"
178
- - !ruby/object:Gem::Version
179
- version: '6.0'
180
- type: :development
181
- prerelease: false
182
- version_requirements: !ruby/object:Gem::Requirement
183
- requirements:
184
- - - "~>"
185
- - !ruby/object:Gem::Version
186
- version: '6.0'
187
- - !ruby/object:Gem::Dependency
188
- name: rspec
189
- requirement: !ruby/object:Gem::Requirement
190
- requirements:
191
- - - "~>"
192
- - !ruby/object:Gem::Version
193
- version: '3.9'
194
- type: :development
195
- prerelease: false
196
- version_requirements: !ruby/object:Gem::Requirement
197
- requirements:
198
- - - "~>"
199
- - !ruby/object:Gem::Version
200
- version: '3.9'
201
- - !ruby/object:Gem::Dependency
202
- name: rubocop
203
- requirement: !ruby/object:Gem::Requirement
204
- requirements:
205
- - - "~>"
206
- - !ruby/object:Gem::Version
207
- version: '0.79'
208
- type: :development
209
- prerelease: false
210
- version_requirements: !ruby/object:Gem::Requirement
211
- requirements:
212
- - - "~>"
213
- - !ruby/object:Gem::Version
214
- version: '0.79'
215
- - !ruby/object:Gem::Dependency
216
- name: rubocop-performance
217
- requirement: !ruby/object:Gem::Requirement
218
- requirements:
219
- - - "~>"
220
- - !ruby/object:Gem::Version
221
- version: '1.5'
222
- type: :development
223
- prerelease: false
224
- version_requirements: !ruby/object:Gem::Requirement
225
- requirements:
226
- - - "~>"
227
- - !ruby/object:Gem::Version
228
- version: '1.5'
229
- - !ruby/object:Gem::Dependency
230
- name: rubocop-rake
231
- requirement: !ruby/object:Gem::Requirement
232
- requirements:
233
- - - "~>"
234
- - !ruby/object:Gem::Version
235
- version: '0.5'
236
- type: :development
237
- prerelease: false
238
- version_requirements: !ruby/object:Gem::Requirement
239
- requirements:
240
- - - "~>"
241
- - !ruby/object:Gem::Version
242
- version: '0.5'
243
- - !ruby/object:Gem::Dependency
244
- name: rubocop-rspec
245
- requirement: !ruby/object:Gem::Requirement
246
- requirements:
247
- - - "~>"
248
- - !ruby/object:Gem::Version
249
- version: '1.37'
250
- type: :development
251
- prerelease: false
252
- version_requirements: !ruby/object:Gem::Requirement
253
- requirements:
254
- - - "~>"
255
- - !ruby/object:Gem::Version
256
- version: '1.37'
257
- - !ruby/object:Gem::Dependency
258
- name: simplecov
259
- requirement: !ruby/object:Gem::Requirement
260
- requirements:
261
- - - "~>"
262
- - !ruby/object:Gem::Version
263
- version: '0.18'
264
- type: :development
265
- prerelease: false
266
- version_requirements: !ruby/object:Gem::Requirement
267
- requirements:
268
- - - "~>"
269
- - !ruby/object:Gem::Version
270
- version: '0.18'
271
- description:
75
+ description:
272
76
  email:
273
77
  - brooke@alchemists.io
274
78
  executables:
@@ -303,7 +107,7 @@ metadata:
303
107
  changelog_uri: https://www.alchemists.io/projects/pennyworth/changes.html
304
108
  documentation_uri: https://www.alchemists.io/projects/pennyworth
305
109
  source_code_uri: https://github.com/bkuhlmann/pennyworth
306
- post_install_message:
110
+ post_install_message:
307
111
  rdoc_options: []
308
112
  require_paths:
309
113
  - lib
@@ -311,15 +115,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
311
115
  requirements:
312
116
  - - "~>"
313
117
  - !ruby/object:Gem::Version
314
- version: '2.7'
118
+ version: '3.0'
315
119
  required_rubygems_version: !ruby/object:Gem::Requirement
316
120
  requirements:
317
121
  - - ">="
318
122
  - !ruby/object:Gem::Version
319
123
  version: '0'
320
124
  requirements: []
321
- rubygems_version: 3.1.2
322
- signing_key:
125
+ rubygems_version: 3.2.3
126
+ signing_key:
323
127
  specification_version: 4
324
128
  summary: A command line interface that enhances Alfred with Ruby support.
325
129
  test_files: []
metadata.gz.sig CHANGED
Binary file