shoe_scraper 0.0.2 → 0.0.7

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +56 -0
  3. metadata +50 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0013ec50db5ffc55074dc153acae7549144758dd99d0e1b3e514bfc4a59776bf
4
- data.tar.gz: 7134d483a3e1238086f3768668627660d024b6cfb51aa018b294780a0f475500
3
+ metadata.gz: 88c0051f34e71a729d23339e6d0fc217668e086d24d37d367a6ea7d663f45a3c
4
+ data.tar.gz: 6420bf85a7d632d6a62e13fe15f861059a1d74aa8209575b6fea7d51aa969183
5
5
  SHA512:
6
- metadata.gz: fac83ae0fab784e5bfa7c8c679be85b8ecbe18f4aa6e21ef308cae3fe7b60b1286e331b39dfcbd90858c824d68f5e71d11451da27d46450fe51cc831e1a1eb93
7
- data.tar.gz: 3af926b70d4b31b82e47d3c50f2bb2dff7cc403502a2f27cc961ebfd4171a4b8a6f49bc4bf6508b438a81dd3c4d3f4af29a7d70c00da7ec0c782cd36cc036648
6
+ metadata.gz: 1cbd53fc291d40a995a80536cfafb3ebb5db67510012746e3a6930c08449346abe2cbec2a6257a23a8fedb418b5b9885cdb843ad55c9c84c0f455329555eac7c
7
+ data.tar.gz: 5d5a46b8da255f3c7e8a0f4de63c1f6549399f657adfe77eecbafac76356e6cefd4aac9e1d2cf1da85ff75a4d7a099a481387cb13707781a94d9a93c71f44f74
@@ -0,0 +1,56 @@
1
+ # ShoeScraper
2
+
3
+ A simple CLI application that scrapes available inventory of limited edition sneakers from indexpdx.com.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'shoe_scraper'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install shoe_scraper
20
+
21
+ ## Usage
22
+
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!
36
+
37
+ ## Development
38
+
39
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
40
+
41
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
42
+
43
+ ## Contributing
44
+
45
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/shoe_scraper. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/shoe_scraper/blob/master/CODE_OF_CONDUCT.md).
46
+
47
+
48
+ ## License
49
+
50
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
51
+
52
+ ## Code of Conduct
53
+
54
+ Everyone interacting in the ShoeScraper project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/uharston/shoe_scraper/blob/master/CODE_OF_CONDUCT.md).
55
+
56
+
metadata CHANGED
@@ -1,22 +1,66 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shoe_scraper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Uriah Harston
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2010-04-28 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2020-11-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '12.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '12.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: nokogiri
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: '1.10'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: '1.10'
41
+ - !ruby/object:Gem::Dependency
42
+ name: colorize
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 0.8.1
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 0.8.1
13
55
  description: A gem that scrapes available sneaker inventory from the indexpdx.com
14
- shoe consignment website.
56
+ website for sneaker collectors.
15
57
  email: uharston@gmail.com
16
58
  executables: []
17
59
  extensions: []
18
- extra_rdoc_files: []
60
+ extra_rdoc_files:
61
+ - README.md
19
62
  files:
63
+ - README.md
20
64
  - lib/Jordan_Edition.rb
21
65
  - lib/brand.rb
22
66
  - lib/scraper.rb
@@ -35,7 +79,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
35
79
  requirements:
36
80
  - - ">="
37
81
  - !ruby/object:Gem::Version
38
- version: '0'
82
+ version: 2.5.0
39
83
  required_rubygems_version: !ruby/object:Gem::Requirement
40
84
  requirements:
41
85
  - - ">="