dcdrinks 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2017132bf6ba848c7bdcc0998522905aeff85c01e5a9ce5d3e41e595082d67d8
4
+ data.tar.gz: 11284e059ac4ecba18877a4b82ad0ed851677fa8c323f5b9da03534527934a91
5
+ SHA512:
6
+ metadata.gz: 4a3c3b6359c146b199bd0fe41106bd034cdceea8cfe3b3aacf41e392ec92f7c7a5e531cc4097c35ac2de446e1d5350cb035d87b242bf7ca7fd4eadf8830e8f99
7
+ data.tar.gz: 6198ca0805da3811d28a0e2f839186e73893bb5f142384827b76da671c5293fa32b7c5949223b4714383423b90720549299c0c69fb438f5f942cf455899a391d
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
@@ -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 'carrielane89@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 [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,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ #git_source(:github) {|CSavi/dcdrinks-cli-app| "https://github.com/#{CSavi/dcdrinks-cli-app}" }
4
+
5
+ # Specify your gem's dependencies in dcdrinks.gemspec
6
+ gemspec
@@ -0,0 +1,47 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ dcdrinks (0.1.0)
5
+ nokogiri
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ coderay (1.1.2)
11
+ diff-lcs (1.3)
12
+ gem-release (2.0.1)
13
+ method_source (0.9.0)
14
+ mini_portile2 (2.3.0)
15
+ nokogiri (1.8.2)
16
+ mini_portile2 (~> 2.3.0)
17
+ pry (0.11.3)
18
+ coderay (~> 1.1.0)
19
+ method_source (~> 0.9.0)
20
+ rake (10.4.2)
21
+ rspec (3.7.0)
22
+ rspec-core (~> 3.7.0)
23
+ rspec-expectations (~> 3.7.0)
24
+ rspec-mocks (~> 3.7.0)
25
+ rspec-core (3.7.1)
26
+ rspec-support (~> 3.7.0)
27
+ rspec-expectations (3.7.0)
28
+ diff-lcs (>= 1.2.0, < 2.0)
29
+ rspec-support (~> 3.7.0)
30
+ rspec-mocks (3.7.0)
31
+ diff-lcs (>= 1.2.0, < 2.0)
32
+ rspec-support (~> 3.7.0)
33
+ rspec-support (3.7.1)
34
+
35
+ PLATFORMS
36
+ ruby
37
+
38
+ DEPENDENCIES
39
+ bundler (~> 1.16)
40
+ dcdrinks!
41
+ gem-release
42
+ pry
43
+ rake (~> 10.0)
44
+ rspec
45
+
46
+ BUNDLED WITH
47
+ 1.16.2
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 'Carrie Savinell'
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,25 @@
1
+ How to Build a CLI Gem:
2
+
3
+ 1. Plan your gem, imagine your interface
4
+ 2. Start with the project structure -google
5
+ 3. Start with the entry point -the file run
6
+ 4. Force that to build the CLI interface
7
+ 5. Stub out the interface
8
+ 6. Start making things real
9
+ 7. Discover projects
10
+ 8. Program
11
+
12
+ A command line interface for dcdrinks, using dc.happyhours.com
13
+
14
+ user selects day of the week
15
+ Show a list of happy hours and added details for that day:
16
+ 1. Harold Black - Capitol Hill, NE - 3:30-5pm - $7 cocktails and wine - url
17
+ 2. Blue Duck Tavern - Logan Circle, NW - 3-4:30pm - $5 cocktails - url
18
+
19
+
20
+ What is a happy hour?
21
+
22
+ 1. HH has a name
23
+ 2. HH has a location
24
+ 3. HH has a time
25
+ 4. HH has a feature
@@ -0,0 +1,45 @@
1
+ ## DCDrinks
2
+
3
+ DCDrinks is a cli application that allows users to select any day of the week to view that day's happy hour specials in DC. Instead of filtering through deep food and drink databases and sifting through dozens of DC drink blogs, allow DCDrinks to find a quick and up-to-date spot for you, even on the go!
4
+
5
+ Users will be able to select the day of interest and scan the important details of each listing -name, location, happy hour times, happy hour features, and url.
6
+
7
+ Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'dcdrinks'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install dcdrinks
22
+
23
+ ## Usage
24
+
25
+ The DCDrinks app runs from the executable bin/dcdrinks and once initialized, the cli will generate a list of days -Sunday through Saturday -for the user to select. A day is selected by a numerical value system, ie., 1. Sunday with user inputing "1." After day is selected, a new list will be generated, which is also numbered and can be selected in the same way. This list will showcase happy hours associated to the selected day along with basic details of location, happy hour times, happy hour features, and url, ie., 1. Harold Black - Capitol Hill, NE - 3:30-5pm - $7 cocktails and wine - http://www.haroldblackdc.com.
26
+
27
+ A user may exit at any time by typing "exit." When the user is within the happy hour listings menu, they can type "previous" to return to the day selection menu.
28
+
29
+ ## Development
30
+
31
+ 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.
32
+
33
+ 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).
34
+
35
+ ## Contributing
36
+
37
+ Bug reports and pull requests are welcome on GitHub at https://github.com/'CSavi'/dcdrinks. 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.
38
+
39
+ ## License
40
+
41
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
42
+
43
+ ## Code of Conduct
44
+
45
+ Everyone interacting in the Dcdrinks project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/'CSavi'/dcdrinks/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "dcdrinks"
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
+ # (If you use this, don't forget to add pry to your Gemfile!)
9
+ require "pry"
10
+ Pry.start
11
+
12
+ require "irb"
13
+ IRB.start(__FILE__)
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ require "bundler/setup"
3
+ require_relative "../lib/dcdrinks/"
4
+ #require "dcdrinks"
5
+
6
+ Dcdrinks::CLI.new.call
@@ -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,40 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "dcdrinks/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "dcdrinks"
8
+ spec.version = Dcdrinks::VERSION
9
+ spec.authors = ["CSavi"]
10
+ spec.email = ["carrielane89@gmail.com"]
11
+
12
+ spec.summary = %q{DCDrinks allows users to select any day of the week to view that day's happy hour specials in DC}
13
+ spec.homepage = "https://github.com/CSavi/dcdrinks.git"
14
+ spec.license = "MIT"
15
+
16
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
18
+ # if spec.respond_to?(:metadata)
19
+ # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
20
+ # else
21
+ # raise "RubyGems 2.0 or newer is required to protect against " \
22
+ # "public gem pushes."
23
+ # end
24
+
25
+ # Specify which files should be added to the gem when it is released.
26
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
27
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
28
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
29
+ end
30
+ spec.bindir = "bin"
31
+ spec.executables = ["dcdrinks"]
32
+ spec.require_paths = ["lib"]
33
+
34
+ spec.add_development_dependency "bundler", "~> 1.16"
35
+ spec.add_development_dependency "rake", "~> 10.0"
36
+ spec.add_development_dependency "rspec"
37
+ spec.add_development_dependency "pry"
38
+ spec.add_development_dependency "gem-release"
39
+ spec.add_dependency "nokogiri"
40
+ end
@@ -0,0 +1,6 @@
1
+ require "open-uri"
2
+ require "nokogiri"
3
+ require "pry"
4
+ require_relative "./dcdrinks/version"
5
+ require_relative "./dcdrinks/cli"
6
+ require_relative "./dcdrinks/happyhour"
@@ -0,0 +1,45 @@
1
+ class Dcdrinks::CLI
2
+
3
+ def call
4
+ puts "Welcome to DC Happy Hours!"
5
+ list_days
6
+ list_happyhours
7
+ goodbye
8
+ end
9
+
10
+
11
+ def list_days
12
+ puts "********** Monday(1) **********"
13
+ puts "********** Tuesday(2) **********"
14
+ puts "********** Wednesday(3) **********"
15
+ puts "********** Thursday(4) **********"
16
+ puts "********** Friday(5) **********"
17
+ puts "********** Saturday(6) **********"
18
+ puts "********** Sunday(7) **********"
19
+ end
20
+
21
+
22
+ def list_happyhours
23
+ input = nil
24
+ while input != "exit"
25
+ puts "Enter the number of the day to see its listed happy hours, type 'menu' to return to the main page, or type 'exit' when your search is successful."
26
+ input = gets.strip
27
+
28
+ if (input.to_i > 0) && (input.to_i < 9)
29
+ Dcdrinks::HappyHour.day_selector(input)
30
+ the_happyhour = Dcdrinks::HappyHour.create_dchappyhour[input.to_i - 1]
31
+ elsif input == "exit"
32
+ break
33
+ elsif input == "menu"
34
+ list_days
35
+ else
36
+ puts "Unsure what you're asking."
37
+ end
38
+ end
39
+ end
40
+
41
+
42
+ def goodbye
43
+ puts "Thank you for using DCDrinks! See you next time!"
44
+ end
45
+ end
@@ -0,0 +1,56 @@
1
+ class Dcdrinks::HappyHour
2
+
3
+ attr_accessor :name, :location, :time, :feature, :day
4
+ @@all = []
5
+
6
+
7
+ def initialize(attributes)
8
+ attributes.each {|key, value| self.send(("#{key}="), value)}
9
+ @@all << self
10
+ end
11
+
12
+
13
+ def self.day_selector(selected_day)
14
+ if selected_day == "1"
15
+ @happyhour_for_day = "Monday"
16
+ elsif selected_day == "2"
17
+ @happyhour_for_day = "Tuesday"
18
+ elsif selected_day == "3"
19
+ @happyhour_for_day = "Wednesday"
20
+ elsif selected_day == "4"
21
+ @happyhour_for_day = "Thursday"
22
+ elsif selected_day == "5"
23
+ @happyhour_for_day = "Friday"
24
+ elsif selected_day == "6"
25
+ @happyhour_for_day = "Saturday"
26
+ elsif selected_day == "7"
27
+ @happyhour_for_day = "Sunday"
28
+ end
29
+ end
30
+
31
+
32
+ def self.create_dchappyhour
33
+ self.scrape_dchappyhours.each.with_index(1) {|hh, i| puts "#{i}. #{hh[:name]} - #{hh[:location].strip} - #{hh[:time].strip} - #{hh[:feature]}"}
34
+ end
35
+
36
+
37
+ def self.scrape_dchappyhours
38
+ happyhour_array = []
39
+
40
+ doc = Nokogiri::HTML(open("https://www.dchappyhours.com/index.phtml?selectarea=&selectday=#{@happyhour_for_day}"))
41
+ happyhours = doc.css(".card-block")
42
+ happyhours.collect do |details|
43
+ if details.css("p.card-text").text.include?("Happy Hour")
44
+
45
+ happyhour_hash = {
46
+ :name => details.css("h2.card-title").text.strip,
47
+ :location => details.css("p.card-text span[1]").text.strip,
48
+ :time => details.css("p.card-text span[3]").text.strip,
49
+ :feature => details.css("p.card-text span.hhlistingtext").text.strip
50
+ }
51
+ happyhour_array << happyhour_hash
52
+ end
53
+ end
54
+ happyhour_array
55
+ end
56
+ end
@@ -0,0 +1,3 @@
1
+ module Dcdrinks
2
+ VERSION = "0.1.0"
3
+ end
data/spec.md ADDED
@@ -0,0 +1,6 @@
1
+ # Specifications for the CLI Assessment
2
+
3
+ Specs:
4
+ - [x] Have a CLI for interfacing with the application
5
+ - [ ] Pull data from an external source
6
+ - [ ] Implement both list and detail views
metadata ADDED
@@ -0,0 +1,147 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dcdrinks
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - CSavi
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-06-22 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: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
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: '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: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
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: gem-release
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: nokogiri
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:
98
+ email:
99
+ - carrielane89@gmail.com
100
+ executables:
101
+ - dcdrinks
102
+ extensions: []
103
+ extra_rdoc_files: []
104
+ files:
105
+ - ".gitignore"
106
+ - CODE_OF_CONDUCT.md
107
+ - Gemfile
108
+ - Gemfile.lock
109
+ - LICENSE.txt
110
+ - NOTES.md
111
+ - README.md
112
+ - Rakefile
113
+ - bin/console
114
+ - bin/dcdrinks
115
+ - bin/setup
116
+ - dcdrinks.gemspec
117
+ - lib/dcdrinks.rb
118
+ - lib/dcdrinks/cli.rb
119
+ - lib/dcdrinks/happyhour.rb
120
+ - lib/dcdrinks/version.rb
121
+ - spec.md
122
+ homepage: https://github.com/CSavi/dcdrinks.git
123
+ licenses:
124
+ - MIT
125
+ metadata: {}
126
+ post_install_message:
127
+ rdoc_options: []
128
+ require_paths:
129
+ - lib
130
+ required_ruby_version: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: '0'
135
+ required_rubygems_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ requirements: []
141
+ rubyforge_project:
142
+ rubygems_version: 2.7.7
143
+ signing_key:
144
+ specification_version: 4
145
+ summary: DCDrinks allows users to select any day of the week to view that day's happy
146
+ hour specials in DC
147
+ test_files: []