yummy 0.0.1 → 0.0.2
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/History.txt +4 -0
- data/Rakefile +11 -4
- data/lib/yummy.rb +2 -2
- metadata +15 -12
data/History.txt
CHANGED
data/Rakefile
CHANGED
@@ -5,11 +5,18 @@ require 'hoe'
|
|
5
5
|
require './lib/yummy.rb'
|
6
6
|
|
7
7
|
Hoe.new('yummy', Smarticus::Yummy::VERSION) do |p|
|
8
|
+
p.name = "yummy"
|
9
|
+
p.author = "Bryan Liles"
|
10
|
+
p.description = "ruby del.icio.us api"
|
11
|
+
p.email = "bryan@osesm.com"
|
12
|
+
p.summary = "ruby del.icio.us api"
|
13
|
+
p.url = "http://smartic.us/2007/6/23/yummy"
|
8
14
|
p.rubyforge_name = 'smarticus'
|
9
|
-
# p.summary = 'FIX'
|
10
|
-
# p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
|
11
|
-
# p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
|
12
15
|
p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
|
16
|
+
p.remote_rdoc_dir = '/yummy'
|
13
17
|
end
|
14
18
|
|
15
|
-
|
19
|
+
desc "Release and publish documentation"
|
20
|
+
task :repubdoc => [:release, :publish_docs]
|
21
|
+
|
22
|
+
|
data/lib/yummy.rb
CHANGED
@@ -27,7 +27,7 @@ module Smarticus
|
|
27
27
|
USER_AGENT = "Yummy"
|
28
28
|
|
29
29
|
class Yummy
|
30
|
-
VERSION = "0.0.
|
30
|
+
VERSION = "0.0.2"
|
31
31
|
|
32
32
|
def initialize(options)
|
33
33
|
raise "need user and password" if !options[:user] || !options[:password]
|
@@ -90,4 +90,4 @@ module Smarticus
|
|
90
90
|
get_path
|
91
91
|
end
|
92
92
|
end
|
93
|
-
end
|
93
|
+
end
|
metadata
CHANGED
@@ -3,15 +3,15 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: yummy
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
7
|
-
date: 2007-
|
8
|
-
summary:
|
6
|
+
version: 0.0.2
|
7
|
+
date: 2007-06-22 00:00:00 -04:00
|
8
|
+
summary: ruby del.icio.us api
|
9
9
|
require_paths:
|
10
10
|
- lib
|
11
|
-
email:
|
12
|
-
homepage: http://
|
11
|
+
email: bryan@osesm.com
|
12
|
+
homepage: http://smartic.us/2007/6/23/yummy
|
13
13
|
rubyforge_project: smarticus
|
14
|
-
description:
|
14
|
+
description: ruby del.icio.us api
|
15
15
|
autorequire:
|
16
16
|
default_executable:
|
17
17
|
bindir: bin
|
@@ -27,7 +27,7 @@ signing_key:
|
|
27
27
|
cert_chain:
|
28
28
|
post_install_message:
|
29
29
|
authors:
|
30
|
-
-
|
30
|
+
- Bryan Liles
|
31
31
|
files:
|
32
32
|
- History.txt
|
33
33
|
- Manifest.txt
|
@@ -38,10 +38,13 @@ files:
|
|
38
38
|
- test/test_yummy.rb
|
39
39
|
test_files:
|
40
40
|
- test/test_yummy.rb
|
41
|
-
rdoc_options:
|
42
|
-
|
43
|
-
|
44
|
-
|
41
|
+
rdoc_options:
|
42
|
+
- --main
|
43
|
+
- README.txt
|
44
|
+
extra_rdoc_files:
|
45
|
+
- History.txt
|
46
|
+
- Manifest.txt
|
47
|
+
- README.txt
|
45
48
|
executables:
|
46
49
|
- yummy
|
47
50
|
extensions: []
|
@@ -56,5 +59,5 @@ dependencies:
|
|
56
59
|
requirements:
|
57
60
|
- - ">="
|
58
61
|
- !ruby/object:Gem::Version
|
59
|
-
version: 1.2.
|
62
|
+
version: 1.2.1
|
60
63
|
version:
|