tap_rated_new_beers 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 28297e4a85b71dd30b6cc90a9331c2c3540e824e05b4aab4b84263076c15729c
4
+ data.tar.gz: fa25a44ea04dbcb3f746e2156535aa587531f90ffda3a732660c169a733e7d36
5
+ SHA512:
6
+ metadata.gz: d9a22860b0adb338edcb0ab7d45c35ab6c5a8e5ba50673eb786940cc21697ba823e59e1c7684c11e36eced63b3ba332deac83b08841504ca4f9f6437d315ce39
7
+ data.tar.gz: 5dc7cd01a2f13ed8dba4e821e653ecc36c9294c4265c2183c847944b1f409a8c5a6b8baf6d5913e8c543c9df2d46b0ee42bbd280b312e5e4e796c893bc846a6a
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.6.1
7
+ before_install: gem install bundler -v 2.0.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at albrown07@mac.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in tap_rated_new_beers.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,70 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ tap_rated_new_beers (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ aruba (0.14.8)
10
+ childprocess (>= 0.6.3, < 1.1.0)
11
+ contracts (~> 0.9)
12
+ cucumber (>= 1.3.19)
13
+ ffi (~> 1.9)
14
+ rspec-expectations (>= 2.99)
15
+ thor (~> 0.19)
16
+ backports (3.12.0)
17
+ builder (3.2.3)
18
+ childprocess (1.0.1)
19
+ rake (< 13.0)
20
+ contracts (0.16.0)
21
+ cucumber (3.1.2)
22
+ builder (>= 2.1.2)
23
+ cucumber-core (~> 3.2.0)
24
+ cucumber-expressions (~> 6.0.1)
25
+ cucumber-wire (~> 0.0.1)
26
+ diff-lcs (~> 1.3)
27
+ gherkin (~> 5.1.0)
28
+ multi_json (>= 1.7.5, < 2.0)
29
+ multi_test (>= 0.1.2)
30
+ cucumber-core (3.2.1)
31
+ backports (>= 3.8.0)
32
+ cucumber-tag_expressions (~> 1.1.0)
33
+ gherkin (~> 5.0)
34
+ cucumber-expressions (6.0.1)
35
+ cucumber-tag_expressions (1.1.1)
36
+ cucumber-wire (0.0.1)
37
+ diff-lcs (1.3)
38
+ ffi (1.10.0)
39
+ gherkin (5.1.0)
40
+ multi_json (1.13.1)
41
+ multi_test (0.1.2)
42
+ rake (10.5.0)
43
+ rspec (3.8.0)
44
+ rspec-core (~> 3.8.0)
45
+ rspec-expectations (~> 3.8.0)
46
+ rspec-mocks (~> 3.8.0)
47
+ rspec-core (3.8.0)
48
+ rspec-support (~> 3.8.0)
49
+ rspec-expectations (3.8.2)
50
+ diff-lcs (>= 1.2.0, < 2.0)
51
+ rspec-support (~> 3.8.0)
52
+ rspec-mocks (3.8.0)
53
+ diff-lcs (>= 1.2.0, < 2.0)
54
+ rspec-support (~> 3.8.0)
55
+ rspec-support (3.8.0)
56
+ thor (0.20.3)
57
+
58
+ PLATFORMS
59
+ ruby
60
+
61
+ DEPENDENCIES
62
+ aruba
63
+ bundler (~> 2.0)
64
+ cucumber
65
+ rake (~> 10.0)
66
+ rspec (~> 3.2)
67
+ tap_rated_new_beers!
68
+
69
+ BUNDLED WITH
70
+ 2.0.1
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 Alicia Santiago
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Minajeanne
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/NOTES.md ADDED
@@ -0,0 +1,9 @@
1
+ Here's the plan:
2
+
3
+ 1. Scrape from BeerAdvocate and collect top 10 NEW beers
4
+ 2. Display beer: name, brewery, style, abv, ratings, & score
5
+ 3. Prompt user to select a beer to learn more about it;
6
+ Once selected, individual beer will show: location, url, availability, & notes
7
+ 4. Run menu again
8
+ 5. Prompt user to either select another beer or exit
9
+ 6. Exit message
data/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # TapRatedNewBeers
2
+
3
+ This Ruby Gem provides a CLI to view <a href="https://www.beeradvocate.com/lists/new/">Beeradvocate</a>'s top 50 new beers. Users can select a beer to learn more about it and directly access the brewery's website.
4
+
5
+ ## Installation
6
+
7
+ You can install this gem by running `gem install tap_rated_new_beers` in your terminal.
8
+
9
+
10
+
11
+ ## Usage
12
+
13
+ Run `tap_rated_new_beers` after installing the gem.
14
+
15
+
16
+ ## Development
17
+
18
+ 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.
19
+
20
+ 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).
21
+
22
+ ## Contributing
23
+
24
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/tap_rated_new_beers. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
25
+
26
+ ## License
27
+
28
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
29
+
30
+ ## Code of Conduct
31
+
32
+ Everyone interacting in the TapRatedNewBeers project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/tap_rated_new_beers/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ #require "bundler/setup"
4
+ require_relative '../lib/tap_rated_new_beers.rb'
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require_relative '../lib/tap_rated_new_beers.rb'
4
+ require 'bundler/setup'
5
+
6
+ TapRatedNewBeers::CLI.new.call
@@ -0,0 +1,8 @@
1
+ require 'pry'
2
+ require 'nokogiri'
3
+ require 'open-uri'
4
+
5
+ require_relative '../lib/tap_rated_new_beers/scraper'
6
+ require_relative '../lib/tap_rated_new_beers/beer'
7
+ require_relative '../lib/tap_rated_new_beers/cli'
8
+ require_relative '../lib/tap_rated_new_beers/version'
@@ -0,0 +1,19 @@
1
+ class TapRatedNewBeers::Beer
2
+ attr_accessor :name, :rank, :beer_url, :brewery, :style, :abv, :ratings, :score, :location, :brewery_url, :availability, :notes
3
+
4
+ @@all = []
5
+
6
+ def initialize(name = nil)
7
+ @name = name
8
+ @@all << self
9
+ end
10
+
11
+ def self.all
12
+ @@all
13
+ end
14
+
15
+ def open_in_browser
16
+ system("open '#{brewery_url}'")
17
+ end
18
+ end
19
+ # end of Class
@@ -0,0 +1,99 @@
1
+ class TapRatedNewBeers::CLI
2
+
3
+ def call
4
+ TapRatedNewBeers::Scraper.scrape_index_page
5
+ list_beers
6
+ end
7
+
8
+ def list_beers
9
+ puts "Please wait while we brew your beers...".blue.bold
10
+ sleep(4)
11
+ puts ""
12
+ puts "Top Rated Beers: New".red.bold
13
+ puts ""
14
+ display_list
15
+ end
16
+
17
+ def display_list
18
+ TapRatedNewBeers::Beer.all.each do |beer|
19
+ puts "#{beer.rank}. #{beer.name}".blue.bold
20
+ end
21
+ select_beer
22
+ end
23
+
24
+ def select_beer
25
+ puts "Select the rank number of the beer you'd like to sample:".red.bold
26
+ input = gets.strip
27
+ if input.to_i.between?(1, TapRatedNewBeers::Beer.all.length)
28
+
29
+ beer = TapRatedNewBeers::Beer.all.find do |beer|
30
+ beer.rank == input
31
+ end
32
+
33
+ TapRatedNewBeers::Scraper.scrape_beer_page(beer)
34
+ print_beer_info(beer)
35
+
36
+ else
37
+ puts ""
38
+ puts "Have you been drinking? Please try again.".red.bold
39
+ puts ""
40
+ display_list
41
+ end
42
+ end
43
+
44
+
45
+ def print_beer_info(beer)
46
+ puts ""
47
+ puts "::::::::::: #{beer.name} |_| Score: #{beer.score}/5 :::::::::::".blue.bold
48
+ puts ""
49
+ puts "Brewery: #{beer.brewery}".blue.bold
50
+ puts "Location: #{beer.location}".blue.bold
51
+ puts "Website: #{beer.brewery_url}".blue.bold
52
+ puts "Style: #{beer.style}".blue.bold
53
+ puts "#{beer.abv}".blue.bold
54
+ puts "Ratings: #{beer.ratings}".blue.bold
55
+ puts "#{beer.availability}".blue.bold
56
+ puts "::::::::::::::: Description ::::::::::::::::::".blue.bold
57
+ puts ""
58
+ puts "#{beer.notes}".blue.bold
59
+ puts ""
60
+ puts "::::::::::::::::::::::::::::::::::::::::::::::".blue.bold
61
+ puts "Would you like to visit this brewery's website? Y or N".red.bold
62
+ input = gets.strip.downcase
63
+
64
+ case input
65
+ when "y"
66
+ beer.open_in_browser
67
+ select_another
68
+ when "n"
69
+ select_another
70
+ else
71
+ puts ""
72
+ puts "Have you been drinking? Please try again.".red.bold
73
+ puts ""
74
+ display_list
75
+ end
76
+ end
77
+
78
+ def select_another
79
+ puts "Would you like to sample another beer? Y or N".red.bold
80
+ input = gets.strip.downcase
81
+
82
+ case input
83
+ when "y"
84
+ display_list
85
+ when "n"
86
+ exit_cli
87
+ else
88
+ puts ""
89
+ puts "Have you been drinking? Please try again.".red.bold
90
+ puts ""
91
+ display_list
92
+ end
93
+ end
94
+
95
+ def exit_cli
96
+ puts "Happy Drinking!".red.bold
97
+ end
98
+ end
99
+ # end of Class
@@ -0,0 +1,42 @@
1
+ class TapRatedNewBeers::Scraper
2
+
3
+ def self.index_url
4
+ Nokogiri::HTML(open("https://www.beeradvocate.com/lists/new/"))
5
+ end
6
+
7
+ def self.scrape_index_page
8
+ table_row_nodes = self.index_url.css("table").css("tr")
9
+ table_row_nodes = table_row_nodes.slice(2, 50)
10
+
11
+ table_row_nodes.each do |beer_row|
12
+ rank = beer_row.css("td")[0].text
13
+ name = beer_row.css("td")[1].css("a").first.text
14
+ beer_url = beer_row.css("td")[1].css("a").first.attributes["href"].value
15
+
16
+ temp_beer = TapRatedNewBeers::Beer.new(name)
17
+ temp_beer.rank = rank
18
+ temp_beer.beer_url = "https://www.beeradvocate.com"+ beer_url
19
+ end
20
+ end
21
+
22
+ def self.scrape_beer_page(beer)
23
+ beer_page = Nokogiri::HTML(open(beer.beer_url))
24
+
25
+ beer.score = beer_page.css("div#score_box").css("span.BAscore_big").css("span.ba-ravg").text
26
+ beer.ratings = beer_page.css("div#score_box").css("span.ba-ratings").text
27
+ beer.style = beer_page.css("div#info_box.break").css("a")[4].text
28
+ beer.brewery = beer_page.css("div#info_box.break").css("a")[0].text
29
+ beer.location = beer_page.css("div#info_box.break").css("a")[1].text + ", " + beer_page.css("div#info_box.break").css("a")[2].text
30
+ beer.brewery_url = beer_page.css("div#info_box.break").css("a")[3].attributes["href"].value
31
+ array = beer_page.css("div#info_box.break").text.split("\n\n")
32
+ array.find do |phrase|
33
+ if phrase.include?("%")
34
+ beer.abv = phrase
35
+ elsif phrase.include?("Availability")
36
+ beer.availability = phrase
37
+ end
38
+ end
39
+ beer.notes = array.last
40
+ end
41
+ end
42
+ # end of Class
@@ -0,0 +1,3 @@
1
+ module TapRatedNewBeers
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,9 @@
1
+ require 'pry'
2
+ require 'nokogiri'
3
+ require 'open-uri'
4
+ require 'colorize'
5
+
6
+ require_relative 'tap_rated_new_beers/version.rb'
7
+ require_relative 'tap_rated_new_beers/cli.rb'
8
+ require_relative 'tap_rated_new_beers/scraper.rb'
9
+ require_relative 'tap_rated_new_beers/beer.rb'
@@ -0,0 +1,47 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "tap_rated_new_beers/version"
5
+ require 'pry'
6
+ require 'colorized_string'
7
+
8
+ Gem::Specification.new do |spec|
9
+ spec.name = "tap_rated_new_beers"
10
+ spec.version = TapRatedNewBeers::VERSION
11
+ spec.authors = ["Minajeanne"]
12
+ spec.email = ["albrown07@mac.com"]
13
+
14
+ spec.summary = %q{"A ruby gem to view Beeradvocate's top 50 beers"}
15
+ spec.description = %q{"A ruby gem to view Beeradvocate's top 50 beers with the option to learn more about each beer and directly access the brewery's website"}
16
+ spec.homepage = "https://github.com/Minajeanne/tap_rated_new_beers.git"
17
+ spec.license = "MIT"
18
+
19
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
20
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
21
+ # if spec.respond_to?(:metadata)
22
+ # spec.metadata["allowed_push_host"] = "http://RubyGems.org"
23
+ #
24
+ # spec.metadata["homepage_uri"] = spec.homepage
25
+ # spec.metadata["source_code_uri"] = "https://github.com/Minajeanne/tap_rated_new_beers.git"
26
+ # else
27
+ # raise "RubyGems 2.0 or newer is required to protect against " \
28
+ # "public gem pushes."
29
+ # end
30
+
31
+ # Specify which files should be added to the gem when it is released.
32
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
33
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
34
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
35
+ end
36
+ spec.bindir = "exe"
37
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
38
+ spec.require_paths = ["lib"]
39
+
40
+ spec.add_development_dependency "bundler", "~> 2.0"
41
+ spec.add_development_dependency "rake", "~> 10.0"
42
+ spec.add_development_dependency "rspec", "~> 3.2"
43
+ spec.add_development_dependency "cucumber", "~> 1.3.20"
44
+ spec.add_development_dependency "aruba"
45
+ spec.add_development_dependency 'launchy', '~> 2.4', '>= 2.4.3'
46
+ spec.add_development_dependency 'colorize', '~> 0.8.1'
47
+ end
metadata ADDED
@@ -0,0 +1,169 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tap_rated_new_beers
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Minajeanne
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-03-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.2'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: cucumber
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 1.3.20
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 1.3.20
69
+ - !ruby/object:Gem::Dependency
70
+ name: aruba
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: launchy
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '2.4'
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: 2.4.3
93
+ type: :development
94
+ prerelease: false
95
+ version_requirements: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - "~>"
98
+ - !ruby/object:Gem::Version
99
+ version: '2.4'
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: 2.4.3
103
+ - !ruby/object:Gem::Dependency
104
+ name: colorize
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: 0.8.1
110
+ type: :development
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: 0.8.1
117
+ description: '"A ruby gem to view Beeradvocate''s top 50 beers with the option to
118
+ learn more about each beer and directly access the brewery''s website"'
119
+ email:
120
+ - albrown07@mac.com
121
+ executables: []
122
+ extensions: []
123
+ extra_rdoc_files: []
124
+ files:
125
+ - ".gitignore"
126
+ - ".rspec"
127
+ - ".travis.yml"
128
+ - CODE_OF_CONDUCT.md
129
+ - Gemfile
130
+ - Gemfile.lock
131
+ - LICENSE
132
+ - LICENSE.txt
133
+ - NOTES.md
134
+ - README.md
135
+ - Rakefile
136
+ - bin/console
137
+ - bin/setup
138
+ - bin/tap_rated_new_beers
139
+ - config/environment.rb
140
+ - lib/tap_rated_new_beers.rb
141
+ - lib/tap_rated_new_beers/beer.rb
142
+ - lib/tap_rated_new_beers/cli.rb
143
+ - lib/tap_rated_new_beers/scraper.rb
144
+ - lib/tap_rated_new_beers/version.rb
145
+ - tap_rated_new_beers.gemspec
146
+ homepage: https://github.com/Minajeanne/tap_rated_new_beers.git
147
+ licenses:
148
+ - MIT
149
+ metadata: {}
150
+ post_install_message:
151
+ rdoc_options: []
152
+ require_paths:
153
+ - lib
154
+ required_ruby_version: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - ">="
157
+ - !ruby/object:Gem::Version
158
+ version: '0'
159
+ required_rubygems_version: !ruby/object:Gem::Requirement
160
+ requirements:
161
+ - - ">="
162
+ - !ruby/object:Gem::Version
163
+ version: '0'
164
+ requirements: []
165
+ rubygems_version: 3.0.3
166
+ signing_key:
167
+ specification_version: 4
168
+ summary: '"A ruby gem to view Beeradvocate''s top 50 beers"'
169
+ test_files: []