job_hunter_cli 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 +7 -0
- data/.gitignore +9 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +26 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/job_hunter_cli +5 -0
- data/bin/setup +8 -0
- data/job_hunter_cli-0.1.0.gem +0 -0
- data/job_hunter_cli.gemspec +27 -0
- data/lib/job_hunter_cli/cli.rb +66 -0
- data/lib/job_hunter_cli/jobs.rb +26 -0
- data/lib/job_hunter_cli/scraper.rb +29 -0
- data/lib/job_hunter_cli/version.rb +3 -0
- data/lib/job_hunter_cli.rb +12 -0
- data/spec.md +6 -0
- metadata +125 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5247f01fb50909d1970897e1f7cc976ac4a2d60f
|
4
|
+
data.tar.gz: 79273b70aa626dce3a3bae1d5929bcccf1871eef
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e4ad04b8c3900f48b1467c219425f293b622b92fa41b6a75075026265d76c926345703d9bbf8e565648dc2a7907a0256cf1c3d02c705900e6a5f310ba3ffe33f
|
7
|
+
data.tar.gz: 0e885749365e2e8459d54dd3eb921c7bb6125374c073371f677052efa786b105a4ef890130df2295f55eb35351fe569884342e9a17ff24f5b93cfb472f6edce4
|
data/.gitignore
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 lenntriniman@hotmail.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 Lenn Hypolite
|
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,26 @@
|
|
1
|
+
# JobHunterCli
|
2
|
+
|
3
|
+
|
4
|
+
## Installation
|
5
|
+
|
6
|
+
You can install this gem via gem install job_hunter_cli. The job_hunter_cli will be installed and you can run job_hunter_cli to search for a list of jobs via a custom search prompt in your command line.
|
7
|
+
|
8
|
+
## Usage
|
9
|
+
|
10
|
+
Run: job_hunter_cli after installing the gem.
|
11
|
+
|
12
|
+
|
13
|
+
## Development
|
14
|
+
|
15
|
+
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.
|
16
|
+
|
17
|
+
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).
|
18
|
+
|
19
|
+
## Contributing
|
20
|
+
|
21
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/lennhy/job_hunter-cli-gem. 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.
|
22
|
+
|
23
|
+
|
24
|
+
## License
|
25
|
+
|
26
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "job_hunter_cli"
|
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/job_hunter_cli
ADDED
data/bin/setup
ADDED
Binary file
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
|
4
|
+
lib = File.expand_path('../lib', __FILE__)
|
5
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
6
|
+
require 'job_hunter_cli/version'
|
7
|
+
|
8
|
+
Gem::Specification.new do |spec|
|
9
|
+
spec.name = "job_hunter_cli"
|
10
|
+
spec.version = JobHunterCli::VERSION
|
11
|
+
spec.authors = ["Lenn Hypolite"]
|
12
|
+
spec.email = ["lennhydesign@gmail.com"]
|
13
|
+
|
14
|
+
spec.summary = %q{An efficient and intuitive way to search for any job.}
|
15
|
+
spec.description = %q{JobHunterCli allows you to find a job that suits your needs with a custom search.}
|
16
|
+
spec.homepage = ""
|
17
|
+
spec.license = "MIT"
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
19
|
+
spec.bindir = "bin"
|
20
|
+
spec.executables << "job_hunter_cli"
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.add_development_dependency "open-uri"
|
24
|
+
spec.add_development_dependency "nokogiri", '~> 1.6.0', '>= 1.6.0'
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
26
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
27
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# Controller
|
2
|
+
|
3
|
+
class JobHunterCli::CLI
|
4
|
+
|
5
|
+
def start
|
6
|
+
input =""
|
7
|
+
input.downcase!
|
8
|
+
invalid = "invalid"
|
9
|
+
puts ""
|
10
|
+
puts " -------------- Welcome to Job Hunter --------------- "
|
11
|
+
puts "| If you do not type any input then search will default |"
|
12
|
+
puts ""
|
13
|
+
scraper = JobHunterCli::Scraper.new
|
14
|
+
|
15
|
+
until input =="exit"
|
16
|
+
|
17
|
+
# check for input not equal to exit to prevent the cli from not exiting when type exit after prompt
|
18
|
+
puts "1. Enter the max number of the search results you want return"
|
19
|
+
if input && input!="exit"
|
20
|
+
input = gets.strip
|
21
|
+
scraper.limit = "limit=" + input
|
22
|
+
end
|
23
|
+
|
24
|
+
puts "2. Enter any query or name of job role"
|
25
|
+
if input && input!="exit"
|
26
|
+
input = gets.strip
|
27
|
+
scraper.q = "q=" + input
|
28
|
+
end
|
29
|
+
|
30
|
+
puts "3. Enter initals or name of country"
|
31
|
+
if input && input!="exit"
|
32
|
+
input = gets.strip
|
33
|
+
scraper.co = "co=" + input
|
34
|
+
end
|
35
|
+
|
36
|
+
puts "4. Enter a postal code or a city"
|
37
|
+
if input && input!="exit"
|
38
|
+
input = gets.strip
|
39
|
+
scraper.l = "l=" + input
|
40
|
+
end
|
41
|
+
|
42
|
+
puts "5. Enter a number for distance from search location"
|
43
|
+
if input && input!="exit"
|
44
|
+
input = gets.strip
|
45
|
+
scraper.radius = "radius=" + input
|
46
|
+
end
|
47
|
+
|
48
|
+
if input !="exit"
|
49
|
+
scraper.scrape_jobs # start scrape
|
50
|
+
jobs_array = scraper.scrape_jobs # return the array of hash objects from scrape
|
51
|
+
counter=0 # apply numbering to results
|
52
|
+
jobs_array.each do |a|
|
53
|
+
puts "|" + "#{counter+=1}" +"|"
|
54
|
+
a.each do |key,value|
|
55
|
+
puts "#{key.capitalize}: #{value}"
|
56
|
+
end # end of second each enumerable
|
57
|
+
puts ""
|
58
|
+
end # end of first each enumerable
|
59
|
+
else
|
60
|
+
puts "Exit"
|
61
|
+
end # end of if statement
|
62
|
+
end # end of until statement
|
63
|
+
|
64
|
+
end # end of start method
|
65
|
+
|
66
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
class JobHunterCli::Jobs
|
2
|
+
attr_accessor :job_role, :company, :city, :state, :country, :url, :description, :date_posted, :post_duration
|
3
|
+
|
4
|
+
@@all = []
|
5
|
+
|
6
|
+
# takes in an argument of a hash and sets that new student's attributes using the key/value pairs of that hash.
|
7
|
+
def initialize(jobs_hash)
|
8
|
+
jobs_hash.each do |title, string|
|
9
|
+
self.send("#{title}=", string)
|
10
|
+
end
|
11
|
+
@@all << self
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.create_from_collection(jobs_array)
|
15
|
+
jobs_array.each do |jobs_hash|
|
16
|
+
self.new(jobs_hash) # mass assignment It's taking a hash with key and value pairs as arguments
|
17
|
+
# and setting them equal to the attributes that the class has
|
18
|
+
# handing it off to initialize
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def self.all
|
23
|
+
@@all
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
class JobHunterCli::Scraper
|
2
|
+
# save instace variables to assign in teh CLI class when creating a new Scraper instance
|
3
|
+
attr_accessor :q, :co, :l, :radius, :uri, :limit
|
4
|
+
|
5
|
+
def scrape_jobs
|
6
|
+
# indeed.com api uses XML. To parse in XLM use Nokogiri
|
7
|
+
uri = "http://api.indeed.com/ads/apisearch?publisher=3881286689960538&#{@q}&#{@l}&sort=&#{@radius}&st=&jt=&start=&#{@limit}&fromage=&filter=&latlong=1&#{@co}&chnl=&userip=1.2.3.4&useragent=Mozilla/%2F4.0%28Firefox%29&v=2"
|
8
|
+
jobs_array = []
|
9
|
+
jobs_hash = {}
|
10
|
+
doc = Nokogiri::XML(open(uri))
|
11
|
+
doc.css("result").each do |job_result|
|
12
|
+
jobs_hash = {
|
13
|
+
job_role: job_result.css("jobtitle").text,
|
14
|
+
company: job_result.css("company").text,
|
15
|
+
city: job_result.css("city").text,
|
16
|
+
state: job_result.css("state").text,
|
17
|
+
country: job_result.css("country").text,
|
18
|
+
url: job_result.css("url").text,
|
19
|
+
description: job_result.css("snippet").text,
|
20
|
+
date_posted: job_result.css("date").text,
|
21
|
+
post_duration: job_result.css("formattedRelativeTime").text
|
22
|
+
}
|
23
|
+
jobs_array << jobs_hash
|
24
|
+
|
25
|
+
end # end of each statement
|
26
|
+
jobs_array
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'open-uri'
|
2
|
+
require 'nokogiri'
|
3
|
+
require 'pry'
|
4
|
+
|
5
|
+
require_relative "job_hunter_cli/version"
|
6
|
+
require_relative "job_hunter_cli/scraper"
|
7
|
+
require_relative "job_hunter_cli/cli"
|
8
|
+
require_relative "job_hunter_cli/jobs"
|
9
|
+
|
10
|
+
#this sets up the JobHunter Module as having access to all the JobHunter::*FILES*
|
11
|
+
module JobHunterCli
|
12
|
+
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. The CLI greets the user with a welcome message.
|
5
|
+
- [x] Pull data from an external source. The indeed.com API and Nokogiri were used to make an http request and scrape the result in XML format.
|
6
|
+
- [x] Implement both list and detail views. The user can enter information to customize their search for a job. The more information the user puts in the more specific the result. If there is no input then a default result will show. User also has the option of limiting the results.
|
metadata
ADDED
@@ -0,0 +1,125 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: job_hunter_cli
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Lenn Hypolite
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-08-04 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: open-uri
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: nokogiri
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.6.0
|
34
|
+
- - ">="
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 1.6.0
|
37
|
+
type: :development
|
38
|
+
prerelease: false
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - "~>"
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 1.6.0
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 1.6.0
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: bundler
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '1.12'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '1.12'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: rake
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '10.0'
|
68
|
+
type: :development
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '10.0'
|
75
|
+
description: JobHunterCli allows you to find a job that suits your needs with a custom
|
76
|
+
search.
|
77
|
+
email:
|
78
|
+
- lennhydesign@gmail.com
|
79
|
+
executables:
|
80
|
+
- job_hunter_cli
|
81
|
+
extensions: []
|
82
|
+
extra_rdoc_files: []
|
83
|
+
files:
|
84
|
+
- ".gitignore"
|
85
|
+
- CODE_OF_CONDUCT.md
|
86
|
+
- Gemfile
|
87
|
+
- LICENSE.txt
|
88
|
+
- README.md
|
89
|
+
- Rakefile
|
90
|
+
- bin/console
|
91
|
+
- bin/job_hunter_cli
|
92
|
+
- bin/setup
|
93
|
+
- job_hunter_cli-0.1.0.gem
|
94
|
+
- job_hunter_cli.gemspec
|
95
|
+
- lib/job_hunter_cli.rb
|
96
|
+
- lib/job_hunter_cli/cli.rb
|
97
|
+
- lib/job_hunter_cli/jobs.rb
|
98
|
+
- lib/job_hunter_cli/scraper.rb
|
99
|
+
- lib/job_hunter_cli/version.rb
|
100
|
+
- spec.md
|
101
|
+
homepage: ''
|
102
|
+
licenses:
|
103
|
+
- MIT
|
104
|
+
metadata: {}
|
105
|
+
post_install_message:
|
106
|
+
rdoc_options: []
|
107
|
+
require_paths:
|
108
|
+
- lib
|
109
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '0'
|
114
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0'
|
119
|
+
requirements: []
|
120
|
+
rubyforge_project:
|
121
|
+
rubygems_version: 2.6.6
|
122
|
+
signing_key:
|
123
|
+
specification_version: 4
|
124
|
+
summary: An efficient and intuitive way to search for any job.
|
125
|
+
test_files: []
|