hungry_vegan 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 79bfae829fdaee02f7ff7378975fb5f46acbf21cdcae50f4192ff593eb888d09
4
+ data.tar.gz: 28e270f1c406242c78eafe95b0505f719a48b917169811474f06cd524d78750f
5
+ SHA512:
6
+ metadata.gz: 3ee1ec120f1a44677de17a7257edf6fb86a7e9e87340adf2e07e0b5e9b99b8f6122ba0f6002b153f09dc00004c02fdda2617b4234c85f8cf2ec797f02fb4891c
7
+ data.tar.gz: 71f35c010299799ae1be08693b6243de36bab5611144104ab3717cd75a1d23bb13a3fc742f632e7fad7eeb7478883aaed33a9361901f99d628ddee193a963d6e
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ .env
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.6.1
6
+ before_install: gem install bundler -v 2.1.4
@@ -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 leslyj2@gmail.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 [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in hungry_vegan.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "rspec", "~> 3.0"
8
+ gem "pry"
9
+ gem "dotenv"
10
+ gem "http"
11
+ gem "colorize"
@@ -0,0 +1,71 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ hungry_vegan (0.1.0)
5
+ colorize
6
+ dotenv
7
+ http
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ addressable (2.7.0)
13
+ public_suffix (>= 2.0.2, < 5.0)
14
+ coderay (1.1.3)
15
+ colorize (0.8.1)
16
+ diff-lcs (1.4.4)
17
+ domain_name (0.5.20190701)
18
+ unf (>= 0.0.5, < 1.0.0)
19
+ dotenv (2.7.6)
20
+ ffi (1.14.2)
21
+ ffi-compiler (1.0.1)
22
+ ffi (>= 1.0.0)
23
+ rake
24
+ http (4.4.1)
25
+ addressable (~> 2.3)
26
+ http-cookie (~> 1.0)
27
+ http-form_data (~> 2.2)
28
+ http-parser (~> 1.2.0)
29
+ http-cookie (1.0.3)
30
+ domain_name (~> 0.5)
31
+ http-form_data (2.3.0)
32
+ http-parser (1.2.2)
33
+ ffi-compiler
34
+ method_source (1.0.0)
35
+ pry (0.13.1)
36
+ coderay (~> 1.1)
37
+ method_source (~> 1.0)
38
+ public_suffix (4.0.6)
39
+ rake (12.3.3)
40
+ rspec (3.10.0)
41
+ rspec-core (~> 3.10.0)
42
+ rspec-expectations (~> 3.10.0)
43
+ rspec-mocks (~> 3.10.0)
44
+ rspec-core (3.10.1)
45
+ rspec-support (~> 3.10.0)
46
+ rspec-expectations (3.10.1)
47
+ diff-lcs (>= 1.2.0, < 2.0)
48
+ rspec-support (~> 3.10.0)
49
+ rspec-mocks (3.10.1)
50
+ diff-lcs (>= 1.2.0, < 2.0)
51
+ rspec-support (~> 3.10.0)
52
+ rspec-support (3.10.1)
53
+ unf (0.1.4)
54
+ unf_ext
55
+ unf_ext (0.0.7.7)
56
+
57
+ PLATFORMS
58
+ ruby
59
+
60
+ DEPENDENCIES
61
+ bundler (~> 2.0)
62
+ colorize
63
+ dotenv
64
+ http
65
+ hungry_vegan!
66
+ pry
67
+ rake (~> 12.0)
68
+ rspec (~> 3.0)
69
+
70
+ BUNDLED WITH
71
+ 2.1.4
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Lesly
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.
@@ -0,0 +1,42 @@
1
+ # Hungry Vegan
2
+
3
+ This gem uses Yelp Fusion API (https://www.yelp.com/developers/documentation/v3/get_started) to help users find vegan food by entering their zip code.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'hungry_vegan'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install hungry_vegan
20
+
21
+ ## Usage
22
+
23
+ After installation, run the gem in your CLI by executing *hungry_vegan*. Make sure to have installed the required gems beforehand by running *bundle install*.
24
+
25
+ ## Development
26
+
27
+ 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.
28
+
29
+ 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).
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/<github username>/hungry_vegan. 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/<github username>/hungry_vegan/blob/master/CODE_OF_CONDUCT.md).
34
+
35
+
36
+ ## License
37
+
38
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
39
+
40
+ ## Code of Conduct
41
+
42
+ Everyone interacting in the HungryVegan project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/<github username>/hungry_vegan/blob/master/CODE_OF_CONDUCT.md).
@@ -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
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "hungry_vegan"
5
+
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require "irb"
15
+ IRB.start(__FILE__)
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require_relative '../lib/hungry_vegan'
4
+
5
+ HungryVegan::Cli.new.greeting
@@ -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,37 @@
1
+ require_relative 'lib/hungry_vegan/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "hungry_vegan"
5
+ spec.version = HungryVegan::VERSION
6
+ spec.authors = ["Lesly"]
7
+ spec.email = ["leslyj2@gmail.com"]
8
+
9
+ spec.summary = "Vegan food finder"
10
+ spec.description = "Simple CLI app helps users find vegan food by typing in their zip code"
11
+ spec.homepage = "https://github.com/jlesly/hungry_vegan"
12
+ spec.license = "MIT"
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
14
+
15
+ spec.metadata["allowed_push_host"] = "https://rubygems.org/"
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = "https://github.com/jlesly/hungry_vegan"
19
+ spec.metadata["changelog_uri"] = "https://github.com/jlesly/hungry_vegan"
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_development_dependency "bundler", "~> 2.0"
31
+ spec.add_development_dependency "rake", "~> 12.0"
32
+ spec.add_development_dependency "pry"
33
+ spec.add_dependency "http"
34
+ spec.add_dependency "dotenv"
35
+ spec.add_dependency "colorize"
36
+ end
37
+
@@ -0,0 +1,15 @@
1
+ require_relative "hungry_vegan/version"
2
+ require_relative "hungry_vegan/api"
3
+ require_relative "hungry_vegan/cli"
4
+ require_relative "hungry_vegan/restaurant"
5
+
6
+ require "http"
7
+ require "pry"
8
+ require "dotenv/load"
9
+ require "colorize"
10
+
11
+
12
+ module HungryVegan
13
+ class Error < StandardError; end
14
+ # Your code goes here...
15
+ end
@@ -0,0 +1,22 @@
1
+ module HungryVegan
2
+
3
+ class Api
4
+
5
+ API_HOST = "https://api.yelp.com"
6
+ SEARCH_PATH = "/v3/businesses/search"
7
+ BUSINESS_PATH = "/v3/businesses/"
8
+ SEARCH_LIMIT = 15
9
+
10
+ def self.search(term, location)
11
+ url = "#{API_HOST}#{SEARCH_PATH}"
12
+ params = {
13
+ term: term,
14
+ location: location,
15
+ limit: SEARCH_LIMIT,
16
+ sort_by: "rating"
17
+ }
18
+ response = HTTP.auth("Bearer #{ENV['YELP_API_KEY']}").get(url, params: params)
19
+ response.parse
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,111 @@
1
+ module HungryVegan
2
+
3
+ class Cli
4
+ attr_accessor :restaurant_array, :zip_array, :zip
5
+
6
+ def initialize
7
+ @zip_array = []
8
+ end
9
+
10
+ def greeting
11
+ puts "\nWelcome to Hungry Vegan!\n".green
12
+ call
13
+ end
14
+
15
+ def call
16
+ puts "\nType in your 5-digit zip code to get a list of restaurants offering vegan options in your area or type 'exit' to leave the program.\n".light_blue
17
+
18
+ input = nil
19
+ input = gets.strip
20
+ yellow_lines
21
+ if input.downcase == "exit"
22
+ exit_program
23
+ exit
24
+ elsif input.length==5 && input.to_i !=0
25
+ @zip=input
26
+ get_restaurants
27
+ show_restaurants
28
+ select_restaurant
29
+ else
30
+ invalid_entry
31
+ end
32
+ main_menu_option
33
+ end
34
+
35
+ def yellow_lines
36
+ puts "------------------------------------------------------------------------------------------------------------------------------------------".yellow
37
+ puts "------------------------------------------------------------------------------------------------------------------------------------------".yellow
38
+ end
39
+
40
+ def yellow_line
41
+ puts "------------------------------------------------------------------------------------------------------------------------------------------".yellow
42
+ end
43
+
44
+ def invalid_entry
45
+ puts "\nError. Invalid entry.\n".red
46
+ end
47
+
48
+ def exit_program
49
+ puts "\n\nExiting program. Come back soon!\n\n".green
50
+ end
51
+
52
+ def get_restaurants
53
+ if @zip_array.include?(@zip)
54
+ @restaurant_array= Restaurant.get_matching_restaurants(@zip)
55
+ else
56
+ @zip_array<<@zip
57
+ @restaurant_array= Restaurant.get_restaurants_from_zip(@zip)
58
+ end
59
+ end
60
+
61
+ def show_restaurants
62
+ @restaurant_array.each.with_index(1) do |restaurant,i|
63
+ puts "#{i}.#{restaurant.name}"
64
+ end
65
+
66
+ def select_restaurant
67
+ yellow_lines
68
+ puts "\nPlease type in the number of the restaurant you would like to view\n".light_blue
69
+ puts "\nTo exit the program, enter 'exit'.\n".red
70
+ input= nil
71
+ input = gets.strip
72
+ if input.downcase == "exit"
73
+ exit_program
74
+ exit
75
+ elsif input.to_i>0 && input.to_i<=restaurant_array.size
76
+ selected_restaurant_info(input)
77
+ else
78
+ invalid_entry
79
+ select_restaurant
80
+ end
81
+ end
82
+
83
+ def selected_restaurant_info(index)
84
+ if @restaurant_array[index.to_i-1].class==Restaurant
85
+ restaurant=@restaurant_array[index.to_i-1]
86
+ end
87
+ yellow_line
88
+ puts "Here's more information:"
89
+ puts "Name: #{restaurant.name}"
90
+ puts "Rating: #{restaurant.rating}"
91
+ puts "Phone Number: #{restaurant.phone_number}"
92
+ yellow_line
93
+ end
94
+
95
+ def main_menu_option
96
+ puts "\n\nWould you like to enter another zip code? Type 'yes' or 'no'\n\n".light_blue
97
+ input = gets.strip
98
+
99
+ if input.downcase == "yes"
100
+ call
101
+ elsif input.downcase == "no"
102
+ puts "\nGoodbye. Come back soon!\n".green
103
+ else
104
+ invalid_entry
105
+ main_menu_option
106
+ end
107
+ end
108
+
109
+ end
110
+ end
111
+ end
@@ -0,0 +1,48 @@
1
+ module HungryVegan
2
+
3
+ class Restaurant
4
+
5
+ attr_accessor :id, :name, :address, :rating, :phone_number, :url, :zip, :matching_zip_codes
6
+
7
+ @@all = []
8
+
9
+ def initialize
10
+
11
+ end
12
+
13
+ def self.all
14
+ @@all
15
+ end
16
+
17
+ def self.find_or_create(attributes_hash, zip)
18
+ restaurant= self.all.find {|object| object.id ==attributes_hash["id"]}||self.create(attributes_hash, zip)
19
+ restaurant.matching_zip_codes<<zip unless restaurant.matching_zip_codes.include?(zip)
20
+ restaurant
21
+ end
22
+
23
+ def self.create(hash, zip)
24
+ restaurant = Restaurant.new
25
+ restaurant.id=hash["id"]
26
+ restaurant.name=hash["name"]
27
+ restaurant.rating=hash["rating"]
28
+ restaurant.phone_number=hash["display_phone"]
29
+ restaurant.url=hash["url"]
30
+ restaurant.matching_zip_codes= [zip]
31
+ self.all<<restaurant
32
+ restaurant
33
+ end
34
+
35
+ def self.get_restaurants_from_zip(zip)
36
+ businesses= Api.search(term="vegan", zip) ["businesses"]
37
+ businesses.collect do |business|
38
+ if business.class== Hash
39
+ Restaurant.find_or_create(business, zip)
40
+ end
41
+ end
42
+ end
43
+
44
+ def self.get_matching_restaurats(zip)
45
+ self.all.select{|r|r.matching_zip_codes.include?(zip)}
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,3 @@
1
+ module HungryVegan
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,150 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hungry_vegan
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Lesly
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-01-04 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: '12.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '12.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: pry
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: http
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: dotenv
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
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: colorize
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Simple CLI app helps users find vegan food by typing in their zip code
98
+ email:
99
+ - leslyj2@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".env"
105
+ - ".gitignore"
106
+ - ".rspec"
107
+ - ".travis.yml"
108
+ - CODE_OF_CONDUCT.md
109
+ - Gemfile
110
+ - Gemfile.lock
111
+ - LICENSE.txt
112
+ - README.md
113
+ - Rakefile
114
+ - bin/console
115
+ - bin/hungry_vegan
116
+ - bin/setup
117
+ - hungry_vegan.gemspec
118
+ - lib/hungry_vegan.rb
119
+ - lib/hungry_vegan/api.rb
120
+ - lib/hungry_vegan/cli.rb
121
+ - lib/hungry_vegan/restaurant.rb
122
+ - lib/hungry_vegan/version.rb
123
+ homepage: https://github.com/jlesly/hungry_vegan
124
+ licenses:
125
+ - MIT
126
+ metadata:
127
+ allowed_push_host: https://rubygems.org/
128
+ homepage_uri: https://github.com/jlesly/hungry_vegan
129
+ source_code_uri: https://github.com/jlesly/hungry_vegan
130
+ changelog_uri: https://github.com/jlesly/hungry_vegan
131
+ post_install_message:
132
+ rdoc_options: []
133
+ require_paths:
134
+ - lib
135
+ required_ruby_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ version: 2.3.0
140
+ required_rubygems_version: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: '0'
145
+ requirements: []
146
+ rubygems_version: 3.1.5
147
+ signing_key:
148
+ specification_version: 4
149
+ summary: Vegan food finder
150
+ test_files: []