rakuten_web_service 0.5.0 → 0.6.0

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
  SHA1:
3
- metadata.gz: 8b1ef244dd1777b0fd61b143a82e7c4a2f781463
4
- data.tar.gz: 1becda887300663ec9f8df339f334f6d6252ec62
3
+ metadata.gz: b7bf83276b1e14274a89e838b6e2905d7624966e
4
+ data.tar.gz: 47dc5c14d88984c92a574541f2e6a80c80ff86cd
5
5
  SHA512:
6
- metadata.gz: c38cdfad581be36580d5027d51b38036625e7e3a57124ff247f3e345dd4339970aace14fac41d71f2258f69ae4d1381aeede7ffd7b48c1724b005360c78a8e30
7
- data.tar.gz: dae64b05b389340894eefaf0f271abeccd2985a52730531c6ac26aaa5ff0b418b7b0fd1806114b9fb5a8a12a9bfe363239e1637b6781bd815eddef06a911523c
6
+ metadata.gz: cdf6daa1da7d1dc16c6f7cc5dcf3f66d8e8a22473e7a67bbe064eb3eada58a953aa58bb82f576ff10b3ee10ba4346248798a875448b77e3fb0cfee003866c7bd
7
+ data.tar.gz: 3e92ef4587d84890c9556140d40cda7d6709d4feb0f2ae377130610e35eeac67e4f5bf6bfd5c41aaebf18f79cd4bd4f59dd5cb03bb5a76ea11425814259c26b4
data/.travis.yml CHANGED
@@ -2,3 +2,4 @@ language: ruby
2
2
  rvm:
3
3
  - 1.9.3
4
4
  - 2.0.0
5
+ - 2.1.3
data/README.en.md CHANGED
@@ -42,12 +42,16 @@ Now rakuten\_web\_service is supporting the following APIs:
42
42
  * [Rakuten Books Software Search API](http://webservice.rakuten.co.jp/api/bookssoftwaresearch/)
43
43
  * [Rakuten Books Genre Search API](http://webservice.rakuten.co.jp/api/booksgenresearch/)
44
44
 
45
+ ### Rakuten Kobo APIs
46
+
47
+ * [Rakuten Kobo Ebook Search API](http://webservice.rakuten.co.jp/api/koboebooksearch/)
48
+ * [Rakuten Kobo Genre Search API](http://webservice.rakuten.co.jp/api/kobogenresearch/)
45
49
 
46
50
  ## Usage
47
51
 
48
52
  ### Configuration
49
53
 
50
- `RakutenWebService.configuration` allows you to specify your application's key called application\_id and your affiliate id(optional).
54
+ `RakutenWebService.configuration` allows you to specify your application's key called application\_id and your affiliate id(optional).
51
55
 
52
56
  ```ruby
53
57
  RakutenWebService.configuration do |c|
@@ -61,7 +65,7 @@ Now rakuten\_web\_service is supporting the following APIs:
61
65
  ```ruby
62
66
  items = RakutenWebService::Ichiba::Item.search(:keyword => 'Ruby') # This returns Enamerable object
63
67
  items.first(10).each do |item|
64
- puts "#{item['itemName']}, #{item.price} yen" # You can refer to values as well as Hash.
68
+ puts "#{item['itemName']}, #{item.price} yen" # You can refer to values as well as Hash.
65
69
  end
66
70
  ```
67
71
 
@@ -75,7 +79,7 @@ Genre class provides an interface to traverse sub genres.
75
79
  root.children.each do |child|
76
80
  puts "[#{child.id}] #{child.name}"
77
81
  end
78
-
82
+
79
83
  # Use genre id to fetch genre object
80
84
  RakutenWebService::Ichiba::Genre[100316].name # => "水・ソフトドリンク"
81
85
  ```
data/README.md CHANGED
@@ -46,6 +46,10 @@ bundlerを利用したアプリケーションの場合、Gemfileに以下の1
46
46
  * [Rakuten Books Software Search API](http://webservice.rakuten.co.jp/api/bookssoftwaresearch/)
47
47
  * [Rakuten Books Genre Search API](http://webservice.rakuten.co.jp/api/booksgenresearch/)
48
48
 
49
+ ### 楽天Kobo系API
50
+
51
+ * [楽天Kobo電子書籍検索API](http://webservice.rakuten.co.jp/api/koboebooksearch/)
52
+ * [楽天Koboジャンル検索API](http://webservice.rakuten.co.jp/api/kobogenresearch/)
49
53
 
50
54
  ## 使用方法
51
55
 
@@ -65,13 +69,13 @@ bundlerを利用したアプリケーションの場合、Gemfileに以下の1
65
69
  ```ruby
66
70
  items = RakutenWebService::Ichiba::Item.search(:keyword => 'Ruby') # This returns Enamerable object
67
71
  items.first(10).each do |item|
68
- puts "#{item['itemName']}, #{item.price} yen" # You can refer to values as well as Hash.
72
+ puts "#{item['itemName']}, #{item.price} yen" # You can refer to values as well as Hash.
69
73
  end
70
74
  ```
71
75
 
72
76
  ### ジャンル
73
77
 
74
- Genreクラスは、`children`や`parent`といったジャンル階層を辿るインターフェースを持っています。
78
+ Genreクラスは、`children`や`parent`といったジャンル階層を辿るインターフェースを持っています。
75
79
 
76
80
  ```ruby
77
81
  root = RakutenWebService::Ichiba::Genre.root # root genre
@@ -79,7 +83,7 @@ Genreクラスは、`children`や`parent`といったジャンル階層を辿る
79
83
  root.children.each do |child|
80
84
  puts "[#{child.id}] #{child.name}"
81
85
  end
82
-
86
+
83
87
  # Use genre id to fetch genre object
84
88
  RakutenWebService::Ichiba::Genre[100316].name # => "水・ソフトドリンク"
85
89
  ```
@@ -1,66 +1,21 @@
1
- require 'rakuten_web_service/resource'
1
+ require 'rakuten_web_service/genre'
2
2
 
3
3
  module RakutenWebService
4
4
  module Books
5
- class Genre < Resource
5
+ class Genre < RakutenWebService::BaseGenre
6
6
  set_resource_name 'books_genre'
7
7
 
8
8
  endpoint 'https://app.rakuten.co.jp/services/api/BooksGenre/Search/20121128'
9
9
 
10
- set_parser do |response|
11
- current = response['current']
12
- if children = response['children']
13
- children = children.map { |child| Books::Genre.new(child['child']) }
14
- current.merge!('children' => children)
15
- end
16
- if parents = response['parents']
17
- parents = parents.map { |parent| Books::Genre.new(parent['parent']) }
18
- current.merge!('parents' => parents)
19
- end
20
-
21
- genre = Books::Genre.new(current)
22
- [genre]
23
- end
24
-
25
10
  attribute :booksGenreId, :booksGenreName, :genreLevel
26
11
 
27
- def self.root
28
- new('000')
29
- end
30
-
31
- def self.new(params)
32
- case params
33
- when String
34
- Genre[params] ||= self.search(:booksGenreId => params).first
35
- when Hash
36
- super
37
- else
38
- raise ArgumentError, 'Invalid parameter for initializing Books::Genre'
39
- end
40
- end
41
-
42
- def self.[](id)
43
- repository[id]
44
- end
45
-
46
- def self.[]=(id, genre)
47
- repository[id] = genre
48
- end
49
-
50
- def children
51
- @params['children'] ||= RWS::Books::Genre.search(:booksGenreId => self.id).first.children
52
- end
12
+ root_id '000'
53
13
 
54
14
  def search(params={})
55
15
  params = params.merge(:booksGenreId => self.id)
56
16
  resource = Books::Resource.find_resource_by_genre_id(self.id)
57
17
  resource.search(params)
58
18
  end
59
-
60
- private
61
- def self.repository
62
- @repository ||= {}
63
- end
64
19
  end
65
20
  end
66
21
  end
@@ -49,12 +49,11 @@ module RakutenWebService
49
49
  end
50
50
 
51
51
  def convert_snake_key_to_camel_key(params)
52
- converted = {}
53
- params.each do |k, v|
54
- k = k.to_s.gsub(/([a-z]+)_([a-z]+)/) { "#{$1}#{$2.capitalize}" }
55
- converted[k] = v
52
+ params.inject({}) do |h, (k, v)|
53
+ k = k.to_s.gsub(/([a-z]{1})_([a-z]{1})/) { "#{$1}#{$2.capitalize}" }
54
+ h[k] = v
55
+ h
56
56
  end
57
- return converted
58
57
  end
59
58
  end
60
59
  end
@@ -0,0 +1,64 @@
1
+ require 'rakuten_web_service/resource'
2
+
3
+ module RakutenWebService
4
+ class BaseGenre < RakutenWebService::Resource
5
+ def self.inherited(klass)
6
+ klass.set_parser do |response|
7
+ current = response['current']
8
+ if children = response['children']
9
+ children = children.map { |child| klass.new(child['child']) }
10
+ current.merge!('children' => children)
11
+ end
12
+ if parents = response['parents']
13
+ parents = parents.map { |parent| klass.new(parent['parent']) }
14
+ current.merge!('parents' => parents)
15
+ end
16
+
17
+ genre = klass.new(current)
18
+ [genre]
19
+ end
20
+ end
21
+
22
+ def self.new(params)
23
+ case params
24
+ when Integer, String
25
+ self[params.to_s] || search(genre_id_key => params.to_s).first
26
+ when Hash
27
+ super
28
+ end
29
+ end
30
+
31
+ def self.genre_id_key
32
+ :"#{resource_name}_id"
33
+ end
34
+
35
+ def self.root_id(id=nil)
36
+ @root_id = id || @root_id
37
+ end
38
+
39
+ def self.root
40
+ self.new(root_id)
41
+ end
42
+
43
+ def self.[](id)
44
+ repository[id.to_s]
45
+ end
46
+
47
+ def self.[]=(id, genre)
48
+ repository[id.to_s] = genre
49
+ end
50
+
51
+ def self.repository
52
+ @repository ||= {}
53
+ end
54
+
55
+ def initialize(params)
56
+ super
57
+ self.class[self.id.to_s] = self
58
+ end
59
+
60
+ def children
61
+ @params['children'] ||= self.class.search(self.class.genre_id_key => self.id).first.children
62
+ end
63
+ end
64
+ end
@@ -1,62 +1,15 @@
1
- require 'rakuten_web_service/resource'
1
+ require 'rakuten_web_service/genre'
2
2
  require 'rakuten_web_service/ichiba/ranking'
3
3
  require 'rakuten_web_service/ichiba/product'
4
4
 
5
5
  module RakutenWebService
6
6
  module Ichiba
7
- class Genre < Resource
8
-
9
- class << self
10
- def new(params)
11
- case params
12
- when Integer, String
13
- Genre[params.to_s] || search(:genre_id => params.to_s).first
14
- when Hash
15
- super
16
- end
17
- end
18
-
19
- def root
20
- self.new(0)
21
- end
22
-
23
- def [](id)
24
- repository[id.to_s]
25
- end
26
-
27
- def []=(id, genre)
28
- repository[id.to_s] = genre
29
- end
30
-
31
- private
32
- def repository
33
- @repository ||= {}
34
- end
35
- end
36
-
7
+ class Genre < RakutenWebService::BaseGenre
37
8
  endpoint 'https://app.rakuten.co.jp/services/api/IchibaGenre/Search/20120723'
38
9
 
39
- set_parser do |response|
40
- current = response['current']
41
- if children = response['children']
42
- children = children.map { |child| Genre.new(child['child']) }
43
- current.merge!('children' => children)
44
- end
45
- if parents = response['parents']
46
- parents = parents.map { |parent| Genre.new(parent['parent']) }
47
- current.merge!('parents' => parents)
48
- end
49
-
50
- genre = Genre.new(current)
51
- [genre]
52
- end
53
-
54
10
  attribute :genreId, :genreName, :genreLevel
55
11
 
56
- def initialize(params)
57
- super
58
- Genre[self.id.to_s] = self
59
- end
12
+ root_id 0
60
13
 
61
14
  def ranking(options={})
62
15
  RakutenWebService::Ichiba::RankingItem.search(:genre_id => self.id)
@@ -66,10 +19,6 @@ module RakutenWebService
66
19
  options = options.merge(:genre_id => self.id)
67
20
  RakutenWebService::Ichiba::Product.search(options)
68
21
  end
69
-
70
- def children
71
- @params['children'] ||= Genre.search(:genre_id => self.id).first.children
72
- end
73
22
  end
74
23
  end
75
24
  end
@@ -0,0 +1,28 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rakuten_web_service/resource'
4
+
5
+ module RakutenWebService
6
+ module Kobo
7
+ class Ebook < RakutenWebService::Resource
8
+ endpoint 'https://app.rakuten.co.jp/services/api/Kobo/EbookSearch/20131010'
9
+
10
+ attribute :title, :titleKana, :subTitle,
11
+ :author, :authorKana, :publisherName,
12
+ :itemNumber, :itemCaption,
13
+ :salesDate, :itemPrice,
14
+ :itemUrl, :affiliateUrl,
15
+ :smallImageUrl, :mediumImageUrl, :largeImageUrl,
16
+ :reviewCount, :reviewAverage,
17
+ :koboGenreId
18
+
19
+ set_parser do |response|
20
+ response['Items'].map { |i| self.new(i['Item']) }
21
+ end
22
+
23
+ def genre
24
+ Kobo::Genre.new(self.kobo_genre_id)
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,20 @@
1
+ require 'rakuten_web_service/genre'
2
+
3
+ module RakutenWebService
4
+ module Kobo
5
+ class Genre < RakutenWebService::BaseGenre
6
+ set_resource_name :kobo_genre
7
+
8
+ root_id '101'
9
+
10
+ endpoint 'https://app.rakuten.co.jp/services/api/Kobo/GenreSearch/20131010'
11
+
12
+ attribute :koboGenreId, :koboGenreName, :genreLevel
13
+
14
+ def search(options={})
15
+ options = options.merge(self.class.genre_id_key => self.id)
16
+ RWS::Kobo::Ebook.search(options)
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,2 @@
1
+ require 'rakuten_web_service/kobo/ebook'
2
+ require 'rakuten_web_service/kobo/genre'
@@ -1,3 +1,3 @@
1
1
  module RakutenWebService
2
- VERSION = "0.5.0".freeze
2
+ VERSION = "0.6.0".freeze
3
3
  end
@@ -3,3 +3,4 @@ RWS = RakutenWebService
3
3
 
4
4
  require 'rakuten_web_service/ichiba'
5
5
  require 'rakuten_web_service/books'
6
+ require 'rakuten_web_service/kobo'
@@ -0,0 +1 @@
1
+ {"count":530,"page":1,"first":1,"last":30,"hits":30,"pageCount":18,"Items":[{"Item":{"title":"Winning Ruby Heart","titleKana":"","subTitle":"","seriesName":"","author":"Jennifer Lohmann","authorKana":"","publisherName":"Harlequin Enterprises, Australia Pty Ltd","language":"EN","salesDate":"2014年09月01日","itemNumber":"9781488703188","koboGenreId":"101970019002","itemCaption":"It's a race to their beginning...Exposing world class athlete Ruby Heart’s cheating scandal five years ago made reporter Micah Blackwell’s career. Falling in love with her now could end it. Yet watching her determination to return to the top of her sport, he can’t resist the woman she has become. Working with Ruby to tell America her story, Micah falls deeper under her spell. But at a crucial moment, his feelings for her conflict with his jobーthe very thing that once saved him. Now he must choose between his skyrocketing career and the unlikely love of a good woman…. ","itemPrice":476,"itemUrl":"http://books.rakuten.co.jp/rk/7c33f10bdfea3bc3badf81ea67804e70","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/fb/a4/7c33f10bdfea3bc3badf81ea67804e70.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/fb/a4/7c33f10bdfea3bc3badf81ea67804e70.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/fb/a4/7c33f10bdfea3bc3badf81ea67804e70.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Harlequin Superromance September 2014 - Bundle 2 of 2","titleKana":"","subTitle":"Winning Ruby Heart\\More Than a Rancher\\Desert Heat","seriesName":"","author":"Claire McEwen^_#^Jennifer Lohmann^_#^Kathleen Pickering","authorKana":"","publisherName":"Harlequin","language":"EN","salesDate":"2014年09月01日","itemNumber":"9781460345672","koboGenreId":"101970019002","itemCaption":"Harlequin Superromance brings you three new novels for one great price, available now! Experience powerful relationships that deliver a strong emotional punch and a guaranteed happily ever after. This Harlequin Superromance bundle includes Winning Ruby Heart by Jennifer Lohmann, More Than A Rancher by Claire McEwen and Desert Heat by Kathleen Pickering.Enjoy more story and more romance from Harlequin Superromance with 6 new novels every month!","itemPrice":988,"itemUrl":"http://books.rakuten.co.jp/rk/6b3a7986a1b73414a41db651c805d2c5","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/86/5c/6b3a7986a1b73414a41db651c805d2c5.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/86/5c/6b3a7986a1b73414a41db651c805d2c5.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/86/5c/6b3a7986a1b73414a41db651c805d2c5.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Winning Ruby Heart","titleKana":"","subTitle":"","seriesName":"","author":"Jennifer Lohmann","authorKana":"","publisherName":"Harlequin","language":"EN","salesDate":"2014年09月01日","itemNumber":"9781460339176","koboGenreId":"101970019002","itemCaption":"It's a race to their beginning  Exposing world-class athlete Ruby Heart's cheating scandal five years ago made reporter Micah Blackwell's career. Falling in love with her now could end it. Yet watching her determination to return to the top, he can't resist the woman she has become. Working with Ruby to tell America her story, Micah falls deeper under her spell. But at a crucial moment, his feelings for her conflict with his job-the very thing that once saved him. Now he must choose between his skyrocketing career and the unlikely love of a good woman .","itemPrice":427,"itemUrl":"http://books.rakuten.co.jp/rk/eae5a1c8e89b3a56901e3a9dac7ef35e","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/a3/a8/eae5a1c8e89b3a56901e3a9dac7ef35e.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/a3/a8/eae5a1c8e89b3a56901e3a9dac7ef35e.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/a3/a8/eae5a1c8e89b3a56901e3a9dac7ef35e.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Winning Ruby Heart (Mills & Boon Superromance)","titleKana":"","subTitle":"","seriesName":"","author":"Jennifer Lohmann","authorKana":"","publisherName":"Mills & Boon","language":"EN","salesDate":"2014年09月01日","itemNumber":"9781472099853","koboGenreId":"101970019015/101970019002/101970016010","itemCaption":"It's a race to their beginning... Exposing world-class athlete Ruby Heart's cheating scandal five years ago made reporter Micah Blackwell's career. Falling in love with her now could end it. Yet watching her determination to return to the top, he can't resist the woman she has become. Working with Ruby to tell America her story, Micah falls deeper under her spell. But at a crucial moment, his feelings for her conflict with his job-the very thing that once saved him. Now he must choose between his skyrocketing career and the unlikely love of a good woman... .","itemPrice":411,"itemUrl":"http://books.rakuten.co.jp/rk/4a7223909f0236748c32e9fc7a447885","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/8d/fd/4a7223909f0236748c32e9fc7a447885.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/8d/fd/4a7223909f0236748c32e9fc7a447885.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/8d/fd/4a7223909f0236748c32e9fc7a447885.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Ruby Moo's Deep-Sea Adventure!","titleKana":"","subTitle":"","seriesName":"","author":"Isabel Atherton","authorKana":"","publisherName":"Sky Pony Press","language":"EN","salesDate":"2014年09月02日","itemNumber":"9781632202246","koboGenreId":"101970015001","itemCaption":"Ruby Moo has always been different from the other cows. She isn’t content making yogurt, milk, and cheese on the dairy farm. Ruby wants to be an astronaut, an explorer, and, more than anything, she wants to be the first cow deep-sea diver. So one day, brave Ruby Moo stows away on a van and rides it all the way to the ocean. Borrowing a helmet, she dives right into the water and discovers an exciting shipwreck along with a scary, giant squid! Thankfully, the squid is only looking for a chess partner-and maybe someone to play with on his trampoline. Phew!Author Isabel Atherton concocts a quirky story of a courageous cow who dares to dream big. Bethany Straker’s zany illustrations bring the story to life with vibrant colors that are sure to spark the imaginations of little readers everywhere and make them say, If Ruby Moo can, I can, too!”","itemPrice":986,"itemUrl":"http://books.rakuten.co.jp/rk/93c05617bda13f7581aae10becf144b8","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/11/c2/93c05617bda13f7581aae10becf144b8.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/11/c2/93c05617bda13f7581aae10becf144b8.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/11/c2/93c05617bda13f7581aae10becf144b8.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Wearing The Ruby Slippers","titleKana":"","subTitle":"9 Steps to Happiness","seriesName":"","author":"Kristina Downing-Orr","authorKana":"","publisherName":"Random House","language":"EN","salesDate":"2014年09月30日","itemNumber":"9781473518223","koboGenreId":"101970011220/101970011219","itemCaption":"This is the book for anyone who: --Forever finds themselves expecting the worst - both from themselves and others--Finds the very thought of public speaking, travelling on the tube or confronting a difficult situation sends them into a blind panic--Despite real achievement still finds themselves hankering after that ever elusive something that will make them truly happyWearing the Ruby Slippers is the first guide to adopt the revolutionary principles of Cognitive Behavioural Therapy - the leading therapy in the treatment of unhappiness and anxiety disorders. Clinical psychologist Dr Kristina Downing-Orr shows how, by using the exercises and tasks included, we can all learn to respond positively and confidently to even the most difficult situations - and all in just 9 weeks. Drawing on the well-loved characters of The Wizard of Oz, this book will show how to replace old negative thought patterns with positive ones. Just as the cowardly lion would never have believed in his courage had he not been given his medal for bravery and while the scarecrow only realised his intelligence when he was awarded a diploma, Kristina Downing-Orr shows how, once given the right tools, we are all capable of true happiness - it's simply a matter of getting the habit.","itemPrice":1112,"itemUrl":"http://books.rakuten.co.jp/rk/229016fd00813dbf9bc0b64d3b0e5640","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/c4/c6/229016fd00813dbf9bc0b64d3b0e5640.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/c4/c6/229016fd00813dbf9bc0b64d3b0e5640.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/c4/c6/229016fd00813dbf9bc0b64d3b0e5640.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Ruby Red","titleKana":"","subTitle":"","seriesName":"","author":"Henrietta Branford","authorKana":"","publisherName":"HarperCollins Publishers","language":"EN","salesDate":"2014年09月04日","itemNumber":"9780007584550","koboGenreId":"101970015001/101970008002","itemCaption":"Five exquisitely written stories about a contemporary sprite, by an award-winning author. Ruby Red is a lively and modern little sprite – a-do-it-yourself, solve-everything kind of a child in a miniature world. She and her friends inhabit an enchanting and pastoral dwelling close to the River Weedwater. Meet the Gargoyle, who only likes striking six o-clock; Floyd, the Mechanical Wonder Horse – put out to pasture from the fairground; Firecracker Fly, fearsome pirate who sails the Weedwater on the good ship Fly-By-Night; Columbine, Cluck, and Crinkle – the hens who love worms and… skating; Grandma Samphire who lives on an island and windmill dweller Sweet Grandpa William, who hates to wash his socks. Five enchanting stories in one book from this prize-winning author.","itemPrice":413,"itemUrl":"http://books.rakuten.co.jp/rk/1881d103530c3ef28774ca3b10f00e49","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/61/32/1881d103530c3ef28774ca3b10f00e49.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/61/32/1881d103530c3ef28774ca3b10f00e49.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/61/32/1881d103530c3ef28774ca3b10f00e49.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Max & Ruby at the Warthogs' Wedding","titleKana":"","subTitle":"","seriesName":"Max and Ruby","author":"Rosemary Wells","authorKana":"","publisherName":"Penguin Group US","language":"EN","salesDate":"2014年09月02日","itemNumber":"9780698161573","koboGenreId":"101970015001","itemCaption":"Oh, no! Max has lost the wedding ring! How can the Warthogs wedding go on without the ring? Max and Ruby lead the search through the grand hotel. Down to the laundry, up to the towers, back to the conservatory they run, following the map in Grandmother’s Bunnyphone. Children will delight in lifting the flaps to see where Max and Ruby are headed next in this ingenious use of up-to-the-minute technology in telling another hilarious story featuring the beloved bunny siblings. ","itemPrice":1274,"itemUrl":"http://books.rakuten.co.jp/rk/be077da462c93299bdd69138f84525a8","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/6e/6d/be077da462c93299bdd69138f84525a8.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/6e/6d/be077da462c93299bdd69138f84525a8.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/6e/6d/be077da462c93299bdd69138f84525a8.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"The Ruby Circle","titleKana":"","subTitle":"A Bloodlines Novel","seriesName":"Bloodlines","author":"Richelle Mead","authorKana":"","publisherName":"Penguin Group US","language":"EN","salesDate":"2015年02月10日","itemNumber":"9781101608159","koboGenreId":"101970015001/101970008005/101970008004","itemCaption":"The epic conclusion to Richelle Mead's New York Times bestselling Bloodlines series is finally here... Sydney Sage is an Alchemist, one of a group of humans who dabble in magic and serve to bridge the worlds of humans and vampires. They protect vampire secretsーand human lives. After their secret romance is exposed, Sydney and Adrian find themselves facing the wrath of both the Alchemists and the Moroi in this electrifying conclusion to Richelle Mead’s New York Times bestselling Bloodlines series. When the life of someone they both love is put on the line, Sydney risks everything to hunt down a deadly former nemesis. Meanwhile, Adrian becomes enmeshed in a puzzle that could hold the key to a shocking secret about spirit magic, a secret that could shake the entire Moroi world. ","itemPrice":1345,"itemUrl":"http://books.rakuten.co.jp/rk/aabcb17cac77313ca07fb259113f5b03","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/21/c7/aabcb17cac77313ca07fb259113f5b03.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/21/c7/aabcb17cac77313ca07fb259113f5b03.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/21/c7/aabcb17cac77313ca07fb259113f5b03.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Ruby Valentine and the Sweet Surprise","titleKana":"","subTitle":"","seriesName":"Carolrhoda Picture Books","author":"Laurie Friedman","authorKana":"","publisherName":"LPG","language":"EN","salesDate":"2014年11月01日","itemNumber":"9781467765046","koboGenreId":"101970015001/101970008003","itemCaption":"For Ruby Valentine, two pets means twice the love! There's a new addition in the Valentine house: a kitten! He's soft and sweet, and Ruby is happy to have him. But not everyone shares Ruby's enthusiasm. Lovebird's feathers are more than a little ruffled. And when Valentine's Day arrives, both animals try to outdo each other to show Ruby how much they love her. Ruby's favorite day quickly turns into a mess. Can Ruby find a way to show her pets that there's room in her heart for two?","itemPrice":757,"itemUrl":"http://books.rakuten.co.jp/rk/063379a7757b3b99a9ffbdb12a43a81e","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/b0/74/063379a7757b3b99a9ffbdb12a43a81e.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/b0/74/063379a7757b3b99a9ffbdb12a43a81e.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/b0/74/063379a7757b3b99a9ffbdb12a43a81e.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Ruby Slippers, Golden Tears","titleKana":"","subTitle":"","seriesName":"","author":"","authorKana":"","publisherName":"Open Road Media","language":"EN","salesDate":"2014年09月30日","itemNumber":"9781497668584","koboGenreId":"101970020004/101970009066/101970009030","itemCaption":"Sleeping Beauty, Rumpelstiltskin, Goldilocks, Hansel and Gretel, and other storybook icons are ingeniously reimagined in this stunning collection of updated adult fairy tales from some of today’s finest fantasistsFor many of us, the fairy tale was our first exposure to the written word and the power of storytelling. These wondrous works of magic and morality enthralled us, enchanted us, sometimes terrified us, and remain in our hearts and memories still. Once again, World Fantasy Award–winning editors Ellen Datlow and Terri Windling have compiled an extraordinary collection of reimagined tales conceived by some of today’s most acclaimed contemporary purveyors of literary fantasy, science fiction, and horror, including Neil Gaiman, Gahan Wilson, Joyce Carol Oates, Tanith Lee, Nancy Kress, Gene Wolfe, and others.Remarkable things lurk in these dark and magical woods. Here Beauty confronts a serial-killer Beast, Hansel and Gretel’s witch resides not in a gingerbread house but in a luxurious resort, and Rumpelstiltskin is truly the devil demanding his due, rightfully or otherwise. The hilarious “Roach in Loafers” ingeniously combines the classic “Elves and the Shoemaker” tale with “Puss in Boots” and adds an insectile twist, while in a modern fable that blends The Wizard of Oz and Hans Christian Andersen, Dorothy is set adrift in Hollywoodland, ruby slippers and all. These are not the fairy stories you remember from childhood.","itemPrice":656,"itemUrl":"http://books.rakuten.co.jp/rk/2c36e61671d138c49696f35fc49d1067","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/de/ff/2c36e61671d138c49696f35fc49d1067.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/de/ff/2c36e61671d138c49696f35fc49d1067.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/de/ff/2c36e61671d138c49696f35fc49d1067.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"A Sharon Creech Quartet","titleKana":"","subTitle":"Walk Two Moons, Ruby Holler, The Great Unexpected, The Boy on the Porch","seriesName":"","author":"Sharon Creech","authorKana":"","publisherName":"HarperCollins","language":"EN","salesDate":"2014年10月28日","itemNumber":"9780062375940","koboGenreId":"101970015001","itemCaption":"Newbery and Carnegie Medal-winning author Sharon Creech's stories become instant classics, beloved for their genuine characters and celebration of classic themes such as the gifts of love, family, and forgiveness. This quartet collects four of her bestselling novels, including the Newbery Medal-winning Walk Two Moons.Walk Two Moons: In this Newbery-winning novel, thirteen-year-old Salamanca Tree Hiddle, proud of her country roots and the \"Indian-ness in her blood,\" travels from Ohio to Idaho with her eccentric grandparents. Along the way, she tells them of the story of Phoebe Winterbottom, who received mysterious messages, who met a \"potential lunatic,\" and whose mother disappeared. As Sal entertains her grandparents with Phoebe's outrageous story, her own story begins to unfoldーthe story of a girl whose only wish is to be reunited with her missing mother.Ruby Holler: \"Trouble twins\" Dallas and Florida are orphans who have given up believing there is such a thing as a loving home. Tiller and Sairy are an eccentric older couple who live in the beautiful, mysterious Ruby Holler, but they're restless for one more big adventure. When they invite the twins to join them on their journeys, they first must all stay together in the Holler, and the magic of the place takes over.The Great Unexpected: Young Naomi Deane is brimming with curiosity and her best friend, Lizzie Scatterding, could talk the ears off a cornfield. Naomi has a knack for being around when trouble happens. She knows all the peculiar people in townーlike Crazy Cora and Witch Wiggins. But then, one day, a boy drops out of a tree. Just like that. A strangely charming Finn boy. And then the Dingle Dangle man appears, asking all kinds of questions. Curious surprises are revealedーthree locked trunks, a pair of rooks, a crooked bridge, and that boyーand soon Naomi and Lizzie find their lives changed forever.The Boy on the Porch: When a young couple finds a boy asleep on their porch, their lives take a surprising turn. Unable to speak, the boy Jacob can't explain his history. All John and Marta know is that they have been chosen to care for him. And, as their connection and friendship with Jacob grow, they embrace his exuberant spirit and talents. The three of them blossom into an unlikely family and begin to see the world in brand-new ways.","itemPrice":2053,"itemUrl":"http://books.rakuten.co.jp/rk/1b50e71d1dcb39e7aed93363f083a083","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/1c/72/1b50e71d1dcb39e7aed93363f083a083.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/1c/72/1b50e71d1dcb39e7aed93363f083a083.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/1c/72/1b50e71d1dcb39e7aed93363f083a083.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"泣けるBL","titleKana":"ナケルビーエル","subTitle":"","seriesName":"泣けるBL","author":"ARUKU^_#^モモ花^_#^ヤマシタトモコ","authorKana":"ヤマシタトモコ,エダユウリ,コノハラナリセ,モトハルヒラ,カワイヒデキ,アルク,モモカ,イトイノゾ,ミネシマナワコ^_#^ヤマシタトモコ,エダユウリ,コノハラナリセ,モトハルヒラ,カワイヒデキ,アルク,モモカ,イトイノゾ,ミネシマナワコ^_#^ヤマシタトモコ,エダユウリ,コノハラナリセ,モトハルヒラ,カワイヒデキ,アルク,モモカ,イトイノゾ,ミネシマナワコ","publisherName":"リブレ出版","language":"JA","salesDate":"2014年06月19日","itemNumber":"5591203768690","koboGenreId":"101940002","itemCaption":"悲しい「涙」も嬉しい「涙」も、全てこの恋が始まりだった。ストレスを抱える女性にお贈りする全く新しいBLアンソロジー。「泣ける」をテーマに、豪華執筆陣がオール描き下ろし、オール読みきり、そしてオールハッピーエンドでお届けいたします。ヤマシタトモコ/榎田尤利(原作)×峰島なわこ(漫画)/木原音瀬(挿絵/糸井のぞ)/元ハルヒラ/河井英槻/ARUKU/モモ花","itemPrice":933,"itemUrl":"http://books.rakuten.co.jp/rk/6cd9f985787e3ddd8d332cb8a38ccef2","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/bd/82/6cd9f985787e3ddd8d332cb8a38ccef2.png?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/bd/82/6cd9f985787e3ddd8d332cb8a38ccef2.png?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/bd/82/6cd9f985787e3ddd8d332cb8a38ccef2.png?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Ruby","titleKana":"","subTitle":"","seriesName":"","author":"Dwight W. Hunter","authorKana":"","publisherName":"Dwight W. Hunter","language":"EN","salesDate":"2014年08月29日","itemNumber":"9781301024605","koboGenreId":"101970016001/101970009037","itemCaption":"Becoming a successful businessman during frontier days was a daunting task. For a single woman to succeed in this environment she required an extra measure of smarts, spunk and sometimes straight-shooting. Ruby had all these attributes in addition to being outspoken and a nonconformist.Ruby married her father’s hired man, who was afflicted with a drinking problem and a vacant libido. One swing with a castiron skilled made her a virgin widow.With only an eighth grade education she became a country school-marm and sparked a legend for parting the hair of an unruly student with a pistol bullet. Later she sent a scam artist packing when she blew away his contract through a cloud of cigar smoke.While managing a commercial warehouse, Ruby became an attorney and proved her mantle as a trial lawyer when she proved a friend innocent of murder and sent a crooked town marshal to the gallows.On her way to San Francisco, during a short layover in Portland, she became a complete woman in the arms of a man more interested in his career than becoming a husband. Aboard ship she learned the fine art of poker and later put this skill to use collecting inside business information.Arriving in San Francisco Ruby found disappointment in a man she thought a friend. Using information gleaned while playing poker she and a former cab driver successfully carried out a sting operation on a greedy San Francisco businessman by sabotaging his planned lumber monopoly and setting off a wine war.Ruby retired to a Sonoma Valley estate she purchased during the wine war, spent her time traveling and being a hobby vintner.","itemPrice":415,"itemUrl":"http://books.rakuten.co.jp/rk/9b8cbb0d06473c4cba402bda19204a70","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/23/b8/9b8cbb0d06473c4cba402bda19204a70.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/23/b8/9b8cbb0d06473c4cba402bda19204a70.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/23/b8/9b8cbb0d06473c4cba402bda19204a70.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"実践Ruby on Rails 4 機能拡張編","titleKana":"ジッセンルビーオンレイルズフォーキノウカクチョウヘン","subTitle":"","seriesName":"","author":"黒田 努","authorKana":"クロダ ツトム","publisherName":"インプレス","language":"JA","salesDate":"2014年08月25日","itemNumber":"4694844336030","koboGenreId":"101912005001","itemCaption":"本書は、2014年5月発売の書籍『実践Ruby on Rails 4 現場のプロから学ぶ本格Webプログラミング』のために書かれた原稿のうち、紙面の都合で掲載できなかった部分を集めたものです。機能拡張編単独で読まれる読者のために冒頭でサンプルアプリケーションの全体像を解説していますが、『実践Ruby on Rails 4 現場のプロから学ぶ本格Webプログラミング』とセットでご覧いただくとより理解が深まる内容になっています。Ruby on Railsの実践的な学習書であり、1つの企業向け顧客管理システムを作る中でRailsによるWebアプリケーション開発の基礎知識とさまざまなノウハウを習得していきます。各章末には演習問題が設けられているので、理解度を確かめながら確実に読み進められます。","itemPrice":2400,"itemUrl":"http://books.rakuten.co.jp/rk/9d47f5566713377fb146a144a19a64bd","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/6c/d2/9d47f5566713377fb146a144a19a64bd.png?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/6c/d2/9d47f5566713377fb146a144a19a64bd.png?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/6c/d2/9d47f5566713377fb146a144a19a64bd.png?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Ruby Between the Cracks","titleKana":"","subTitle":"","seriesName":"Between the Cracks","author":"P.D. Workman","authorKana":"","publisherName":"P.D. Workman","language":"EN","salesDate":"2014年08月28日","itemNumber":"9780993768743","koboGenreId":"101970015001","itemCaption":"Ruby has been nominated for \"In the Margins\" Best Books for Teens List!If you asked Ruby, she&apos;d tell you she&apos;s happy with her life. She&apos;s tough and independent and doesn&apos;t depend on anyone else. The road that has led her here has not been easy, and she&apos;s blocked a lot of it from her memory.But things aren&apos;t as rosy as she would have everyone believe, and the road ahead of her is filled not only with gangs, drugs, and depression, but other challenges that Ruby hasn&apos;t even imagined.ーYou know it’s a great book when you have to keep reminding yourself that the characters are not real people. I really cared about Ruby, and she gave me some bad moments. I desperately hoped her story would have a happy ending.ー \"Ruby\" exposes the complex and brutal relationship between mental illness, poverty and abuse … a page turner I had to finishー “Ruby\" really put me through the wringer and I actually had to put it down a few times because I needed to return to reality … There was no chance I was going to stop reading until I knew how the story ended! … I seriously can&apos;t wait for book two!","itemPrice":519,"itemUrl":"http://books.rakuten.co.jp/rk/c6a7b98f5b0236299f3ae0586027fabd","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/77/c9/c6a7b98f5b0236299f3ae0586027fabd.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/77/c9/c6a7b98f5b0236299f3ae0586027fabd.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/77/c9/c6a7b98f5b0236299f3ae0586027fabd.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"アイドルビースト【おまけ漫画付き電子限定版】","titleKana":"アイドルビーストオマケマンガツキデンシゲンテイバン","subTitle":"","seriesName":"","author":"あくた琳子","authorKana":"アクタリンコ","publisherName":"フロンティアワークス","language":"JA","salesDate":"2014年08月19日","itemNumber":"6194861346392","koboGenreId":"101940002015","itemCaption":"【限定配布されたペーパーの漫画付!!】獣の耳と尾を持つ獣科人種が人間と一緒に住む世界。芸能事務所でアルバイトをする七生は、人気アイドルグループのメンバーで幼馴染みのレオの事が大好き! レオも七生に近づくプロデューサーの黒島を牽制したりと溺愛するが、鈍感な七生には全く伝わらずイライラ。お互い好きなのに通じ合えないなか、黒島が七生を連れ出して…!? 他、同じ業界の個性豊かな3カップルを同時収録♪","itemPrice":600,"itemUrl":"http://books.rakuten.co.jp/rk/287c3bedb5fb3eb6919f8587bddf50cf","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/0f/5d/287c3bedb5fb3eb6919f8587bddf50cf.png?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/0f/5d/287c3bedb5fb3eb6919f8587bddf50cf.png?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/0f/5d/287c3bedb5fb3eb6919f8587bddf50cf.png?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"The Ruby Warriors","titleKana":"","subTitle":"","seriesName":"","author":"Michael Csizmadia","authorKana":"","publisherName":"Authors Online ","language":"EN","salesDate":"2014年08月27日","itemNumber":"9780755250592","koboGenreId":"101970020004/101970020003","itemCaption":"Two powerful Warlord magicians have returned to take back the land that once belonged to their forefathers and many other ancient races of magic users who had abandoned the land many centuries ago to allow the human race to expand and develop. The Ruby Warriors, a proud race of mercenary clansmen and women, deemed to be the only threat to their long term plans for domination, have been systematically wiped out. Any survivors from the final, dreadful clan wars that had seen the warriors face up to each other were summarily executed without trial and were no longer seen as a credible force. An old man, an agent of the magicians’ many enemies, is instructed to remove the Warlord threat from the lives of the humans and return the land back to them. He must hatch a plan to reassemble the scattered remnants of the mercenary warriors and unite them under one banner. The warriors’ skills, enhanced by the power of the special Rubies that each one carried would help him to defeat the Warlords and their cohorts. The old man realises that his plans would take quite a lot of time to reach fruition but he is prepared to take that time … a commodity of which the mysterious old man has plenty …!","itemPrice":294,"itemUrl":"http://books.rakuten.co.jp/rk/7daffafb06763d2f9b57b1600e975c26","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/b0/53/7daffafb06763d2f9b57b1600e975c26.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/b0/53/7daffafb06763d2f9b57b1600e975c26.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/b0/53/7daffafb06763d2f9b57b1600e975c26.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"BLB-猫-","titleKana":"ビーエルビーネコ","subTitle":"","seriesName":"BLBシリーズ","author":"バリカタとんこつ味玉入り","authorKana":"バリカタトンコツアジタマイリ","publisherName":"まほろばコミック","language":"JA","salesDate":"2014年08月15日","itemNumber":"6191050130702","koboGenreId":"101940002","itemCaption":"薔薇宿駅周辺に位置するベーコンレタスバーガー専門店「BLB」。店員は全員男。しかも個性派イケメン揃いで若い女性を中心に絶大な人気を集めていた。 パーフェクトな容姿の店長・馬場優人、身長190cmのヒゲ副店長・蟻塚瑛史、劇団所属の演技派男の娘・茅ヶ崎晴日、元気いっぱい高校生・大門翔、ちょっと天然な内気眼鏡・江角司、不思議系お坊ちゃん・藤田紫、オレンジ髪で独特の喋り方・牙城隼人、情熱的で一途な山男・鬼灯一。そんなBLBの店員達が繰り広げる日常、そして恋愛模様。","itemPrice":100,"itemUrl":"http://books.rakuten.co.jp/rk/6050cc90950b33809471896facdb586b","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/c7/93/6050cc90950b33809471896facdb586b.png?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/c7/93/6050cc90950b33809471896facdb586b.png?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/c7/93/6050cc90950b33809471896facdb586b.png?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"The Princess and the Ruby","titleKana":"","subTitle":"An Autism Fairy Tale","seriesName":"Fairy Ability Tales","author":"Jewel Kats","authorKana":"","publisherName":"Loving Healing Press","language":"EN","salesDate":"2014年08月24日","itemNumber":"9781615991761","koboGenreId":"101970017208/101970017136/101970015001","itemCaption":"A Mysterious Girl Puts the Future of a Kingdom in the Balance! One icy-cold winter night, everything changes: a young girl shows up at the king and new queen's castle doorstep wearing little more than a purple jacket and carrying a black pouch. The king recognizes the mystery girl's identity as the long-lost princess without her uttering even a single word. However, the new queen refuses to believe the king's claims. In turn, a devious plan is hatched... and, the results are quite fitting! This new twist on Hans Christen Andersen's The Princess and the Pea is surely to be loved by all fairy tale enthusiasts. The Princess and the Ruby: An Autism Fairy Tale adds to much-needed age-appropriate literature for girls with Autism Spectrum Disorder. Both fun and education are cleverly weaved in this magical tale, teaching children to be comfortable in their own skin and to respect the differences of others. Acclaim for The Princess and the Ruby \"As someone who has a couple of friends with Autistic kids, I understand the challenges these families have. This modern day twist on The Princess and the Pea not only shows how others judge something they do not understand, but how someone with Autism can see, feel and do things one might not expect.\" --V.S. Grenier, Mom's Choice Silver Honoree and award-winning author \"The Princess and the Ruby is a heartwarming narrative; a tale that beautifully depicts several unique characterizations of Autism Spectrum Disorder. Jewel Kats has refreshingly shed light upon a daily struggle to redefine 'normalized behaviors', in an admirable effort to gain societal acceptance and respect.\" --Vanessa De Castro, Primary Residential Counselor with Autistic Youth Learn more at www.JewelKats.com Book #2 in the Fairy Ability Tales from Loving Healing Press JUV039150 Juvenile Fiction : Social Issues - Special Needs EDU026020 Education : Special Education - Learning Disabilities EDU026050 Education : Special Education - Social Disabilities","itemPrice":400,"itemUrl":"http://books.rakuten.co.jp/rk/001948753ce53da48e0a4a7223980c82","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/33/2b/001948753ce53da48e0a4a7223980c82.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/33/2b/001948753ce53da48e0a4a7223980c82.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/33/2b/001948753ce53da48e0a4a7223980c82.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Sister Ruby Rosarita Mermaid and the Storytelling Soup","titleKana":"","subTitle":"","seriesName":"","author":"Kim Antieau","authorKana":"","publisherName":"Green Snake Publishing","language":"EN","salesDate":"2014年08月25日","itemNumber":"9781465973603","koboGenreId":"101970009028/101970009005","itemCaption":"When the Old Sea dries up and the Old Mermaids find themselves on the New Desert, Sister Ruby Rosarita Mermaid discovers she can cook soups. And not just any soups, but soups infused with magic, joy, love, and sustenance. When the Peppermans come to live in the desert and the Javelina Conflict erupts, Sister Ruby discovers her soup is more magical than even she could ever have imagined.","itemPrice":104,"itemUrl":"http://books.rakuten.co.jp/rk/806664fcf15c4eb38c63b6f4dce6d53f","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/23/f4/806664fcf15c4eb38c63b6f4dce6d53f.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/23/f4/806664fcf15c4eb38c63b6f4dce6d53f.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/23/f4/806664fcf15c4eb38c63b6f4dce6d53f.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Finding Ruby Starling","titleKana":"","subTitle":"","seriesName":"","author":"Karen Rivers","authorKana":"","publisherName":"Scholastic Inc.","language":"EN","salesDate":"2014年08月26日","itemNumber":"9780545534826","koboGenreId":"101970015001","itemCaption":"THE PARENT TRAP comes to the digital age! When Ruth Quayle used a special app to search for pictures of herself online, she found dozens of images of \"Ruth Quayle\" -- and one of \"Ruby Starling.\" When Ruby Starling gets a message from a Ruth Quayle proclaiming them to be long-lost twin sisters, she doesn't know what to do with it -- until another message arrives the day after, and another one. It could be a crazy stalker ... but she and this Ruth do share a birthday, and a very distinctive ear.... Ruth is an extroverted American girl. Ruby is a shy English one. As they investigate the truth of their birth and the circumstances of their separation, they also share lives full of friends, family, and possible romances -- and they realize they each may be the sister the other never knew she needed. Written entirely in e-mails, letters, Tumblr entries, and movie scripts, FINDING RUBY STARLING is the funny and poignant companion to Karen Rivers's THE ENCYCLOPEDIA OF ME.","itemPrice":1097,"itemUrl":"http://books.rakuten.co.jp/rk/1ede047ca7463d469268c434571b2c71","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/38/d0/1ede047ca7463d469268c434571b2c71.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/38/d0/1ede047ca7463d469268c434571b2c71.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/38/d0/1ede047ca7463d469268c434571b2c71.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Ruby's Imagine","titleKana":"","subTitle":"","seriesName":"","author":"Kim Antieau","authorKana":"","publisherName":"Green Snake Publishing","language":"EN","salesDate":"2014年08月25日","itemNumber":"9781301943388","koboGenreId":"101970009028","itemCaption":"A butterfly the color of my name did tell me that a Big Spin was coming our way. I was standing by Mr. Grant’s wisteria, which hung over his fence and down into our yard, when Ruby Butterfly, this jeweled metamorphosis of a cattypillar, landed on a bright green wisteria leaf like some kind of winged oracle and looked straight at me; we exchanged glances, you know the way liked-minded and soul-bodied creatures can. We understood each other down deep to our transfigured and transforming cellular parts, and I knew the Big Oaks had told Ruby Butterfly and now she was letting me in on the not-so-secret secret: a storm was coming.Kim Antieau has written many novels, short stories, poems, and essays. Her work has appeared in numerous publications, both in print and online, including The Magazine of Fantasy and Science Fiction, Asimov’s SF, The Clinton Street Quarterly, The Journal of Mythic Arts, EarthFirst!, Alternet, Sage Woman, and Alfred Hitchcock’s Mystery Magazine. She was the founder, editor, and publisher of Daughters of Nyx: A Magazine of Goddess Stories, Mythmaking, and Fairy Tales. Her work has twice been short-listed for the James Tiptree Award and has appeared in many best-of-the-year anthologies. Critics have admired her “literary fearlessness” and her vivid language and imagination. Her first novel, The Jigsaw Woman, is a modern classic of feminist literature. She is also the author of a science fiction novel, The Gaia Websters, and a contemporary tale set in the desert Southwest, Church of the Old Mermaids. Her other novels include Her Frozen Wild, The Fish Wife, and Coyote Cowgirl. Broken Moon, a novel for young adults, was a selection of the Junior Library Guild. She has also written other YA novels, including Deathmark, The Blue Tail, Ruby’s Imagine, and Mercy, Unbound. Kim lives in the Pacific Northwest with her husband, writer Mario Milosevic. Learn more about Kim and her writing at www.kimantieau.com.","itemPrice":312,"itemUrl":"http://books.rakuten.co.jp/rk/fa5f4675ac9d4c8fa9631a40e48ab854","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/5f/d7/fa5f4675ac9d4c8fa9631a40e48ab854.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/5f/d7/fa5f4675ac9d4c8fa9631a40e48ab854.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/5f/d7/fa5f4675ac9d4c8fa9631a40e48ab854.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"The Chase of the Ruby","titleKana":"","subTitle":"","seriesName":"","author":"Richard Marsh","authorKana":"","publisherName":"The Perfect Library","language":"EN","salesDate":"2014年08月21日","itemNumber":"1230000262110","koboGenreId":"101970009017","itemCaption":"The Chase of the Ruby Richard Marsh, pseudonym of the British author born Richard Bernard Heldmann (1857-1915) This ebook presents «The Chase of the Ruby», from Richard Marsh. A dynamic table of contents enables to jump directly to the chapter selected. Table of Contents -01- About this book -02- GHOSTS IN AFRICA -03- THE QUEST ORDAINED -04- MISS BROAD COMMANDS -05- MR HOLLAND FAILS -06- A WOMAN SCORNED -07- MISS BROAD COMMANDS A SECOND TIME -08- THE BOTTOM DRAWER -09- THE LADYAND THE GENTLEMAN -10- THE FLYMAN -11- SHE WISHES THAT SHE HADN'T -12- THE PURSUIT OF THE GENTLEMAN -13- THE TENDER MERCIES OF TWO LADIES -14- VISITORS FOR MISS CASATA -15- WHO KNOCKS -16- AN HONOURABLE RETREAT -17- THE FINDING OF THE RUBY AND THE LOCKING OF THE DOOR -18- THE FIGURES ON THE BED -19- REINFORCED -20- STILL WITH A SMILE -21- HOW THE CHASE WAS ENDED  ","itemPrice":599,"itemUrl":"http://books.rakuten.co.jp/rk/5aa3d574b4a93e5497fb850edc8d3c79","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/a0/ef/5aa3d574b4a93e5497fb850edc8d3c79.jpg?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/a0/ef/5aa3d574b4a93e5497fb850edc8d3c79.jpg?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/a0/ef/5aa3d574b4a93e5497fb850edc8d3c79.jpg?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"改訂新版 基礎Ruby on Rails","titleKana":"カイテイシンパンキソルビーオンレイルズ","subTitle":"","seriesName":"基礎シリーズ","author":"株式会社オイアクス^_#^黒田 努^_#^佐藤 和人","authorKana":"カブシキカイシャオイアクス^_#^クロダ ツトム^_#^サトウ カズト","publisherName":"インプレス","language":"JA","salesDate":"2014年06月30日","itemNumber":"4694844331560","koboGenreId":"101912001003","itemCaption":"※この電子書籍は固定型レイアウトです。リフロー型と異なりビューア機能が制限されます。 ベストセラー「基礎 Ruby on Rails」に改訂新版が登場! 「Rails 3.2」にも対応し、超・実践的なサンプルでRailsのウェブアプリ構築方法を学べるほか、Rubyの基礎まで学べる、標準テキストの決定版です。","itemPrice":2286,"itemUrl":"http://books.rakuten.co.jp/rk/a32c638f523238b69296b1ba3a057b3e","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/a7/1c/a32c638f523238b69296b1ba3a057b3e.png?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/a7/1c/a32c638f523238b69296b1ba3a057b3e.png?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/a7/1c/a32c638f523238b69296b1ba3a057b3e.png?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"実践Ruby on Rails 4 現場のプロから学ぶ本格Webプログラミング","titleKana":"ジッセンルビーオンレイルズフォーゲンバノプロカラマナブホンカクウェブプログラミング","subTitle":"","seriesName":"","author":"黒田 努","authorKana":"クロダ ツトム","publisherName":"インプレスジャパン","language":"JA","salesDate":"2014年06月27日","itemNumber":"4694844335920","koboGenreId":"101912005001","itemCaption":"[この電子書籍は固定型レイアウトです。リフロー型と異なりビューア機能が制限されます(※)]  本書は、Ruby on Railsの実践的な学習書です。1つの企業向け顧客管理システムを作る中でRailsによるWebアプリケーション開発の基礎知識とさまざまなノウハウを習得していきます。各章末には演習問題が設けられているので、理解度を確かめながら確実に読み進められます。  ※固定型レイアウトはページを画像化した構造であるため、ページの拡大縮小を除く機能は利用できません。また、モノクロ表示の端末ではカラーページ部分で一部見づらい場合があります。","itemPrice":3000,"itemUrl":"http://books.rakuten.co.jp/rk/3056814c8e123a0dafbe7bdc4ee4d160","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/7b/c9/3056814c8e123a0dafbe7bdc4ee4d160.png?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/7b/c9/3056814c8e123a0dafbe7bdc4ee4d160.png?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/7b/c9/3056814c8e123a0dafbe7bdc4ee4d160.png?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"リリー骨董店の白雪姫3 トワイライト・ルビーの夜明け","titleKana":"リリーコットウテンノシラユキヒメサントワイライトルビーノヨアケ","subTitle":"","seriesName":"リリー骨董店の白雪姫","author":"白川紺子^_#^宵マチ","authorKana":"シラカワコウコ,ヨイマチ^_#^シラカワコウコ,ヨイマチ","publisherName":"集英社","language":"JA","salesDate":"2014年07月10日","itemNumber":"4822360820003","koboGenreId":"101903002007","itemCaption":"ジェレミーへの気持ちを自覚して以来、クレアは脅えていた。「当主の愛した人は死んでしまう」という伯爵家の呪いは解けていない。もし今、爵位がクレアに移れば、彼を殺してしまうかもしれないのだ。そんなある日、クレアはブラウン姉妹と一緒に出席したお茶会で、〈エデン・ブルー〉らしきアンティーク・ジュエリーが売りに出されるという噂を聞いて…!? 英国ラブストーリー、涙の完結巻!","itemPrice":432,"itemUrl":"http://books.rakuten.co.jp/rk/84595b7392db37c3818c2d765ec31d30","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/a7/01/84595b7392db37c3818c2d765ec31d30.png?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/a7/01/84595b7392db37c3818c2d765ec31d30.png?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/a7/01/84595b7392db37c3818c2d765ec31d30.png?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"機動戦士ガンダム00 (1) ソレスタルビーイング","titleKana":"キドウセンシガンダムダブルオー01ソレスタルビーイング","subTitle":"","seriesName":"機動戦士ガンダム00","author":"富野 由悠季^_#^木村 暢^_#^柳瀬 敬之","authorKana":"ヤタテ ハジメ,トミノ ヨシユキ,キムラ ノボル,ヨネヤマ コウヘイ,ヤナセ タカユキ,ウオン タラク^_#^ヤタテ ハジメ,トミノ ヨシユキ,キムラ ノボル,ヨネヤマ コウヘイ,ヤナセ タカユキ,ウオン タラク^_#^ヤタテ ハジメ,トミノ ヨシユキ,キムラ ノボル,ヨネヤマ コウヘイ,ヤナセ タカユキ,ウオン タラク","publisherName":"KADOKAWA / 角川書店","language":"JA","salesDate":"2014年06月26日","itemNumber":"4332264300300","koboGenreId":"101903001010","itemCaption":"西暦2307年。人類は枯渇した化石燃料に代わる新たなエネルギー・太陽光発電システムを手に入れたものの、その恩恵をめぐり各国でいまだ終わりなき争いを続けていた。だがそんな世界に、「武力による戦争根絶」を掲げる組織が現れる。あらゆる現行モビルスーツを凌駕した4機の”ガンダム”を所有する、彼らの名はソレスタルビーイング。今、ガンダムによる全戦争行為への武力介入が始まる!!","itemPrice":620,"itemUrl":"http://books.rakuten.co.jp/rk/8495db1dd13030f09cb7a74b28154f5c","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/d6/f2/8495db1dd13030f09cb7a74b28154f5c.png?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/d6/f2/8495db1dd13030f09cb7a74b28154f5c.png?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/d6/f2/8495db1dd13030f09cb7a74b28154f5c.png?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Ruby on Rails環境構築ガイド","titleKana":"ルビーオンレイルズカンキョウコウチクガイド","subTitle":"","seriesName":"","author":"黒田 努","authorKana":"クロダ ツトム","publisherName":"インプレス","language":"JA","salesDate":"2014年06月30日","itemNumber":"4694844333750","koboGenreId":"101912001003","itemCaption":"※この電子書籍は固定型レイアウトです。リフロー型と異なりビューア機能が制限されます。 Webアプリを本格的に運用するためには、プログラミング以外の広範囲な知識が必要です。また、Webアプリはユーザーの要求に応じて変化しながら運用されるものです。そこで本書では、Webアプリ開発用マシンのセットアップやGitによるソースコード管理、Web&データベースサーバーの組み方など、Ruby on Railsの開発関係者なら知っておきたい環境構築のあれこれを1冊にまとめました。ひとつひとつ体験しながら、“プロ”と呼ばれる人になるための基礎を学ぶことができます。","itemPrice":2800,"itemUrl":"http://books.rakuten.co.jp/rk/08084f1828903a20be2f04ea795a1992","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/88/51/08084f1828903a20be2f04ea795a1992.png?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/88/51/08084f1828903a20be2f04ea795a1992.png?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/88/51/08084f1828903a20be2f04ea795a1992.png?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}},{"Item":{"title":"Rubyではじめるシステムトレード","titleKana":"","subTitle":"ルビーデハジメルシステムトレード","seriesName":"","author":"坂本タクマ","authorKana":"","publisherName":"パンローリング","language":"JA","salesDate":"2014年05月02日","itemNumber":"5114775991282","koboGenreId":"101905005","itemCaption":"「使える」プログラミングで検証ソフトを作るプログラミングのできるシステムトレーダーになる!!絶対金持ちになってやる!!本書は、「どうにかして株で儲けたい」という人のために書かれた。そのトレードで勝つためには、極力感情を排除することが重要だ。そのために、明確なルールに従って機械的に売買する「システムトレード」がどうも有効らしい。しかし、プログラミングが壁になって二の足を踏んでしまう。そういう人たちのために、自分の手を動かし、トレードアイデアをプログラムで表現する喜びを味わってもらおうとして書いたのが本書の一番の目的だ。しかし世の中には、プログラミングを学んだけれども何を作ったらいいのかわからない、という人もいるだろう。それに対して、この本の趣旨ははっきりしている。トレーディングシステム検証プログラムだ。このように明確な動機づけがあることは、プログラミングを学ぶうえで大きな利点になる。儲けたいという情念が指先からほとばしり、キーボードを通じてコンピューターへと伝わっていく。それが筆者のプログラミングスタイルだ。トレードで負けた日にその「感情」や「敗北感」を逆方向へと有効利用して、プログラミングに熱中できるのだ。これは、Ruby という表現力豊かなプログラミング言語と出合ったからこそ、できることかもしれない。ややこしいお膳立てをあまりすることなく、割とストレートにやりたいことを書ける。多くの方をこの素晴らしい世界にお誘いしたくて、「プログラミング言語 Ruby を学びながらトレーディングシステム検証ソフトを作る」というテーマで本書を書いた。本書の内容とは、以下のとおり。 CUI 株価データのダウンロード 日本株での売買ルール検証 1銘柄ごと、1売買単位でのシミュレーション 寄り付き、ザラ場、大引けでの仕掛け、手仕舞い 売買ルールの部品化、着脱 「移動平均乖離率システム」と「ブレイクアウトシステム」のプログラム化 さあ、あなたも、株で金持ちになってみませんか。","itemPrice":1800,"itemUrl":"http://books.rakuten.co.jp/rk/081364e221163aeaba55e9738ab28653","affiliateUrl":"","smallImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/bf/2f/081364e221163aeaba55e9738ab28653.png?_ex=64x64","mediumImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/bf/2f/081364e221163aeaba55e9738ab28653.png?_ex=120x120","largeImageUrl":"http://thumbnail.image.rakuten.co.jp/@0_gold/rakutenkobo-ebooks/imghb/bf/2f/081364e221163aeaba55e9738ab28653.png?_ex=200x200","reviewCount":0,"reviewAverage":"0.0"}}],"GenreInformation":[]}
@@ -0,0 +1 @@
1
+ {"current":{"koboGenreId":"101","koboGenreName":"電子書籍","genreLevel":1},"children":[{"child":{"koboGenreId":"101901","koboGenreName":"小説・エッセイ","genreLevel":2}},{"child":{"koboGenreId":"101902","koboGenreName":"ミステリー・サスペンス","genreLevel":2}},{"child":{"koboGenreId":"101903","koboGenreName":"ライトノベル","genreLevel":2}},{"child":{"koboGenreId":"101904","koboGenreName":"漫画(コミック)","genreLevel":2}},{"child":{"koboGenreId":"101905","koboGenreName":"ビジネス・経済・就職","genreLevel":2}},{"child":{"koboGenreId":"101906","koboGenreName":"語学・学習参考書・資格","genreLevel":2}},{"child":{"koboGenreId":"101907","koboGenreName":"人文・思想・社会","genreLevel":2}},{"child":{"koboGenreId":"101908","koboGenreName":"科学・医学・技術","genreLevel":2}},{"child":{"koboGenreId":"101909","koboGenreName":"美容・暮らし・健康・料理","genreLevel":2}},{"child":{"koboGenreId":"101910","koboGenreName":"ホビー・スポーツ・美術","genreLevel":2}},{"child":{"koboGenreId":"101911","koboGenreName":"旅行・留学・アウトドア","genreLevel":2}},{"child":{"koboGenreId":"101912","koboGenreName":"PC・システム開発","genreLevel":2}},{"child":{"koboGenreId":"101913","koboGenreName":"エンターテインメント","genreLevel":2}},{"child":{"koboGenreId":"101914","koboGenreName":"ノンフィクション","genreLevel":2}},{"child":{"koboGenreId":"101915","koboGenreName":"写真集","genreLevel":2}},{"child":{"koboGenreId":"101916","koboGenreName":"絵本・児童書","genreLevel":2}},{"child":{"koboGenreId":"101940","koboGenreName":"ボーイズラブ(BL)・ティーンズラブ(TL)","genreLevel":2}},{"child":{"koboGenreId":"101950","koboGenreName":"雑誌","genreLevel":2}},{"child":{"koboGenreId":"101970","koboGenreName":"洋書","genreLevel":2}}],"parents":[]}
@@ -17,6 +17,10 @@ describe RWS::Books::Genre do
17
17
  JSON.parse(fixture('books/genre_search.json'))
18
18
  end
19
19
 
20
+ after do
21
+ RWS::Books::Genre.instance_variable_set('@repository', {})
22
+ end
23
+
20
24
  before do
21
25
  @expected_request = stub_request(:get, endpoint).
22
26
  with(:query => expected_query).
@@ -0,0 +1,55 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+ require 'rakuten_web_service'
5
+
6
+ describe RakutenWebService::Kobo::Ebook do
7
+ let(:endpoint) { 'https://app.rakuten.co.jp/services/api/Kobo/EbookSearch/20131010' }
8
+ let(:affiliate_id) { 'dummy_affiliate_id' }
9
+ let(:application_id) { 'dummy_application_id' }
10
+ let(:expected_query) do
11
+ {
12
+ :affiliateId => affiliate_id,
13
+ :applicationId => application_id,
14
+ :title => 'Ruby'
15
+ }
16
+ end
17
+
18
+ before do
19
+ RakutenWebService.configuration do |c|
20
+ c.affiliate_id = affiliate_id
21
+ c.application_id = application_id
22
+ end
23
+ end
24
+
25
+ describe '.search' do
26
+ before do
27
+ response = JSON.parse(fixture('kobo/ebook_search_with_Ruby.json'))
28
+ @expected_request = stub_request(:get, endpoint).
29
+ with(:query => expected_query).to_return(:body => response.to_json)
30
+ end
31
+
32
+ specify 'call endpoint when accessing results' do
33
+ ebooks = RakutenWebService::Kobo::Ebook.search(:title => 'Ruby')
34
+ expect(@expected_request).to_not have_been_made
35
+
36
+ ebook = ebooks.first
37
+ expect(@expected_request).to have_been_made.once
38
+ expect(ebook).to be_a(RWS::Kobo::Ebook)
39
+ end
40
+ end
41
+
42
+ describe '#genre' do
43
+ let(:response) { JSON.parse(fixture('kobo/ebook_search_with_Ruby.json')) }
44
+
45
+ specify 'respond Kobo::Genre object' do
46
+ stub_request(:get, endpoint).with(:query => expected_query).
47
+ to_return(:body => response.to_json)
48
+
49
+ expected_item = response['Items'][0]['Item']
50
+ RakutenWebService::Kobo::Genre.should_receive('new').with(expected_item['koboGenreId'])
51
+
52
+ RakutenWebService::Kobo::Ebook.search(:title => 'Ruby').first.genre
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,63 @@
1
+ require 'spec_helper'
2
+ require 'rakuten_web_service'
3
+
4
+ describe RWS::Kobo::Genre do
5
+ let(:endpoint) { 'https://app.rakuten.co.jp/services/api/Kobo/GenreSearch/20131010' }
6
+ let(:affiliate_id) { 'dummy_affiliate_id' }
7
+ let(:application_id) { 'dummy_application_id' }
8
+ let(:genre_id) { '101' }
9
+ let(:expected_query) do
10
+ {
11
+ :affiliateId => affiliate_id,
12
+ :applicationId => application_id,
13
+ :koboGenreId => genre_id
14
+ }
15
+ end
16
+ let(:expected_json) do
17
+ JSON.parse(fixture('kobo/genre_search.json'))
18
+ end
19
+
20
+ before do
21
+ @expected_request = stub_request(:get, endpoint).
22
+ with(:query => expected_query).
23
+ to_return(:body => expected_json)
24
+
25
+ RakutenWebService.configuration do |c|
26
+ c.affiliate_id = affiliate_id
27
+ c.application_id = application_id
28
+ end
29
+ end
30
+
31
+ describe '.search' do
32
+ before do
33
+ @genre = RWS::Kobo::Genre.search(:koboGenreId => genre_id).first
34
+ end
35
+
36
+ specify 'call the endpoint once' do
37
+ expect(@expected_request).to have_been_made.once
38
+ end
39
+ end
40
+
41
+ describe '#search' do
42
+ before do
43
+ stub_request(:get, endpoint).with(:query => expected_query).
44
+ to_return(:body => expected_json)
45
+ end
46
+
47
+ context 'Without arguments' do
48
+ specify 'should call RWS::Kobo::Ebook.search with specifying genre id' do
49
+ expect(RWS::Kobo::Ebook).to receive(:search).with(RWS::Kobo::Genre.genre_id_key => genre_id)
50
+
51
+ RWS::Kobo::Genre.root.search
52
+ end
53
+ end
54
+ context 'With arguments' do
55
+ specify 'should call RWS::Kobo::Ebook.search with given arguments and genre id' do
56
+ options = { title: 'Ruby' }
57
+ expect(RWS::Kobo::Ebook).to receive(:search).with(:title => 'Ruby', RWS::Kobo::Genre.genre_id_key => genre_id)
58
+
59
+ RWS::Kobo::Genre.root.search(options)
60
+ end
61
+ end
62
+ end
63
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rakuten_web_service
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tatsuya Sato
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-15 00:00:00.000000000 Z
11
+ date: 2014-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -137,12 +137,16 @@ files:
137
137
  - lib/rakuten_web_service/books/total.rb
138
138
  - lib/rakuten_web_service/client.rb
139
139
  - lib/rakuten_web_service/configuration.rb
140
+ - lib/rakuten_web_service/genre.rb
140
141
  - lib/rakuten_web_service/ichiba.rb
141
142
  - lib/rakuten_web_service/ichiba/genre.rb
142
143
  - lib/rakuten_web_service/ichiba/item.rb
143
144
  - lib/rakuten_web_service/ichiba/product.rb
144
145
  - lib/rakuten_web_service/ichiba/ranking.rb
145
146
  - lib/rakuten_web_service/ichiba/shop.rb
147
+ - lib/rakuten_web_service/kobo.rb
148
+ - lib/rakuten_web_service/kobo/ebook.rb
149
+ - lib/rakuten_web_service/kobo/genre.rb
146
150
  - lib/rakuten_web_service/resource.rb
147
151
  - lib/rakuten_web_service/search_result.rb
148
152
  - lib/rakuten_web_service/version.rb
@@ -160,6 +164,8 @@ files:
160
164
  - spec/fixtures/ichiba/item_search_with_keyword_Ruby.json
161
165
  - spec/fixtures/ichiba/product_search.json
162
166
  - spec/fixtures/ichiba/ranking_search.json
167
+ - spec/fixtures/kobo/ebook_search_with_Ruby.json
168
+ - spec/fixtures/kobo/genre_search.json
163
169
  - spec/rakuten_web_service/books/book_spec.rb
164
170
  - spec/rakuten_web_service/books/cd_spec.rb
165
171
  - spec/rakuten_web_service/books/dvd_spec.rb
@@ -176,6 +182,8 @@ files:
176
182
  - spec/rakuten_web_service/ichiba/product_search_spec.rb
177
183
  - spec/rakuten_web_service/ichiba/ranking_spec.rb
178
184
  - spec/rakuten_web_service/ichiba/shop_spec.rb
185
+ - spec/rakuten_web_service/kobo/ebook_spec.rb
186
+ - spec/rakuten_web_service/kobo/genre_spec.rb
179
187
  - spec/spec_helper.rb
180
188
  - spec/support/fixture_suppot.rb
181
189
  homepage: http://webservice.rakuten.co.jp/
@@ -216,6 +224,8 @@ test_files:
216
224
  - spec/fixtures/ichiba/item_search_with_keyword_Ruby.json
217
225
  - spec/fixtures/ichiba/product_search.json
218
226
  - spec/fixtures/ichiba/ranking_search.json
227
+ - spec/fixtures/kobo/ebook_search_with_Ruby.json
228
+ - spec/fixtures/kobo/genre_search.json
219
229
  - spec/rakuten_web_service/books/book_spec.rb
220
230
  - spec/rakuten_web_service/books/cd_spec.rb
221
231
  - spec/rakuten_web_service/books/dvd_spec.rb
@@ -232,5 +242,7 @@ test_files:
232
242
  - spec/rakuten_web_service/ichiba/product_search_spec.rb
233
243
  - spec/rakuten_web_service/ichiba/ranking_spec.rb
234
244
  - spec/rakuten_web_service/ichiba/shop_spec.rb
245
+ - spec/rakuten_web_service/kobo/ebook_spec.rb
246
+ - spec/rakuten_web_service/kobo/genre_spec.rb
235
247
  - spec/spec_helper.rb
236
248
  - spec/support/fixture_suppot.rb