rakuten_securities_scraper 0.1.1 → 0.1.2
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 +5 -7
- data/lib/rakuten_securities_scraper/version.rb +1 -1
- data/rakuten_securities_scraper.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58abe4bab9e94f8c492e3f38a056185969cce8aac25e098e515d979c0c68c4b3
|
|
4
|
+
data.tar.gz: dbeec047ad6244584a544625cbe08c17fad653a766053c65c01146ca77a7a555
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6aa1f731ad94c1a624664660d59a41c318deffc15ca84b8a4d16a7851b9a9ae230043f5b1ebd5be4156ae19993770c8a699cb5907f20d91a91153239d6c33354
|
|
7
|
+
data.tar.gz: e3306e55678301415b354006c97f8d3aba27c040d12e47ff3780a96865741c75e893bd27c9fb0a2c169aed00e866e7f7c4dc3238c024b3bafe426bea6921eb8e
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
# RakutenSecuritiesScraper
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
Rakuten Securities Scraper / 楽天証券スクレイパー
|
|
4
|
+
This gem is providing scraper methods for everyone to be able to make stock trading applications without writing scraper codes.
|
|
6
5
|
|
|
7
6
|
## Installation
|
|
8
7
|
|
|
@@ -22,16 +21,15 @@ Or install it yourself as:
|
|
|
22
21
|
|
|
23
22
|
## Usage
|
|
24
23
|
|
|
25
|
-
ruby
|
|
24
|
+
```ruby
|
|
26
25
|
include RakutenSecuritiesScraper
|
|
27
26
|
data = RakutenScraper.new($LOGIN_ID, $LOGIN_PW)
|
|
28
27
|
|
|
29
|
-
|
|
30
28
|
## Get Today's Trade History
|
|
31
|
-
data.todays_history
|
|
29
|
+
puts data.todays_history
|
|
32
30
|
|
|
33
31
|
## Get All Trade History
|
|
34
|
-
data.all_history
|
|
32
|
+
puts data.all_history
|
|
35
33
|
|
|
36
34
|
```
|
|
37
35
|
|
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.email = ["fumitake.kawasaki@el-soul.com"]
|
|
8
8
|
|
|
9
9
|
spec.summary = "楽天証券スクレイパー / Rakuten Securities Scraper"
|
|
10
|
-
spec.description = "
|
|
10
|
+
spec.description = "This gem is providing scraper methods for everyone to be able to make stock trading applications without writing scraper codes."
|
|
11
11
|
spec.homepage = "https://github.com/elsoul/rakuten_securities"
|
|
12
12
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
|
|
13
13
|
spec.license = "MIT"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rakuten_securities_scraper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- FUMI-POPPIN
|
|
@@ -10,7 +10,8 @@ bindir: exe
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2020-05-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
13
|
+
description: This gem is providing scraper methods for everyone to be able to make
|
|
14
|
+
stock trading applications without writing scraper codes.
|
|
14
15
|
email:
|
|
15
16
|
- fumitake.kawasaki@el-soul.com
|
|
16
17
|
executables: []
|