hatena_bookmark_client_for_ruby 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c72146c7ca29f776e2686b07007c7016e7ceace21750c97676ae4f97626c001
4
- data.tar.gz: afd192f1e764223090caca0e03a4f582cfc2203e30abcae8931ce2706e21f663
3
+ metadata.gz: 5809a9b05d8b2f6aea77a17db2a6da46a866bf73733075eb2a4fef47c3ab63c8
4
+ data.tar.gz: 9c788314f2cd96cadf02e7eb97972e07f3188c043dd0f023dbbbaec9f591690b
5
5
  SHA512:
6
- metadata.gz: e37900dbcf6df1470db9579952dcdf713ee9f2fbd1b537903268ea7ee72a6c33aa149e49c88d7993cdae34a15c6b3d9d0e4f81d85fc7442b3eb51c92bd954fee
7
- data.tar.gz: f23e46f1a4fcbbda6d4865ae1d8a22545f1ce424701fcefd21da8a11237e10ff00d5965830db5e53a8c4842c4b85c13df72283ab68a259a3e4da3a69d58202fc
6
+ metadata.gz: 21810cca3b8834398d80846c50f971f26599b26228996725e50404687b930044048d935df47ac748b74cb161d53b13f663809c70585ea773a9a99cf31f8dfb02
7
+ data.tar.gz: b4aaa134a27f26e6783422e8ba1b2d876042664e8c455a9cfb1915cffdc2a22be12fdf880231e66dec694c204853a8eb4065099385386a3b7da15494bec25a44
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- hatena_bookmark_client_for_ruby (0.1.0)
4
+ hatena_bookmark_client_for_ruby (0.1.2)
5
5
  crack
6
6
  json
7
7
  oauth
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # HatenaBookmarkClientForRuby
1
+ # HatenaBookmarkClient
2
2
 
3
- `HatenaBookmarkClientForRuby` is simple Ruby networking library for Hatena bookmark Web API
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 = HatenaBookmarkClientForRuby::Bookmark.new(
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 = HatenaBookmarkClientForRuby::VERSION
8
+ spec.version = HatenaBookmarkClient::VERSION
9
9
  spec.authors = ["Nobuyuki Tanabe"]
10
10
  spec.email = ["tanabe.1478@gmail.com"]
11
11
 
@@ -3,7 +3,7 @@ require "oauth"
3
3
  require "crack"
4
4
  require "net/http"
5
5
 
6
- module HatenaBookmarkClientForRuby
6
+ module HatenaBookmarkClient
7
7
  class BookmarkCount
8
8
  attr_accessor :urls
9
9
 
@@ -1,3 +1,3 @@
1
- module HatenaBookmarkClientForRuby
2
- VERSION = "0.1.2"
1
+ module HatenaBookmarkClient
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hatena_bookmark_client_for_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nobuyuki Tanabe