shoe_scraper 0.0.2 → 0.0.3

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 +42 -0
  3. metadata +46 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0013ec50db5ffc55074dc153acae7549144758dd99d0e1b3e514bfc4a59776bf
4
- data.tar.gz: 7134d483a3e1238086f3768668627660d024b6cfb51aa018b294780a0f475500
3
+ metadata.gz: 63fdf59665bd684fd9de0a7891f51232dbdc9a46a2def289a587135a9162ea8e
4
+ data.tar.gz: 2b06a58892159ad52dd62176873a409f2c0b2c1a37a39ac75865cf4c41949a8d
5
5
  SHA512:
6
- metadata.gz: fac83ae0fab784e5bfa7c8c679be85b8ecbe18f4aa6e21ef308cae3fe7b60b1286e331b39dfcbd90858c824d68f5e71d11451da27d46450fe51cc831e1a1eb93
7
- data.tar.gz: 3af926b70d4b31b82e47d3c50f2bb2dff7cc403502a2f27cc961ebfd4171a4b8a6f49bc4bf6508b438a81dd3c4d3f4af29a7d70c00da7ec0c782cd36cc036648
6
+ metadata.gz: db15d1b88f7b42567a0c11c76962d0fb5f77541db9fd15ac514c70c46bdc8318d2ca0b8e5aa13e49c35daafd6672b1c8544d7255283ea5a17efde59064a9a9ae
7
+ data.tar.gz: 0ca833697ffcdeb2a4428857439a468f31b7233aed8a7038effef2f1ae897cc987fc60c9c33f93be5d231455f4f47ae8376c96465d285503e156564a76afe6d9
@@ -0,0 +1,42 @@
1
+ # ShoeScraper
2
+
3
+ ## Installation
4
+
5
+ Add this line to your application's Gemfile:
6
+
7
+ ```ruby
8
+ gem 'shoe_scraper'
9
+ ```
10
+
11
+ And then execute:
12
+
13
+ $ bundle install
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install shoe_scraper
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ 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.
26
+
27
+ 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).
28
+
29
+ ## Contributing
30
+
31
+ 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).
32
+
33
+
34
+ ## License
35
+
36
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
37
+
38
+ ## Code of Conduct
39
+
40
+ 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).
41
+
42
+
metadata CHANGED
@@ -1,7 +1,7 @@
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.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Uriah Harston
@@ -9,7 +9,49 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2010-04-28 00:00:00.000000000 Z
12
- dependencies: []
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'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
13
55
  description: A gem that scrapes available sneaker inventory from the indexpdx.com
14
56
  shoe consignment website.
15
57
  email: uharston@gmail.com
@@ -17,6 +59,7 @@ executables: []
17
59
  extensions: []
18
60
  extra_rdoc_files: []
19
61
  files:
62
+ - "./README.md"
20
63
  - lib/Jordan_Edition.rb
21
64
  - lib/brand.rb
22
65
  - lib/scraper.rb
@@ -35,7 +78,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
35
78
  requirements:
36
79
  - - ">="
37
80
  - !ruby/object:Gem::Version
38
- version: '0'
81
+ version: 2.5.0
39
82
  required_rubygems_version: !ruby/object:Gem::Requirement
40
83
  requirements:
41
84
  - - ">="