raleigh_events 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 +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +23 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/raleigh_events +10 -0
- data/bin/setup +8 -0
- data/lib/raleigh_events.rb +7 -0
- data/lib/raleigh_events/cli.rb +45 -0
- data/lib/raleigh_events/event.rb +29 -0
- data/lib/raleigh_events/version.rb +3 -0
- data/raleigh_events.gemspec +30 -0
- data/spec.md +7 -0
- metadata +131 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 886b6d977b51c0f83b799207778129752a856662
|
4
|
+
data.tar.gz: 5f47db205d6994345a4c694be2509200cf1fad22
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ea6ac59f86db462c2f76dfb1e8157339b46f465cd19a5216e7aa02970defab7b578d2a86abcaa15bc8cf49e6bf8da18809642a90b1d2a632dd2a41b0eb4a4136
|
7
|
+
data.tar.gz: eb1e700d85ae574c98a41a348bd6936177e536dd47ae7fcc78ee421a1bcb46333f9bc68908326bd90fb525f3015edd2e8b4c9a4f1d1b629e201d65f9536f6ce3
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at lani.berry13@gmail.com. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Lani1321
|
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/README.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
## Installation
|
2
|
+
|
3
|
+
You can install this gem via `gem install raleigh_events`. The raleigh_events CLI will be installed and you can run raleigh_events to get a list of fun things to do in the Raleigh-Durham area as well as any additional information on a specific event.
|
4
|
+
|
5
|
+
## Usage
|
6
|
+
|
7
|
+
Run: `raleigh_events` after installing the gem.
|
8
|
+
|
9
|
+
## Development
|
10
|
+
|
11
|
+
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.
|
12
|
+
|
13
|
+
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).
|
14
|
+
|
15
|
+
## Contributing
|
16
|
+
|
17
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/raleigh_events. 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.
|
18
|
+
|
19
|
+
|
20
|
+
## License
|
21
|
+
|
22
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
23
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "raleigh_events"
|
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
|
data/bin/raleigh_events
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# require './lib/raleigh_events' #anything that needs my enviro can just load it throuogh this one line call
|
4
|
+
|
5
|
+
require "bundler/setup"
|
6
|
+
require "raleigh_events"
|
7
|
+
|
8
|
+
RaleighEvents::CLI.new.call #create a new instance of my controller CLI, calls the call method on it, which starts set of dominos that lists events, gets the user enu then says goodbye
|
9
|
+
|
10
|
+
#this is the file that im running
|
data/bin/setup
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# CLI controller
|
2
|
+
class RaleighEvents::CLI
|
3
|
+
|
4
|
+
# Call method will greet the user then list all of the events
|
5
|
+
# User will see a menu to learn more info about a particular event
|
6
|
+
def call
|
7
|
+
list_events
|
8
|
+
menu
|
9
|
+
goodbye
|
10
|
+
end
|
11
|
+
|
12
|
+
def list_events
|
13
|
+
#Here doc http://blog.jayfields.com/2006/12/ruby-multiline-strings-here-doc-or.html
|
14
|
+
puts "Upcoming events in Raleigh:"
|
15
|
+
@events = RaleighEvents::Event.upcoming #theres an object called Event that has a class method #upcoming that returns these events
|
16
|
+
|
17
|
+
@events.each.with_index(1) do |event, i|
|
18
|
+
puts "#{i}. #{event.title}"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# Interactive with the user, showing the list of events
|
23
|
+
def menu
|
24
|
+
input = nil
|
25
|
+
while input != "exit"
|
26
|
+
puts "Enter the number of the event you'd like more info on or type list to see the events again or type exit: "
|
27
|
+
input = gets.strip.downcase
|
28
|
+
puts "\n"
|
29
|
+
#strings that are integers will convert to 0, if its an actual integer then it will be greater than 0
|
30
|
+
if input.to_i > 0
|
31
|
+
#want the array index of this event
|
32
|
+
the_event = @events[input.to_i-1]
|
33
|
+
puts "Event: " "#{the_event.title} \n" "When: " "#{the_event.date} \n" "Venue: " "#{the_event.location} \n" "More Info: " "#{the_event.url}" #reading out of these objescts, instead of hard coding into strings
|
34
|
+
elsif input == "list"
|
35
|
+
list_events
|
36
|
+
else
|
37
|
+
puts "Not sure what you want, type list or exit."
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def goodbye
|
43
|
+
puts "See you tomorrow for more events!!!"
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
class RaleighEvents::Event
|
2
|
+
attr_accessor :title, :date, :location, :url
|
3
|
+
|
4
|
+
# Scrape get-offline and return events based on that data
|
5
|
+
def self.upcoming
|
6
|
+
self.scrape_events
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.scrape_events
|
10
|
+
events = []
|
11
|
+
doc = Nokogiri::HTML(open("https://www.get-offline.com/raleigh/upcoming-events"))
|
12
|
+
|
13
|
+
doc.css(".experience-thumb").each do |event|
|
14
|
+
# instantiating a new Event object as it iterates through each web element
|
15
|
+
new_event = self.new
|
16
|
+
new_event.title = event.css("#template-name-link").text.strip
|
17
|
+
location = event.css(".location-bar").text.gsub("â\u0080¢", "").strip
|
18
|
+
location_array = location.split(/\s+(?=(?:[^"]*"[^"]*")*[^"]*$)/)
|
19
|
+
location_array.pop
|
20
|
+
new_event.location = location_array.join(' ')
|
21
|
+
date = event.css(".experience-extra-details").children.last.text
|
22
|
+
new_event.date = date.gsub(/\n/, "").strip
|
23
|
+
new_event.url = "https://www.get-offline.com#{event.attribute('href')}"
|
24
|
+
events << new_event
|
25
|
+
end
|
26
|
+
events
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'raleigh_events/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "raleigh_events"
|
8
|
+
spec.version = RaleighEvents::VERSION
|
9
|
+
spec.authors = ["Lani1321"]
|
10
|
+
spec.email = ["lani.berry13@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{A: Write a short summary, because Rubygems requires one.}
|
13
|
+
spec.description = %q{A: Write a longer description or delete this line.}
|
14
|
+
spec.homepage = "https://github.com/Lani1321/raleigh_events"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# spec.add_development_dependency "rspec" #I added this line so I can run rsepc
|
18
|
+
|
19
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
20
|
+
spec.bindir = "exe"
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ["lib"]
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
26
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
27
|
+
spec.add_development_dependency "pry"
|
28
|
+
|
29
|
+
spec.add_dependency "nokogiri" #if I take out this dependency then require 'nokogiri' in lib/raleigh_events.rb doesn't work...so I know that it's loading it from the bundler path
|
30
|
+
end
|
data/spec.md
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# Specifications for the CLI Assessment
|
2
|
+
|
3
|
+
Specs:
|
4
|
+
- [x] Have a CLI for interfacing with the application- User is able to interact with a menu that contains a list of events.
|
5
|
+
- [x] Pull data from an external source- I scraped get-offline.com and scraped their events page to pull their data and use it in my CLI.
|
6
|
+
- [x] Implement both list and detail views- #list_events is in the CLI class. In the method, there is an instance variable @events that is set equal to an object called Event, that has a class method upcoming. This allows #list_events to list all of the upcoming events on get-offline.com.
|
7
|
+
The user is able to get more details by inputting a number associated with a specific event.
|
metadata
ADDED
@@ -0,0 +1,131 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: raleigh_events
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Lani1321
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-08-31 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.12'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.12'
|
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.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.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: nokogiri
|
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
|
+
description: 'A: Write a longer description or delete this line.'
|
84
|
+
email:
|
85
|
+
- lani.berry13@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".rspec"
|
92
|
+
- ".travis.yml"
|
93
|
+
- CODE_OF_CONDUCT.md
|
94
|
+
- Gemfile
|
95
|
+
- LICENSE.txt
|
96
|
+
- README.md
|
97
|
+
- Rakefile
|
98
|
+
- bin/console
|
99
|
+
- bin/raleigh_events
|
100
|
+
- bin/setup
|
101
|
+
- lib/raleigh_events.rb
|
102
|
+
- lib/raleigh_events/cli.rb
|
103
|
+
- lib/raleigh_events/event.rb
|
104
|
+
- lib/raleigh_events/version.rb
|
105
|
+
- raleigh_events.gemspec
|
106
|
+
- spec.md
|
107
|
+
homepage: https://github.com/Lani1321/raleigh_events
|
108
|
+
licenses:
|
109
|
+
- MIT
|
110
|
+
metadata: {}
|
111
|
+
post_install_message:
|
112
|
+
rdoc_options: []
|
113
|
+
require_paths:
|
114
|
+
- lib
|
115
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '0'
|
120
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
requirements: []
|
126
|
+
rubyforge_project:
|
127
|
+
rubygems_version: 2.4.5.1
|
128
|
+
signing_key:
|
129
|
+
specification_version: 4
|
130
|
+
summary: 'A: Write a short summary, because Rubygems requires one.'
|
131
|
+
test_files: []
|