hatena_bookmark_client_for_ruby 0.1.2 → 0.1.3
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +3 -3
- data/hatena_bookmark_client_for_ruby.gemspec +1 -1
- data/lib/hatena_bookmark_client_for_ruby.rb +1 -1
- data/lib/hatena_bookmark_client_for_ruby/version.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5809a9b05d8b2f6aea77a17db2a6da46a866bf73733075eb2a4fef47c3ab63c8
|
4
|
+
data.tar.gz: 9c788314f2cd96cadf02e7eb97972e07f3188c043dd0f023dbbbaec9f591690b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21810cca3b8834398d80846c50f971f26599b26228996725e50404687b930044048d935df47ac748b74cb161d53b13f663809c70585ea773a9a99cf31f8dfb02
|
7
|
+
data.tar.gz: b4aaa134a27f26e6783422e8ba1b2d876042664e8c455a9cfb1915cffdc2a22be12fdf880231e66dec694c204853a8eb4065099385386a3b7da15494bec25a44
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
#
|
1
|
+
# HatenaBookmarkClient
|
2
2
|
|
3
|
-
`
|
3
|
+
`HatenaBookmarkClient` is simple Ruby networking library for Hatena bookmark Web API
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -13,7 +13,7 @@ gem install hatena_ebookmark_client_for_ruby
|
|
13
13
|
|
14
14
|
```ruby
|
15
15
|
require 'hatena_bookmark_client_for_ruby'
|
16
|
-
hatebu =
|
16
|
+
hatebu = HatenaBookmarkClient::Bookmark.new(
|
17
17
|
consumer_key: CONSUMER_KEY,
|
18
18
|
consumer_secret: CONSUMER_SECRET,
|
19
19
|
request_token: REQUEST_TOKEN,
|
@@ -5,7 +5,7 @@ require "hatena_bookmark_client_for_ruby/version"
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "hatena_bookmark_client_for_ruby"
|
8
|
-
spec.version =
|
8
|
+
spec.version = HatenaBookmarkClient::VERSION
|
9
9
|
spec.authors = ["Nobuyuki Tanabe"]
|
10
10
|
spec.email = ["tanabe.1478@gmail.com"]
|
11
11
|
|
@@ -1,3 +1,3 @@
|
|
1
|
-
module
|
2
|
-
VERSION = "0.1.
|
1
|
+
module HatenaBookmarkClient
|
2
|
+
VERSION = "0.1.3"
|
3
3
|
end
|