weather-forecasts 1.2.3 → 1.2.4
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 +4 -4
- data/Gemfile +1 -0
- data/lib/weather_forecasts/client/version.rb +1 -1
- data/spec/fixtures/vcr_cassettes/select_by_days_query.yml +76 -75
- data/spec/fixtures/vcr_cassettes/select_coordinates_by_cities_query.yml +8 -8
- data/spec/fixtures/vcr_cassettes/select_coordinates_by_zip_query.yml +8 -8
- data/spec/fixtures/vcr_cassettes/select_corner_coordinates_query.yml +8 -8
- data/spec/fixtures/vcr_cassettes/select_gridpoint_coordinates_query.yml +8 -8
- data/spec/fixtures/vcr_cassettes/select_hourly_query.yml +132 -204
- data/spec/fixtures/vcr_cassettes/select_linepoint_coordinates_query.yml +8 -8
- data/spec/fixtures/vcr_cassettes/select_query.yml +685 -817
- data/spec/fixtures/vcr_cassettes/select_square_coordinates_query.yml +8 -8
- data/weather-forecasts.gemspec +4 -4
- metadata +17 -17
@@ -21,7 +21,7 @@ http_interactions:
|
|
21
21
|
Server:
|
22
22
|
- Apache/2.2.15 (Red Hat)
|
23
23
|
X-Nids-Serverid:
|
24
|
-
-
|
24
|
+
- www4.md
|
25
25
|
Last-Modified:
|
26
26
|
- Thu, 13 Mar 2014 18:05:49 GMT
|
27
27
|
Accept-Ranges:
|
@@ -31,7 +31,7 @@ http_interactions:
|
|
31
31
|
Content-Type:
|
32
32
|
- application/wsdl+xml
|
33
33
|
Date:
|
34
|
-
-
|
34
|
+
- Thu, 26 Feb 2015 17:05:22 GMT
|
35
35
|
Connection:
|
36
36
|
- keep-alive
|
37
37
|
body:
|
@@ -380,7 +380,7 @@ http_interactions:
|
|
380
380
|
\ <soap:address location=\"http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php\"/>\n
|
381
381
|
\ </port>\n</service>\n\n</definitions>\n"
|
382
382
|
http_version:
|
383
|
-
recorded_at:
|
383
|
+
recorded_at: Thu, 26 Feb 2015 17:05:22 GMT
|
384
384
|
- request:
|
385
385
|
method: post
|
386
386
|
uri: http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php
|
@@ -410,7 +410,7 @@ http_interactions:
|
|
410
410
|
Server:
|
411
411
|
- Apache/2.2.15 (Red Hat)
|
412
412
|
X-Nids-Serverid:
|
413
|
-
- www5.
|
413
|
+
- www5.md
|
414
414
|
X-Soap-Server:
|
415
415
|
- NuSOAP/0.9.5 (1.123)
|
416
416
|
Content-Type:
|
@@ -420,9 +420,9 @@ http_interactions:
|
|
420
420
|
Cache-Control:
|
421
421
|
- max-age=180
|
422
422
|
Expires:
|
423
|
-
-
|
423
|
+
- Thu, 26 Feb 2015 17:08:22 GMT
|
424
424
|
Date:
|
425
|
-
-
|
425
|
+
- Thu, 26 Feb 2015 17:05:22 GMT
|
426
426
|
Content-Length:
|
427
427
|
- '1472'
|
428
428
|
Connection:
|
@@ -443,5 +443,5 @@ http_interactions:
|
|
443
443
|
39.564032,-105.145529 39.608050,-105.149812 39.652059,-105.154099 39.479256,-105.079914
|
444
444
|
39.523294,-105.084166 39.567323,-105.088422 39.611342,-105.092681 39.655351,-105.096944</latLonList></dwml></listLatLonOut></ns1:LatLonListSquareResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
445
445
|
http_version:
|
446
|
-
recorded_at:
|
447
|
-
recorded_with: VCR 2.9.
|
446
|
+
recorded_at: Thu, 26 Feb 2015 17:05:22 GMT
|
447
|
+
recorded_with: VCR 2.9.3
|
data/weather-forecasts.gemspec
CHANGED
@@ -24,12 +24,12 @@ Gem::Specification.new do |s|
|
|
24
24
|
s.executables << 'wf-console'
|
25
25
|
|
26
26
|
s.add_runtime_dependency 'dwml', '~> 1.1.3', '>= 1.1.3'
|
27
|
-
s.add_runtime_dependency 'savon', '~> 2.
|
28
|
-
s.add_runtime_dependency 'httpi', '~>2.
|
27
|
+
s.add_runtime_dependency 'savon', '~> 2.9.0', '>= 2.9.0'
|
28
|
+
s.add_runtime_dependency 'httpi', '~>2.3.0', '>= 2.3.0'
|
29
29
|
s.add_runtime_dependency 'nokogiri', '~> 1.6.1', '>= 1.6.1'
|
30
30
|
s.add_runtime_dependency 'multi_json', '~> 1.10.1', '>= 1.10.1'
|
31
|
-
s.add_runtime_dependency 'activesupport', '~> 4.
|
32
|
-
s.add_runtime_dependency 'http_logger', '~> 0.
|
31
|
+
s.add_runtime_dependency 'activesupport', '~> 4.2.0', '>= 4.2.0'
|
32
|
+
s.add_runtime_dependency 'http_logger', '~> 0.5.1', '>= 0.5.1'
|
33
33
|
|
34
34
|
s.post_install_message = "To start querying weather forecasts immediately, type `wf-console`."
|
35
35
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: weather-forecasts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Angelo Lakra
|
@@ -36,40 +36,40 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: 2.
|
39
|
+
version: 2.9.0
|
40
40
|
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 2.
|
42
|
+
version: 2.9.0
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 2.
|
49
|
+
version: 2.9.0
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version: 2.
|
52
|
+
version: 2.9.0
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: httpi
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
57
|
- - "~>"
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
version: 2.
|
59
|
+
version: 2.3.0
|
60
60
|
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 2.
|
62
|
+
version: 2.3.0
|
63
63
|
type: :runtime
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: 2.
|
69
|
+
version: 2.3.0
|
70
70
|
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
|
-
version: 2.
|
72
|
+
version: 2.3.0
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
74
|
name: nokogiri
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
@@ -116,40 +116,40 @@ dependencies:
|
|
116
116
|
requirements:
|
117
117
|
- - "~>"
|
118
118
|
- !ruby/object:Gem::Version
|
119
|
-
version: 4.
|
119
|
+
version: 4.2.0
|
120
120
|
- - ">="
|
121
121
|
- !ruby/object:Gem::Version
|
122
|
-
version: 4.
|
122
|
+
version: 4.2.0
|
123
123
|
type: :runtime
|
124
124
|
prerelease: false
|
125
125
|
version_requirements: !ruby/object:Gem::Requirement
|
126
126
|
requirements:
|
127
127
|
- - "~>"
|
128
128
|
- !ruby/object:Gem::Version
|
129
|
-
version: 4.
|
129
|
+
version: 4.2.0
|
130
130
|
- - ">="
|
131
131
|
- !ruby/object:Gem::Version
|
132
|
-
version: 4.
|
132
|
+
version: 4.2.0
|
133
133
|
- !ruby/object:Gem::Dependency
|
134
134
|
name: http_logger
|
135
135
|
requirement: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
137
|
- - "~>"
|
138
138
|
- !ruby/object:Gem::Version
|
139
|
-
version: 0.
|
139
|
+
version: 0.5.1
|
140
140
|
- - ">="
|
141
141
|
- !ruby/object:Gem::Version
|
142
|
-
version: 0.
|
142
|
+
version: 0.5.1
|
143
143
|
type: :runtime
|
144
144
|
prerelease: false
|
145
145
|
version_requirements: !ruby/object:Gem::Requirement
|
146
146
|
requirements:
|
147
147
|
- - "~>"
|
148
148
|
- !ruby/object:Gem::Version
|
149
|
-
version: 0.
|
149
|
+
version: 0.5.1
|
150
150
|
- - ">="
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version: 0.
|
152
|
+
version: 0.5.1
|
153
153
|
description: |2
|
154
154
|
Utilizing the NDFD (National Weather Service Digital Forecast Database), weather forecasts are retrieved from NOAA's SOAP API and then translated into array/hash structures in Ruby.
|
155
155
|
email:
|