fireside-finder 0.0.12 → 0.1.1
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 +12 -2
- data/lib/fireside-finder/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7fa8bc5f28f8bbe18a9ee4af634a13ca8a948677
|
|
4
|
+
data.tar.gz: 55e30d5b503f9aed4851228a1cdb8dc472cca211
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e3d55143679be0b1b970961764ef69f49aca7aa5398457670d506d782ed427155daf2d9ff8c16c5327edf208bb8d6ff2d9e2c00c2276464402a649c8ea7c193
|
|
7
|
+
data.tar.gz: fb188e3f53ef8aece0629df87292eac0a78d986702b4a4968ebc5da59f77b419697011bf8af4e179e56f28c4d9fa20469c780fa3945734579a6f0e58aab6f918
|
data/README.md
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
This is a simple ruby gem to find local Fireside Gatherings for Hearthstone. Information is scraped from http://us.battle.net/hearthstone/en/fireside-gatherings
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
|
-
This gem
|
|
6
|
+
This gem has outside dependencies see [#Dependencies](https://github.com/reifnotreef/fireside-finder#Dependencies).
|
|
7
7
|
|
|
8
|
-
$ gem install fireside-finder
|
|
8
|
+
$ gem install fireside-finder
|
|
9
9
|
|
|
10
10
|
## Usage
|
|
11
11
|
|
|
@@ -13,6 +13,16 @@ Once installed simply run fireside-finder in your cli and follow the prompts.
|
|
|
13
13
|
|
|
14
14
|
$ fireside-finder
|
|
15
15
|
|
|
16
|
+
## Dependencies
|
|
17
|
+
This gem require the following external gems:
|
|
18
|
+
[bundler](https://rubygems.org/gems/bundler)
|
|
19
|
+
[rake](https://rubygems.org/gems/rake)
|
|
20
|
+
[rspec](https://rubygems.org/gems/rspec)
|
|
21
|
+
[pry](https://rubygems.org/gems/pry)
|
|
22
|
+
[nokogiri](https://rubygems.org/gems/nokogiri)
|
|
23
|
+
[geocoder](https://rubygems.org/gems/geocoder)
|
|
24
|
+
[httparty](https://rubygems.org/gems/httparty)
|
|
25
|
+
|
|
16
26
|
## Development
|
|
17
27
|
|
|
18
28
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|