alfred-workflow 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +9 -2
- data/Rakefile +0 -13
- data/lib/alfred/version.rb +1 -1
- metadata +5 -3
data/README.md
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
# alfred-workflow
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
home :: https://github.com/zhaocai/alfred-workflow
|
|
4
|
+
code :: https://github.com/zhaocai/alfred-workflow
|
|
5
|
+
bugs :: https://github.com/zhaocai/alfred-workflow/issues
|
|
6
|
+
rdoc :: http://rubydoc.info/gems/alfred-workflow/
|
|
4
7
|
|
|
5
|
-
|
|
8
|
+
## DESCRIPTION:
|
|
9
|
+
|
|
10
|
+
`alfred-workflow` is a ruby Gem helper for building [Alfred](http://www.alfredapp.com) workflow.
|
|
6
11
|
|
|
7
12
|
|
|
8
13
|
## FEATURES:
|
|
9
14
|
|
|
10
15
|
* Use standard [bundler][gembundler] to easily package, manage, and update ruby gems in the workflow.
|
|
11
16
|
* Friendly exception and debug output to the Mac OS X Console
|
|
17
|
+
* Functions for smart case query filter of feedback results.
|
|
12
18
|
* Functions for finding the bundle ID, cache and storage paths, and query arguments.
|
|
13
19
|
* Functions for reading and writing plist files.
|
|
14
20
|
* Functions to simplify generating feedback XML for Alfred.
|
|
@@ -55,3 +61,4 @@ this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
55
61
|
|
|
56
62
|
|
|
57
63
|
[gembundler]: http://gembundler.com/
|
|
64
|
+
[alfredapp]: http://www.alfredapp.com
|
data/Rakefile
CHANGED
|
@@ -17,17 +17,4 @@ Hoe.spec 'alfred-workflow' do
|
|
|
17
17
|
extra_deps << ['logging', '~> 1.8.0']
|
|
18
18
|
end
|
|
19
19
|
|
|
20
|
-
desc "Bump Major Version and Release"
|
|
21
|
-
task "release:major" => ["version:bump:major"] do
|
|
22
|
-
sh "git commit -a -m '* Bump version to #{ENV["VERSION"]}'"
|
|
23
|
-
Rake::Task["release"].invoke
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
desc "Bump Patch Version and Release"
|
|
27
|
-
task "release:patch" => ["version:bump:patch"] do
|
|
28
|
-
sh "git commit -a -m '! Bump version to #{ENV["VERSION"]}'"
|
|
29
|
-
Rake::Task["release"].invoke
|
|
30
|
-
end
|
|
31
|
-
|
|
32
|
-
|
|
33
20
|
# vim: syntax=ruby
|
data/lib/alfred/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alfred-workflow
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -75,7 +75,8 @@ dependencies:
|
|
|
75
75
|
- - ~>
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
77
|
version: '3.5'
|
|
78
|
-
description: '
|
|
78
|
+
description: ! '`alfred-workflow` is a ruby Gem helper for building [Alfred](http://www.alfredapp.com)
|
|
79
|
+
workflow.'
|
|
79
80
|
email:
|
|
80
81
|
- caizhaoff@gmail.com
|
|
81
82
|
executables: []
|
|
@@ -119,5 +120,6 @@ rubyforge_project: alfred-workflow
|
|
|
119
120
|
rubygems_version: 1.8.24
|
|
120
121
|
signing_key:
|
|
121
122
|
specification_version: 3
|
|
122
|
-
summary: '
|
|
123
|
+
summary: ! '`alfred-workflow` is a ruby Gem helper for building [Alfred](http://www.alfredapp.com)
|
|
124
|
+
workflow.'
|
|
123
125
|
test_files: []
|