-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdelicious-cli.gemspec
65 lines (43 loc) · 1.58 KB
/
delicious-cli.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "delicious-cli"
s.version = File.read("VERSION").strip
s.date = File.mtime("VERSION").strftime("%Y-%m-%d")
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["epitron"]
s.description = "A commandline tool which lets you download all your delicious.com links and search them (with pretty color-coded results)."
s.email = "[email protected]"
s.executables = ["delicious", "dels"]
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = `git ls`.lines.map(&:strip)
s.licenses = ["WTFPL"]
s.homepage = "http://github.com/epitron/delicious-cli"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.10"
s.summary = "Delicious.com commandline interface"
if s.respond_to? :specification_version then
s.specification_version = 3
s.add_dependency(%q<httparty>, ["~> 0"])
end
s.post_install_message = %{
========================================================================
Delicious-CLI installed!
------------------------------------------------------------------------
To configure your Delicious.com account, type:
$ dels
To search, type:
$ dels <search term(s)>
To pull new links from your delicious account, type:
$ dels -s
To add dels -s to your crontab, type:
$ crontab -e
That's all, folks!
========================================================================
}
end