compare_supermarkets 0.1.9 → 0.1.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21d751bb1877f2aec5c1b3f80dcf680b41006b4e2be969d0fc31f9d6c1ae390d
4
- data.tar.gz: b0daf658c23f131b73f159af94b50de565e210e6e91b71e69bc495ac1dd1a36f
3
+ metadata.gz: 0b0c84b034570a1efac9f75daa7892e14a3d0e25886b4149d8d5b5e3457e824d
4
+ data.tar.gz: 1f4c985dbd6509b98dc24aad9f65a791d0c66ce0efb883990f4fb569fe805118
5
5
  SHA512:
6
- metadata.gz: 94187db55938eaca84e23d48616391e182f64d90d3c148911a68db6de43076c6d7afb108474c77f2e83cb1bf7b8ae7f76374d68108a1c393758ab6774b39f67a
7
- data.tar.gz: cbd9fbb88dfcafb951950ca7b5be1739be62849e2247a739d8d00eb2f1c950733d3a0d8f00f2b5bbcb527ec0dab28d6798cc5926bc40286c5b1abf5f741c3b94
6
+ metadata.gz: 616cfa541f208b525c1009d9d571ff9622466004027a54f9ae210489ccdfe13c0b42060f95171b55ba756bf9b0f7dd99006725cb60669232d71df89e05b52dc0
7
+ data.tar.gz: d50413468908393e1ac6d8965d99e9ce13fc15c2c2299a282f859c87cc78f7150dbf84e51bd9661c9b79395e0621cb123f2415ab3e87e476ae34f8b7408f634d
data/bin/setup CHANGED
@@ -3,4 +3,6 @@
3
3
  set -euo pipefail
4
4
  IFS=$'\n\t'
5
5
 
6
- bundle install
6
+ bundle install
7
+ gem install selenium-webdriver #required for watir to work
8
+ brew install --cask chromedriver #required for watir to work
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CompareSupermarkets
4
- VERSION = "0.1.9"
4
+ VERSION = "0.1.10"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compare_supermarkets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Berger Howes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-27 00:00:00.000000000 Z
11
+ date: 2021-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -80,47 +80,24 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- description: |
84
- Will search Woolworths and Coles online stores for prices based on an input search parameter
85
- # CompareSupermarkets
86
-
87
- Ever wondered 'I wonder if my shampoo is cheaper at Coles or Woolworths...?' ? But can't be
88
- bothered searching both websites and comparing? Well that's what this gem does for you. Simply
89
- install and follow the prompts.
90
-
91
- ## Installation
92
-
93
- Add this line to your application's Gemfile:
94
-
95
- ```ruby
96
- gem 'compare_supermarkets'
97
- ```
98
-
99
- And then execute:
100
-
101
- $ bundle install
102
-
103
- Or install it yourself as:
104
-
105
- $ gem install compare_supermarkets
106
-
107
- ## Usage
108
-
109
- To use compare_supermarkets call $ 'compare_supermarkets'
110
- and follow the prompts. The more specific you are the faster the search results appear
111
- and there will be less items to compare.
112
-
113
-
114
- ## Contributing
115
-
116
- Bug reports and pull requests are welcome on GitHub at https://github.com/happymelonbox/compare_supermarkets
117
-
118
- ## License
119
-
120
- The gem is available as open source under the terms of the [MIT License](https://opensource.org
121
- /licenses/MIT).
83
+ - !ruby/object:Gem::Dependency
84
+ name: watir
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 6.19.1
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 6.19.1
97
+ description: Will search Woolworths and Coles online stores for prices based on an
98
+ input search parameter
122
99
  email:
123
- - howes.j.j@gmail.com
100
+ - happymelonbox@gmail.com
124
101
  executables:
125
102
  - compare_supermarkets
126
103
  extensions: []