pennyworth 2.5.0 → 2.6.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
  SHA1:
3
- metadata.gz: beb1b114507fbccf5b1e05d167956b8b1ad6544a
4
- data.tar.gz: c73f5f2b5d191bda998062a7e87329f7a59c15e0
3
+ metadata.gz: c7f0d0c4033d44f11f6a509419fee3a42a07f966
4
+ data.tar.gz: df321136a6179660ff50edeeb6605062cd17e59f
5
5
  SHA512:
6
- metadata.gz: 8ce7f48052396e647acd6c23e2dbeffbd6a2f44cf9b844cce9ebe6453d19e132901bacb88f6f26bbd721e695fc4d1885c4fb15abba076d0e172d5549ffab54df
7
- data.tar.gz: 77c7c04e0dca3253faf05da922a3a6a032cd48a00fc40218dfd1c54d116eb78991f8f05efe7c4a393b659b5c23e54a854f82bd549c89465b5809864a31e3d140
6
+ metadata.gz: 3f24e8673d33a709e2a668d6c3ed08775d2ba9161d48b8b6bc0992eaac634dc5fbe7267aeadc103bc26f8fd877d32f1f9504c98ab1a36cfe64296e15ae71b49a
7
+ data.tar.gz: 6de409d51ce14de7527ab0153101ea44f1d4461a347fb0cc5ee98f4057e35b1dd9d1c668f17ff43cd6ce451ff54180bf29d93e32203e61e8eb09c63ae2a2dcd4
checksums.yaml.gz.sig CHANGED
Binary file
data/README.md CHANGED
@@ -11,12 +11,13 @@ Enhances and extends Alfred by providing a Ruby command line interface (CLI).
11
11
 
12
12
  # Features
13
13
 
14
- * Adds Ruby support to Alfred.
15
- * Adds the following Alfred Workflows:
16
- * Pennyworth String Upcase
17
- * Pennyworth String Length
18
- * Pennyworth String Downcase
19
- * Pennyworth String Capitalize
14
+ - Adds Ruby support to Alfred.
15
+ - Adds the following Alfred Workflows:
16
+ - Pennyworth String Upcase
17
+ - Pennyworth String Length
18
+ - Pennyworth String Downcase
19
+ - Pennyworth String Capitalize
20
+ - Ruby on Rails Kit
20
21
 
21
22
  # Requirements
22
23
 
@@ -25,9 +26,9 @@ Enhances and extends Alfred by providing a Ruby command line interface (CLI).
25
26
  0. [Alfred Powerpack](http://www.alfredapp.com/purchase).
26
27
  0. [rbenv](https://github.com/sstephenson/rbenv).
27
28
  0. Any of the following Ruby VMs:
28
- * [MRI 2.x.x](http://www.ruby-lang.org)
29
- * [JRuby 1.x.x](http://jruby.org)
30
- * [Rubinius 2.x.x](http://rubini.us)
29
+ - [MRI 2.x.x](http://www.ruby-lang.org)
30
+ - [JRuby 1.x.x](http://jruby.org)
31
+ - [Rubinius 2.x.x](http://rubini.us)
31
32
 
32
33
  # Setup
33
34
 
@@ -88,9 +89,9 @@ To test, run:
88
89
 
89
90
  Read [Semantic Versioning](http://semver.org) for details. Briefly, it means:
90
91
 
91
- * Patch (x.y.Z) - Incremented for small, backwards compatible bug fixes.
92
- * Minor (x.Y.z) - Incremented for new, backwards compatible public API enhancements and/or bug fixes.
93
- * Major (X.y.z) - Incremented for any backwards incompatible public API changes.
92
+ - Patch (x.y.Z) - Incremented for small, backwards compatible bug fixes.
93
+ - Minor (x.Y.z) - Incremented for new, backwards compatible public API enhancements and/or bug fixes.
94
+ - Major (X.y.z) - Incremented for any backwards incompatible public API changes.
94
95
 
95
96
  # Contributions
96
97
 
@@ -0,0 +1,87 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>bundleid</key>
6
+ <string></string>
7
+ <key>category</key>
8
+ <string>Tools</string>
9
+ <key>connections</key>
10
+ <dict>
11
+ <key>D00FF9D7-4976-488B-AC15-4F268B0FE089</key>
12
+ <array/>
13
+ </dict>
14
+ <key>createdby</key>
15
+ <string>Brooke Kuhlmann</string>
16
+ <key>description</key>
17
+ <string>A collection of Ruby on Rails shortcuts.</string>
18
+ <key>disabled</key>
19
+ <false/>
20
+ <key>name</key>
21
+ <string>Ruby on Rails Kit</string>
22
+ <key>objects</key>
23
+ <array>
24
+ <dict>
25
+ <key>config</key>
26
+ <dict>
27
+ <key>argumenttype</key>
28
+ <integer>0</integer>
29
+ <key>escaping</key>
30
+ <integer>127</integer>
31
+ <key>keyword</key>
32
+ <string>ror</string>
33
+ <key>runningsubtext</key>
34
+ <string>Launching default browser...</string>
35
+ <key>script</key>
36
+ <string>#!/usr/bin/ruby -w
37
+
38
+ root_url = "http://localhost:3000"
39
+
40
+ case "{query}"
41
+ when 'l'
42
+ `open #{root_url}`
43
+ when 'r'
44
+ `open #{root_url}/rails/routes`
45
+ when 'm'
46
+ `open #{root_url}/rails/mailers`
47
+ else
48
+ `open #{root_url}`
49
+ end
50
+ </string>
51
+ <key>subtext</key>
52
+ <string>Open local Rails endpoint in default browser.</string>
53
+ <key>title</key>
54
+ <string>Ruby on Rails</string>
55
+ <key>type</key>
56
+ <integer>2</integer>
57
+ <key>withspace</key>
58
+ <true/>
59
+ </dict>
60
+ <key>type</key>
61
+ <string>alfred.workflow.input.scriptfilter</string>
62
+ <key>uid</key>
63
+ <string>D00FF9D7-4976-488B-AC15-4F268B0FE089</string>
64
+ <key>version</key>
65
+ <integer>0</integer>
66
+ </dict>
67
+ </array>
68
+ <key>readme</key>
69
+ <string>Copyright © 2014 Alchemists.
70
+
71
+ 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:
72
+
73
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
74
+
75
+ 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>
76
+ <key>uidata</key>
77
+ <dict>
78
+ <key>D00FF9D7-4976-488B-AC15-4F268B0FE089</key>
79
+ <dict>
80
+ <key>ypos</key>
81
+ <real>10</real>
82
+ </dict>
83
+ </dict>
84
+ <key>webaddress</key>
85
+ <string>http://www.alchemists.io</string>
86
+ </dict>
87
+ </plist>
@@ -1,3 +1,3 @@
1
1
  module Pennyworth
2
- VERSION = "2.5.0"
2
+ VERSION = "2.6.0"
3
3
  end
data.tar.gz.sig CHANGED
Binary file
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: 2.5.0
4
+ version: 2.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -30,7 +30,7 @@ cert_chain:
30
30
  fMlZDUGx3lQarp/vPjK+6XH7DLXjBEKqeIGBIpLthYUvDxJRp23C+T3liGSL32vg
31
31
  mSpxxwmK95GDFuEy2mNPaxnazdkw8c+7DbrSpzd/CnNZkRgitxOavs8=
32
32
  -----END CERTIFICATE-----
33
- date: 2014-07-07 00:00:00.000000000 Z
33
+ date: 2014-10-23 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: pry-byebug
@@ -80,14 +80,14 @@ dependencies:
80
80
  requirements:
81
81
  - - "~>"
82
82
  - !ruby/object:Gem::Version
83
- version: '1.6'
83
+ version: '1.7'
84
84
  type: :runtime
85
85
  prerelease: false
86
86
  version_requirements: !ruby/object:Gem::Requirement
87
87
  requirements:
88
88
  - - "~>"
89
89
  - !ruby/object:Gem::Version
90
- version: '1.6'
90
+ version: '1.7'
91
91
  - !ruby/object:Gem::Dependency
92
92
  name: rake
93
93
  requirement: !ruby/object:Gem::Requirement
@@ -186,6 +186,20 @@ dependencies:
186
186
  - - ">="
187
187
  - !ruby/object:Gem::Version
188
188
  version: '0'
189
+ - !ruby/object:Gem::Dependency
190
+ name: terminal-notifier-guard
191
+ requirement: !ruby/object:Gem::Requirement
192
+ requirements:
193
+ - - ">="
194
+ - !ruby/object:Gem::Version
195
+ version: '0'
196
+ type: :development
197
+ prerelease: false
198
+ version_requirements: !ruby/object:Gem::Requirement
199
+ requirements:
200
+ - - ">="
201
+ - !ruby/object:Gem::Version
202
+ version: '0'
189
203
  - !ruby/object:Gem::Dependency
190
204
  name: codeclimate-test-reporter
191
205
  requirement: !ruby/object:Gem::Requirement
@@ -201,8 +215,9 @@ dependencies:
201
215
  - !ruby/object:Gem::Version
202
216
  version: '0'
203
217
  description: Enhances and extends Alfred with Ruby support. See the README for further
204
- details.
205
- email: brooke@redalchemist.com
218
+ detailspec.
219
+ email:
220
+ - bkuhlmann@alchemists.io
206
221
  executables:
207
222
  - pennyworth
208
223
  extensions: []
@@ -217,6 +232,8 @@ files:
217
232
  - lib/pennyworth/cli.rb
218
233
  - lib/pennyworth/kits/clipboard.rb
219
234
  - lib/pennyworth/kits/string.rb
235
+ - lib/pennyworth/templates/workflows/user.workflow.B59B22A2-1880-4765-9358-412791BE9202/icon.png
236
+ - lib/pennyworth/templates/workflows/user.workflow.B59B22A2-1880-4765-9358-412791BE9202/info.plist
220
237
  - lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/85BF3157-4376-4EEF-822C-8787964193B7.png
221
238
  - lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/CD056464-6D30-4A8A-8202-E7B7AB5836D8.png
222
239
  - lib/pennyworth/templates/workflows/user.workflow.C431E56A-0EC2-47EE-94D5-D67D9FE323BE/ED61F954-8B44-47F9-AD2D-C236868286D1.png
@@ -244,7 +261,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
244
261
  version: '0'
245
262
  requirements: []
246
263
  rubyforge_project:
247
- rubygems_version: 2.3.0
264
+ rubygems_version: 2.4.2
248
265
  signing_key:
249
266
  specification_version: 4
250
267
  summary: Enhances and extends Alfred with Ruby support.
metadata.gz.sig CHANGED
Binary file