hatena-bookmark 0.1.0
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/.document +5 -0
- data/.rspec +1 -0
- data/Gemfile +17 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +7 -0
- data/Rakefile +49 -0
- data/VERSION +1 -0
- data/hatena-bookmark.gemspec +65 -0
- data/lib/hatena-bookmark.rb +93 -0
- data/spec/hatena-bookmark_spec.rb +47 -0
- data/spec/spec_helper.rb +12 -0
- metadata +135 -0
data/.document
ADDED
data/.rspec
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--color
|
data/Gemfile
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
source "http://rubygems.org"
|
|
2
|
+
# Add dependencies required to use your gem here.
|
|
3
|
+
# Example:
|
|
4
|
+
# gem "activesupport", ">= 2.3.5"
|
|
5
|
+
|
|
6
|
+
# Add dependencies to develop your gem here.
|
|
7
|
+
# Include everything needed to run rake, tests, features, etc.
|
|
8
|
+
group :development do
|
|
9
|
+
gem "rspec", "~> 2.3.0"
|
|
10
|
+
gem "bundler", "~> 1.0.0"
|
|
11
|
+
gem "jeweler", "~> 1.6.4"
|
|
12
|
+
gem "rcov", ">= 0"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
gem "crack", "~> 0.3.1"
|
|
17
|
+
gem "oauth", "~> 0.4.5"
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2011 kkosuge
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
|
|
3
|
+
require 'rubygems'
|
|
4
|
+
require 'bundler'
|
|
5
|
+
begin
|
|
6
|
+
Bundler.setup(:default, :development)
|
|
7
|
+
rescue Bundler::BundlerError => e
|
|
8
|
+
$stderr.puts e.message
|
|
9
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
|
10
|
+
exit e.status_code
|
|
11
|
+
end
|
|
12
|
+
require 'rake'
|
|
13
|
+
|
|
14
|
+
require 'jeweler'
|
|
15
|
+
Jeweler::Tasks.new do |gem|
|
|
16
|
+
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
|
17
|
+
gem.name = "hatena-bookmark"
|
|
18
|
+
gem.homepage = "http://github.com/kkosuge/hatena-bookmark"
|
|
19
|
+
gem.license = "MIT"
|
|
20
|
+
gem.summary = %Q{hatena-bookmark is simple Hatena::Bookmark AtomAPI library.}
|
|
21
|
+
gem.description = %Q{hatena-bookmark is simple Hatena::Bookmark AtomAPI library.}
|
|
22
|
+
gem.email = "kkosuge@about.me"
|
|
23
|
+
gem.authors = ["kkosuge"]
|
|
24
|
+
# dependencies defined in Gemfile
|
|
25
|
+
end
|
|
26
|
+
Jeweler::RubygemsDotOrgTasks.new
|
|
27
|
+
|
|
28
|
+
require 'rspec/core'
|
|
29
|
+
require 'rspec/core/rake_task'
|
|
30
|
+
RSpec::Core::RakeTask.new(:spec) do |spec|
|
|
31
|
+
spec.pattern = FileList['spec/**/*_spec.rb']
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
RSpec::Core::RakeTask.new(:rcov) do |spec|
|
|
35
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
|
36
|
+
spec.rcov = true
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
task :default => :spec
|
|
40
|
+
|
|
41
|
+
require 'rake/rdoctask'
|
|
42
|
+
Rake::RDocTask.new do |rdoc|
|
|
43
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
|
44
|
+
|
|
45
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
46
|
+
rdoc.title = "hatena-bookmark #{version}"
|
|
47
|
+
rdoc.rdoc_files.include('README*')
|
|
48
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
49
|
+
end
|
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.1.0
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{hatena-bookmark}
|
|
8
|
+
s.version = "0.1.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["kkosuge"]
|
|
12
|
+
s.date = %q{2011-10-22}
|
|
13
|
+
s.description = %q{hatena-bookmark is simple Hatena::Bookmark AtomAPI library.}
|
|
14
|
+
s.email = %q{kkosuge@about.me}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE.txt",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".rspec",
|
|
22
|
+
"Gemfile",
|
|
23
|
+
"LICENSE.txt",
|
|
24
|
+
"README.rdoc",
|
|
25
|
+
"Rakefile",
|
|
26
|
+
"VERSION",
|
|
27
|
+
"hatena-bookmark.gemspec",
|
|
28
|
+
"lib/hatena-bookmark.rb",
|
|
29
|
+
"spec/hatena-bookmark_spec.rb",
|
|
30
|
+
"spec/spec_helper.rb"
|
|
31
|
+
]
|
|
32
|
+
s.homepage = %q{http://github.com/kkosuge/hatena-bookmark}
|
|
33
|
+
s.licenses = ["MIT"]
|
|
34
|
+
s.require_paths = ["lib"]
|
|
35
|
+
s.rubygems_version = %q{1.6.2}
|
|
36
|
+
s.summary = %q{hatena-bookmark is simple Hatena::Bookmark AtomAPI library.}
|
|
37
|
+
|
|
38
|
+
if s.respond_to? :specification_version then
|
|
39
|
+
s.specification_version = 3
|
|
40
|
+
|
|
41
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
42
|
+
s.add_runtime_dependency(%q<crack>, ["~> 0.3.1"])
|
|
43
|
+
s.add_runtime_dependency(%q<oauth>, ["~> 0.4.5"])
|
|
44
|
+
s.add_development_dependency(%q<rspec>, ["~> 2.3.0"])
|
|
45
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
46
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
|
|
47
|
+
s.add_development_dependency(%q<rcov>, [">= 0"])
|
|
48
|
+
else
|
|
49
|
+
s.add_dependency(%q<crack>, ["~> 0.3.1"])
|
|
50
|
+
s.add_dependency(%q<oauth>, ["~> 0.4.5"])
|
|
51
|
+
s.add_dependency(%q<rspec>, ["~> 2.3.0"])
|
|
52
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
53
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
|
54
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
55
|
+
end
|
|
56
|
+
else
|
|
57
|
+
s.add_dependency(%q<crack>, ["~> 0.3.1"])
|
|
58
|
+
s.add_dependency(%q<oauth>, ["~> 0.4.5"])
|
|
59
|
+
s.add_dependency(%q<rspec>, ["~> 2.3.0"])
|
|
60
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
61
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
|
62
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
require 'rubygems'
|
|
2
|
+
require 'oauth'
|
|
3
|
+
require 'crack'
|
|
4
|
+
|
|
5
|
+
module Hatena
|
|
6
|
+
class Bookmark
|
|
7
|
+
|
|
8
|
+
def initialize(params)
|
|
9
|
+
consumer = OAuth::Consumer.new(
|
|
10
|
+
params[:consumer_key],
|
|
11
|
+
params[:consumer_secret]
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
@access_token = OAuth::AccessToken.new(
|
|
15
|
+
consumer,
|
|
16
|
+
params[:request_token],
|
|
17
|
+
params[:request_secret]
|
|
18
|
+
)
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def get(path,options={})
|
|
22
|
+
@response = @access_token.get("http://b.hatena.ne.jp/atom#{path}#{query_params(options)}")
|
|
23
|
+
Crack::XML.parse(@response.body)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def query_params(params={})
|
|
27
|
+
query = ""
|
|
28
|
+
params.each do |key,value|
|
|
29
|
+
query.empty? ? query = "?#{key}=#{value}" : query = "#{query}&#{key}=#{value}"
|
|
30
|
+
end
|
|
31
|
+
query
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def post(path,xml)
|
|
35
|
+
@response = @access_token.post("http://b.hatena.ne.jp/atom#{path}", xml, {'Content-Type' => 'application/x.atom+xml'})
|
|
36
|
+
Crack::XML.parse(@response.body)
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def put(path,xml)
|
|
40
|
+
@response = @access_token.put("http://b.hatena.ne.jp/atom#{path}", xml, {'Content-Type' => 'application/x.atom+xml'})
|
|
41
|
+
Crack::XML.parse(@response.body)
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def delete(path,options={})
|
|
45
|
+
@response = @access_token.delete("http://b.hatena.ne.jp/atom#{path}#{query_params(options)}")
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def ok?
|
|
49
|
+
@response.is_a? Net::HTTPOK
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
def ping
|
|
53
|
+
get('')
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
def create(params)
|
|
57
|
+
|
|
58
|
+
xml =<<XML
|
|
59
|
+
<entry xmlns="http://purl.org/atom/ns#">
|
|
60
|
+
<title>#{params[:title]}</title>
|
|
61
|
+
<link rel="related" type="text/html" href="#{params[:url]}" />
|
|
62
|
+
<summary type="text/plain">#{params[:comment]}</summary>
|
|
63
|
+
</entry>
|
|
64
|
+
XML
|
|
65
|
+
|
|
66
|
+
post('/post', xml)
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
def get_edit(options)
|
|
70
|
+
get("/edit/#{options[:eid]}",options)
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
def put_edit(params)
|
|
74
|
+
|
|
75
|
+
xml =<<XML
|
|
76
|
+
<entry xmlns="http://purl.org/atom/ns#">
|
|
77
|
+
<title>#{params[:title]}</title>
|
|
78
|
+
<summary type="text/plain">#{params[:comment]}</summary>
|
|
79
|
+
</entry>
|
|
80
|
+
XML
|
|
81
|
+
put("/edit/#{params[:eid]}",xml)
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
def delete_edit(params,options={})
|
|
85
|
+
delete("/edit/#{params[:eid]}",options)
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
def feed
|
|
89
|
+
get('/feed')
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
end
|
|
93
|
+
end
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
|
2
|
+
|
|
3
|
+
describe Hatena::Bookmark do
|
|
4
|
+
|
|
5
|
+
before do
|
|
6
|
+
@hatebu = Hatena::Bookmark.new(
|
|
7
|
+
consumer_key: '',
|
|
8
|
+
consumer_secret: '',
|
|
9
|
+
request_token: '',
|
|
10
|
+
request_secret: ''
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
@sample_url = "http://www.example.com/"
|
|
14
|
+
@eid = ""
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
it "must recieeeeeeeeeeeeeve" do
|
|
18
|
+
@hatebu.ping.should be_kind_of Hash
|
|
19
|
+
@hatebu.ok?.should be_true
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
it "should be Hash" do
|
|
23
|
+
@hatebu.feed.should be_kind_of Hash
|
|
24
|
+
@hatebu.ok?.should be_true
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
it "create new bookmark" do
|
|
28
|
+
@hatebu.create(:url => @sample_url, :comment => "test")
|
|
29
|
+
.should be_kind_of Hash
|
|
30
|
+
@hatebu.ok?.should be_true
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
it "GET /atom/edit/XXXX" do
|
|
34
|
+
@hatebu.get_edit(:eid => @eid).should be_kind_of Hash
|
|
35
|
+
@hatebu.ok?.should be_true
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
it "PUT /atom/edit/XXXX" do
|
|
39
|
+
@hatebu.put_edit(:eid => @eid, :comment => "test").should be_kind_of Hash
|
|
40
|
+
@hatebu.ok?.should be_true
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
it "DELETE /atom/edit/XXXX" do
|
|
44
|
+
@hatebu.delete_edit(:eid => @eid)
|
|
45
|
+
@hatebu.ok?.should be_true
|
|
46
|
+
end
|
|
47
|
+
end
|
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
2
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
3
|
+
require 'rspec'
|
|
4
|
+
require 'hatena-bookmark'
|
|
5
|
+
|
|
6
|
+
# Requires supporting files with custom matchers and macros, etc,
|
|
7
|
+
# in ./support/ and its subdirectories.
|
|
8
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
|
|
9
|
+
|
|
10
|
+
RSpec.configure do |config|
|
|
11
|
+
|
|
12
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: hatena-bookmark
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.1.0
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- kkosuge
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
|
|
13
|
+
date: 2011-10-22 00:00:00 +09:00
|
|
14
|
+
default_executable:
|
|
15
|
+
dependencies:
|
|
16
|
+
- !ruby/object:Gem::Dependency
|
|
17
|
+
name: crack
|
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
19
|
+
none: false
|
|
20
|
+
requirements:
|
|
21
|
+
- - ~>
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 0.3.1
|
|
24
|
+
type: :runtime
|
|
25
|
+
prerelease: false
|
|
26
|
+
version_requirements: *id001
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: oauth
|
|
29
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
30
|
+
none: false
|
|
31
|
+
requirements:
|
|
32
|
+
- - ~>
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: 0.4.5
|
|
35
|
+
type: :runtime
|
|
36
|
+
prerelease: false
|
|
37
|
+
version_requirements: *id002
|
|
38
|
+
- !ruby/object:Gem::Dependency
|
|
39
|
+
name: rspec
|
|
40
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ~>
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: 2.3.0
|
|
46
|
+
type: :development
|
|
47
|
+
prerelease: false
|
|
48
|
+
version_requirements: *id003
|
|
49
|
+
- !ruby/object:Gem::Dependency
|
|
50
|
+
name: bundler
|
|
51
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
52
|
+
none: false
|
|
53
|
+
requirements:
|
|
54
|
+
- - ~>
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: 1.0.0
|
|
57
|
+
type: :development
|
|
58
|
+
prerelease: false
|
|
59
|
+
version_requirements: *id004
|
|
60
|
+
- !ruby/object:Gem::Dependency
|
|
61
|
+
name: jeweler
|
|
62
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
|
63
|
+
none: false
|
|
64
|
+
requirements:
|
|
65
|
+
- - ~>
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: 1.6.4
|
|
68
|
+
type: :development
|
|
69
|
+
prerelease: false
|
|
70
|
+
version_requirements: *id005
|
|
71
|
+
- !ruby/object:Gem::Dependency
|
|
72
|
+
name: rcov
|
|
73
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
|
74
|
+
none: false
|
|
75
|
+
requirements:
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: "0"
|
|
79
|
+
type: :development
|
|
80
|
+
prerelease: false
|
|
81
|
+
version_requirements: *id006
|
|
82
|
+
description: hatena-bookmark is simple Hatena::Bookmark AtomAPI library.
|
|
83
|
+
email: kkosuge@about.me
|
|
84
|
+
executables: []
|
|
85
|
+
|
|
86
|
+
extensions: []
|
|
87
|
+
|
|
88
|
+
extra_rdoc_files:
|
|
89
|
+
- LICENSE.txt
|
|
90
|
+
- README.rdoc
|
|
91
|
+
files:
|
|
92
|
+
- .document
|
|
93
|
+
- .rspec
|
|
94
|
+
- Gemfile
|
|
95
|
+
- LICENSE.txt
|
|
96
|
+
- README.rdoc
|
|
97
|
+
- Rakefile
|
|
98
|
+
- VERSION
|
|
99
|
+
- hatena-bookmark.gemspec
|
|
100
|
+
- lib/hatena-bookmark.rb
|
|
101
|
+
- spec/hatena-bookmark_spec.rb
|
|
102
|
+
- spec/spec_helper.rb
|
|
103
|
+
has_rdoc: true
|
|
104
|
+
homepage: http://github.com/kkosuge/hatena-bookmark
|
|
105
|
+
licenses:
|
|
106
|
+
- MIT
|
|
107
|
+
post_install_message:
|
|
108
|
+
rdoc_options: []
|
|
109
|
+
|
|
110
|
+
require_paths:
|
|
111
|
+
- lib
|
|
112
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
113
|
+
none: false
|
|
114
|
+
requirements:
|
|
115
|
+
- - ">="
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
hash: -2145791571653149923
|
|
118
|
+
segments:
|
|
119
|
+
- 0
|
|
120
|
+
version: "0"
|
|
121
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
122
|
+
none: false
|
|
123
|
+
requirements:
|
|
124
|
+
- - ">="
|
|
125
|
+
- !ruby/object:Gem::Version
|
|
126
|
+
version: "0"
|
|
127
|
+
requirements: []
|
|
128
|
+
|
|
129
|
+
rubyforge_project:
|
|
130
|
+
rubygems_version: 1.6.2
|
|
131
|
+
signing_key:
|
|
132
|
+
specification_version: 3
|
|
133
|
+
summary: hatena-bookmark is simple Hatena::Bookmark AtomAPI library.
|
|
134
|
+
test_files: []
|
|
135
|
+
|