matadore 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4a03a0187089dadd60ab8f6204887785d3d157da
4
+ data.tar.gz: 04ea4f2d6890ed1d349db17f20a5f88137701574
5
+ SHA512:
6
+ metadata.gz: 442a895bf629f2edd48ce2710833986ccea12eaba07fd97c5ec13800b498a6dbfa1de22c7ddbf5a3540606dfad4f6f724e998b30f085a333b293385e6bef425b
7
+ data.tar.gz: bfa1026874cc6184fb2d8fae453837e8231d7acf896ae897424a98a709fcd3216dc6cda133ec22eb220030fb563e8041a3f01a607b5f440fa62a7d5f447777ef
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ before_install: gem install bundler -v 1.11.2
@@ -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 kirsten.ofarrell@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
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # gem's dependencies specified in matadore.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 abadfish
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,20 @@
1
+ CLI Gem - Matadore
2
+
3
+ 1. Plan CLI Data Gem, imagine interface
4
+ 2. Project structure
5
+ 3. Entry point - file run
6
+
7
+
8
+
9
+ - command line interface that tells you your geolocation in
10
+ coordinates and gives you the windspeed and air pressure based position
11
+ - user types in matador
12
+ - cli asks for address?
13
+ - enters address only
14
+
15
+
16
+ http://mynasadata.larc.nasa.gov/latitudelongitude-finder/
17
+
18
+ http://railscasts.com/episodes/273-geocoder?autoplay=true
19
+
20
+ http:// predictwind.com
@@ -0,0 +1,38 @@
1
+ # Matador
2
+
3
+ Matador is a gem designed to give you atmospheric data for the exact spot you choose, such as temperature, humidity, barometric pressure, wind speed and direction, and visibility.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'matadore'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install matador
20
+
21
+ ## Usage
22
+
23
+ Using Matadore is fairly simple. It asks for your location, for which you can give is an exact address or simply a zip code. Then it will ask you what sort of data you are looking to acquire about that location. For the time-being your choices are "wind," "pressure," "temp," "humidity", and "visibility."
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/abadfish/matadore. 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.
34
+
35
+
36
+ ## License
37
+
38
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -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,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "matadore"
5
+
6
+ # require "pry"
7
+ # Pry.start
8
+
9
+ require "irb"
10
+ IRB.start
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "matadore"
5
+
6
+ Matadore::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,9 @@
1
+ require 'nokogiri'
2
+ require 'open-uri'
3
+ require 'pry'
4
+ require 'geocoder'
5
+
6
+ require_relative "./matadore/version"
7
+ require_relative './matadore/cli'
8
+ require_relative './matadore/location'
9
+ require_relative './matadore/scraper'
@@ -0,0 +1,78 @@
1
+ class Matadore::CLI
2
+ attr_accessor :here, :input
3
+
4
+ def call
5
+ puts "Welcome to the Matadore CLI gem!
6
+ "
7
+ sleep 0.75
8
+ puts "How can I help you today?
9
+ "
10
+ sleep 1.0
11
+ list_geolocation
12
+ elements
13
+ good_luck
14
+ end
15
+
16
+ def address
17
+ puts "Please enter your address for specific data"
18
+ puts "or a zip code for data on a general area:
19
+ "
20
+ sleep 0.75
21
+ input = gets.strip
22
+ end
23
+
24
+ def list_geolocation
25
+ @here = Matadore::Location.here(address)
26
+ puts "Your requested location is #{here.lattitude}, #{here.longitude}.
27
+ "
28
+ end
29
+
30
+ def fetch_scraper_data
31
+ @location = Matadore::Scraper.scrape_noaa_weather(@here.lattitude, @here.longitude)
32
+ end
33
+
34
+ def elements
35
+ fetch_scraper_data
36
+ puts "What data do you require for your location?
37
+ "
38
+ sleep 1.0
39
+ puts "I can give you temperature, pressure, humidity, wind, or visibility.
40
+ "
41
+ input = nil
42
+ while input != "exit"
43
+ input = gets.strip.downcase
44
+ if input == "temperature"
45
+ puts "
46
+ temp is currently #{@location.temp}
47
+ "
48
+ elsif input == "pressure"
49
+ puts "
50
+ pressure is currently #{@location.pressure}
51
+ "
52
+ elsif input == "humidity"
53
+ puts "
54
+ humidity is currently #{@location.humidity}
55
+ "
56
+ elsif input == "wind"
57
+ puts "
58
+ wind is currently #{@location.wind}
59
+ "
60
+ elsif input == "visibility"
61
+ puts "
62
+ visibility is currently #{@location.visibility}
63
+ "
64
+ elsif input != "visibility" && input != "wind" && input != "humidity" && input != "pressure" && input != "temperature" && input != "exit"
65
+ puts "
66
+ At this time I only have pressure, wind, humidity, visibility or temp data.
67
+ "
68
+ end
69
+ end
70
+ end
71
+
72
+ def good_luck
73
+ puts "
74
+ May the force be with you.
75
+ "
76
+ end
77
+
78
+ end
@@ -0,0 +1,14 @@
1
+ require_relative '../matadore'
2
+ require_relative 'cli'
3
+
4
+
5
+ class Matadore::Location
6
+ attr_accessor :lattitude, :longitude, :location_1, :address, :input
7
+
8
+ def self.here(address)
9
+ location_1 = self.new
10
+ location_1.lattitude = Geocoder.coordinates(address)[0]
11
+ location_1.longitude = Geocoder.coordinates(address)[1]
12
+ location_1
13
+ end
14
+ end
@@ -0,0 +1,18 @@
1
+ class Matadore::Scraper
2
+ attr_accessor :lattitude, :longitude, :location_url, :temp, :pressure, :humidity, :wind, :visibility
3
+
4
+ def self.scrape_noaa_weather(lattitude, longitude)
5
+ location_url= "http://forecast.weather.gov/MapClick.php?lat=#{lattitude}&lon=#{longitude}"
6
+
7
+ doc = Nokogiri::HTML(open(location_url))
8
+
9
+ location = self.new
10
+ location.temp = doc.search("p.myforecast-current-lrg").text
11
+ location.pressure = doc.search("div#current_conditions_detail tr[3] td").text.split("Barometer")[1]
12
+ location.humidity = doc.search("div#current_conditions_detail tr[1] td").text.split("Humidity")[1]
13
+ location.wind = doc.search("div#current_conditions_detail tr[2] td").text.split("Wind Speed")[1]
14
+ location.visibility = doc.search("div#current_conditions_detail tr[5] td").text.split("Visibility")[1]
15
+
16
+ location
17
+ end
18
+ end
@@ -0,0 +1,3 @@
1
+ module Matadore
2
+ VERSION = "0.2.0"
3
+ end
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'matadore/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "matadore"
8
+ spec.version = Matadore::VERSION
9
+ spec.authors = ["abadfish"]
10
+ spec.email = ["kirsten.ofarrell@gmail.com"]
11
+
12
+ spec.summary = "Find data on weather and ocean elements beased on geolocation."
13
+ spec.description = "Enter your address or zipcode and then specify what element you would like data on."
14
+ spec.homepage = "https://github.com/abadfish/matadore"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "bin"
19
+ spec.executables = "matadore"
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.11"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "rspec", "~> 3.0"
25
+ spec.add_development_dependency "pry"
26
+ spec.add_dependency "nokogiri"
27
+ spec.add_dependency "geocoder"
28
+ end
metadata ADDED
@@ -0,0 +1,148 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: matadore
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - abadfish
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-03-26 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.11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.11'
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
+ - !ruby/object:Gem::Dependency
84
+ name: geocoder
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: Enter your address or zipcode and then specify what element you would
98
+ like data on.
99
+ email:
100
+ - kirsten.ofarrell@gmail.com
101
+ executables:
102
+ - matadore
103
+ extensions: []
104
+ extra_rdoc_files: []
105
+ files:
106
+ - ".gitignore"
107
+ - ".rspec"
108
+ - ".travis.yml"
109
+ - CODE_OF_CONDUCT.md
110
+ - Gemfile
111
+ - LICENSE.txt
112
+ - NOTES.md
113
+ - README.md
114
+ - Rakefile
115
+ - bin/console
116
+ - bin/matadore
117
+ - bin/setup
118
+ - lib/matadore.rb
119
+ - lib/matadore/cli.rb
120
+ - lib/matadore/location.rb
121
+ - lib/matadore/scraper.rb
122
+ - lib/matadore/version.rb
123
+ - matadore.gemspec
124
+ homepage: https://github.com/abadfish/matadore
125
+ licenses:
126
+ - MIT
127
+ metadata: {}
128
+ post_install_message:
129
+ rdoc_options: []
130
+ require_paths:
131
+ - lib
132
+ required_ruby_version: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - ">="
135
+ - !ruby/object:Gem::Version
136
+ version: '0'
137
+ required_rubygems_version: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - ">="
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ requirements: []
143
+ rubyforge_project:
144
+ rubygems_version: 2.6.2
145
+ signing_key:
146
+ specification_version: 4
147
+ summary: Find data on weather and ocean elements beased on geolocation.
148
+ test_files: []