shoe_scraper 0.0.4 → 0.0.5
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/README.md +15 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c6cb88eda4ec7d557f17e96f7091b4a73f4c384069dd9eadaa5a1ad61ec041b
|
|
4
|
+
data.tar.gz: 31f3c55a503ead108c0336d77252c9d1742902e90a3379c1e3b3c7c3c61d70c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d5938a4a925edb080d59a2ec53d348cfd58c7fa081bfa337807bac656c0845ebba9ea852717ee3ef19a141c92fd3f1cabfe9af0694c976db8adfb4630a6d513
|
|
7
|
+
data.tar.gz: 478fa2623df6177af0aa3e59ccc2a9d5b6d0b7fdecdfbe25e5f0a77ea6dc6433047e27379d0bad05c6c35230223d8eec6caae99a47662fbe4d62e7fae9fa2ec2
|
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# ShoeScraper
|
|
2
2
|
|
|
3
|
+
A simple CLI application that scrapes available inventory of limited edition sneakers from indexpdx.com.
|
|
4
|
+
|
|
3
5
|
## Installation
|
|
4
6
|
|
|
5
7
|
Add this line to your application's Gemfile:
|
|
@@ -18,7 +20,19 @@ Or install it yourself as:
|
|
|
18
20
|
|
|
19
21
|
## Usage
|
|
20
22
|
|
|
21
|
-
|
|
23
|
+
Open up a session of irb
|
|
24
|
+
|
|
25
|
+
$ irb
|
|
26
|
+
|
|
27
|
+
Then require the gem
|
|
28
|
+
|
|
29
|
+
$ require 'shoe_scraper'
|
|
30
|
+
|
|
31
|
+
Initialize the application
|
|
32
|
+
|
|
33
|
+
$ ShoeScraper.new.run
|
|
34
|
+
|
|
35
|
+
Follow the prompts and enjoy!
|
|
22
36
|
|
|
23
37
|
## Development
|
|
24
38
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shoe_scraper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Uriah Harston
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-11-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -53,7 +53,7 @@ dependencies:
|
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: 0.8.1
|
|
55
55
|
description: A gem that scrapes available sneaker inventory from the indexpdx.com
|
|
56
|
-
|
|
56
|
+
website for sneaker collectors.
|
|
57
57
|
email: uharston@gmail.com
|
|
58
58
|
executables: []
|
|
59
59
|
extensions: []
|