gami-HatenaBookmarkAccess 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt ADDED
@@ -0,0 +1,6 @@
1
+ === 0.0.1 / 2008-08-25
2
+
3
+ * 1 major enhancement
4
+
5
+ * Birthday!
6
+
data/Manifest.txt ADDED
@@ -0,0 +1,7 @@
1
+ History.txt
2
+ Manifest.txt
3
+ README.txt
4
+ Rakefile
5
+ bin/hatena_bookmark_access
6
+ lib/hatena_bookmark_access.rb
7
+ test/test_hatena_bookmark_access.rb
data/README.txt ADDED
@@ -0,0 +1,48 @@
1
+ = HatenaBookmarkAccess
2
+
3
+ http://srkm.weblogs.jp
4
+
5
+ == DESCRIPTION:
6
+
7
+ a ruby module to access a series of Hatena Boookmark API
8
+
9
+ == FEATURES/PROBLEMS:
10
+
11
+ later
12
+
13
+ == SYNOPSIS:
14
+
15
+ later
16
+
17
+ == REQUIREMENTS:
18
+
19
+ later
20
+
21
+ == INSTALL:
22
+
23
+ later
24
+
25
+ == LICENSE:
26
+
27
+ The MIT License
28
+
29
+ Copyright (c) 2008 Masaki Takegami
30
+
31
+ Permission is hereby granted, free of charge, to any person obtaining
32
+ a copy of this software and associated documentation files (the
33
+ 'Software'), to deal in the Software without restriction, including
34
+ without limitation the rights to use, copy, modify, merge, publish,
35
+ distribute, sublicense, and/or sell copies of the Software, and to
36
+ permit persons to whom the Software is furnished to do so, subject to
37
+ the following conditions:
38
+
39
+ The above copyright notice and this permission notice shall be
40
+ included in all copies or substantial portions of the Software.
41
+
42
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
43
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
44
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
45
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
46
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
47
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
48
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # -*- ruby -*-
2
+
3
+ require 'rubygems'
4
+ require 'hoe'
5
+ require './lib/hatena_bookmark_access.rb'
6
+
7
+ Hoe.new('HatenaBookmarkAccess', HatenaBookmarkAccess::VERSION) do |p|
8
+ p.rubyforge_name = 'HatenaBookmarkAccess' # if different than lowercase project name
9
+ p.developer('gami', 'takegamm@gmail.com')
10
+ end
11
+
12
+ # vim: syntax=Ruby
File without changes
@@ -0,0 +1,6 @@
1
+ Dir.glob(File.join(File.dirname(__FILE__), 'hatena_bookmark_access/**/*.rb')).sort.
2
+ each { |lib| require lib }
3
+
4
+ module HatenaBookmarkAccess
5
+ VERSION = '0.0.1'
6
+ end
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gami-HatenaBookmarkAccess
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - gami
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-09-07 00:00:00 -07:00
13
+ default_executable: hatena_bookmark_access
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: hoe
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.7.0
23
+ version:
24
+ description: a ruby module to access a series of Hatena Boookmark API
25
+ email:
26
+ - takegamm@gmail.com
27
+ executables:
28
+ - hatena_bookmark_access
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - History.txt
33
+ - Manifest.txt
34
+ - README.txt
35
+ files:
36
+ - History.txt
37
+ - Manifest.txt
38
+ - README.txt
39
+ - Rakefile
40
+ - bin/hatena_bookmark_access
41
+ - lib/hatena_bookmark_access.rb
42
+ - test/test_hatena_bookmark_access.rb
43
+ has_rdoc: true
44
+ homepage: http://srkm.weblogs.jp
45
+ post_install_message:
46
+ rdoc_options:
47
+ - --main
48
+ - README.txt
49
+ require_paths:
50
+ - lib
51
+ required_ruby_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: "0"
56
+ version:
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: "0"
62
+ version:
63
+ requirements: []
64
+
65
+ rubyforge_project: HatenaBookmarkAccess
66
+ rubygems_version: 1.2.0
67
+ signing_key:
68
+ specification_version: 2
69
+ summary: a ruby module to access a series of Hatena Boookmark API
70
+ test_files: []
71
+