weather-forecasts 1.2.2 → 1.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/Gemfile +3 -3
  4. data/README.md +1 -1
  5. data/lib/weather_forecasts.rb +20 -1
  6. data/lib/weather_forecasts/client/version.rb +1 -1
  7. data/spec/fixtures/vcr_cassettes/select_by_days_query.yml +74 -72
  8. data/spec/fixtures/vcr_cassettes/select_coordinates_by_cities_query.yml +6 -6
  9. data/spec/fixtures/vcr_cassettes/select_coordinates_by_zip_query.yml +7 -7
  10. data/spec/fixtures/vcr_cassettes/select_corner_coordinates_query.yml +7 -7
  11. data/spec/fixtures/vcr_cassettes/select_gridpoint_coordinates_query.yml +7 -7
  12. data/spec/fixtures/vcr_cassettes/select_hourly_query.yml +192 -150
  13. data/spec/fixtures/vcr_cassettes/select_linepoint_coordinates_query.yml +6 -6
  14. data/spec/fixtures/vcr_cassettes/select_query.yml +707 -673
  15. data/spec/fixtures/vcr_cassettes/select_square_coordinates_query.yml +7 -7
  16. data/spec/lib/{ndfd → weather_forecasts}/client/query/query_property_spec.rb +6 -6
  17. data/spec/lib/{ndfd → weather_forecasts}/client/query/select_by_days_query_spec.rb +2 -2
  18. data/spec/lib/{ndfd → weather_forecasts}/client/query/select_coordinates_by_cities_query_spec.rb +2 -2
  19. data/spec/lib/{ndfd → weather_forecasts}/client/query/select_coordinates_by_zip_query_spec.rb +5 -3
  20. data/spec/lib/{ndfd → weather_forecasts}/client/query/select_corner_coordinates_query_spec.rb +3 -3
  21. data/spec/lib/{ndfd → weather_forecasts}/client/query/select_gridpoint_coordinates_query_spec.rb +3 -3
  22. data/spec/lib/{ndfd → weather_forecasts}/client/query/select_hourly_query_spec.rb +2 -2
  23. data/spec/lib/{ndfd → weather_forecasts}/client/query/select_linepoint_coordinates_query_spec.rb +3 -3
  24. data/spec/lib/{ndfd → weather_forecasts}/client/query/select_query_spec.rb +2 -2
  25. data/spec/lib/{ndfd → weather_forecasts}/client/query/select_square_coordinates_query_spec.rb +3 -3
  26. data/spec/lib/{ndfd → weather_forecasts}/client/query/selection_attributes_spec.rb +0 -0
  27. data/spec/lib/{ndfd → weather_forecasts}/client/query_spec.rb +3 -3
  28. data/spec/lib/{ndfd → weather_forecasts}/client_spec.rb +9 -9
  29. data/spec/spec_helper.rb +5 -1
  30. data/weather-forecasts.gemspec +3 -3
  31. metadata +41 -42
@@ -31,7 +31,7 @@ http_interactions:
31
31
  Content-Type:
32
32
  - application/wsdl+xml
33
33
  Date:
34
- - Thu, 22 May 2014 23:16:13 GMT
34
+ - Mon, 28 Jul 2014 17:52:49 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: Thu, 22 May 2014 23:16:13 GMT
383
+ recorded_at: Mon, 28 Jul 2014 17:52:49 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
- - www4.mo
413
+ - www5.mo
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
- - Thu, 22 May 2014 23:19:13 GMT
423
+ - Mon, 28 Jul 2014 17:55:50 GMT
424
424
  Date:
425
- - Thu, 22 May 2014 23:16:13 GMT
425
+ - Mon, 28 Jul 2014 17:52:50 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&lt;/latLonList&gt;&lt;/dwml&gt;</listLatLonOut></ns1:LatLonListSquareResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
445
445
  http_version:
446
- recorded_at: Thu, 22 May 2014 23:16:13 GMT
447
- recorded_with: VCR 2.9.0
446
+ recorded_at: Mon, 28 Jul 2014 17:52:50 GMT
447
+ recorded_with: VCR 2.9.2
@@ -8,12 +8,12 @@ describe WeatherForecasts::Client::QueryProperty do
8
8
 
9
9
  describe "#initialize" do
10
10
  it "sets the appropriate defaults" do
11
- subject.name.should == name
12
- subject.type.should == String
13
- subject.options.should be_nil
14
- subject.default.should be_nil
15
- subject.required.should be_false
16
- subject.required_keys.should be_empty
11
+ expect(subject.name).to eq(name)
12
+ expect(subject.type).to eq(String)
13
+ expect(subject.options).to be_nil
14
+ expect(subject.default).to be_nil
15
+ expect(subject.required).to be_falsey
16
+ expect(subject.required_keys).to be_empty
17
17
  end
18
18
  end
19
19
 
@@ -28,8 +28,8 @@ describe WeatherForecasts::Client::SelectByDaysQuery do
28
28
  end
29
29
 
30
30
  it "returns a valid response" do
31
- @response.should be_a(Hash)
32
- @response[:parameters]["point1"][:temperature][:maximum][:name].should == "Daily Maximum Temperature"
31
+ expect(@response).to be_a(Hash)
32
+ expect(@response[:parameters]["point1"][:temperature][:maximum][:name]).to eq("Daily Maximum Temperature")
33
33
  end
34
34
  end
35
35
  end
@@ -24,9 +24,9 @@ describe WeatherForecasts::Client::SelectCoordinatesByCitiesQuery do
24
24
  end
25
25
 
26
26
  it "returns a valid response" do
27
- @response.should be_a(Hash)
27
+ expect(@response).to be_a(Hash)
28
28
  @response["Denver,CO"].values.each do |value|
29
- value.should be_a(Numeric)
29
+ expect(value).to be_a(Numeric)
30
30
  end
31
31
  end
32
32
  end
@@ -24,10 +24,12 @@ describe WeatherForecasts::Client::SelectCoordinatesByZipQuery do
24
24
  end
25
25
 
26
26
  it "returns a valid response" do
27
- @response.should be_a(Hash)
28
- @response.keys.should include(*conditions[:zip])
27
+ expect(@response).to be_a(Hash)
28
+ expect(@response.keys).to include(*conditions[:zip])
29
29
  @response.each do |_, value|
30
- value.values.each {|v| v.should be_a(Numeric) }
30
+ value.values.each do |v|
31
+ expect(v).to be_a(Numeric)
32
+ end
31
33
  end
32
34
  end
33
35
  end
@@ -24,11 +24,11 @@ describe WeatherForecasts::Client::SelectCornerCoordinatesQuery do
24
24
  end
25
25
 
26
26
  it "returns a valid response" do
27
- @response.should be_a(Array)
27
+ expect(@response).to be_a(Array)
28
28
 
29
- @response.first.keys.should include(:latitude, :longitude)
29
+ expect(@response.first.keys).to include(:latitude, :longitude)
30
30
  @response.first.values.each do |value|
31
- value.should be_a(Numeric)
31
+ expect(value).to be_a(Numeric)
32
32
  end
33
33
  end
34
34
  end
@@ -26,11 +26,11 @@ describe WeatherForecasts::Client::SelectGridpointCoordinatesQuery do
26
26
  end
27
27
 
28
28
  it "returns a valid response" do
29
- @response.should be_a(Array)
29
+ expect(@response).to be_a(Array)
30
30
 
31
- @response.first.keys.should include(:latitude, :longitude)
31
+ expect(@response.first.keys).to include(:latitude, :longitude)
32
32
  @response.first.values.each do |value|
33
- value.should be_a(Numeric)
33
+ expect(value).to be_a(Numeric)
34
34
  end
35
35
  end
36
36
  end
@@ -18,8 +18,8 @@ describe WeatherForecasts::Client::SelectHourlyQuery do
18
18
  end
19
19
 
20
20
  it "returns a valid response" do
21
- @response.should be_a(Hash)
22
- @response[:parameters]["point1"][:temperature][:hourly][:values].first[:value].should be_a(Numeric)
21
+ expect(@response).to be_a(Hash)
22
+ expect(@response[:parameters]["point1"][:temperature][:hourly][:values].first[:value]).to be_a(Numeric)
23
23
  end
24
24
  end
25
25
  end
@@ -25,11 +25,11 @@ describe WeatherForecasts::Client::SelectLinepointCoordinatesQuery do
25
25
  end
26
26
 
27
27
  it "returns a valid response" do
28
- @response.should be_a(Array)
28
+ expect(@response).to be_a(Array)
29
29
 
30
- @response.first.keys.should include(:latitude, :longitude)
30
+ expect(@response.first.keys).to include(:latitude, :longitude)
31
31
  @response.first.values.each do |value|
32
- value.should be_a(Numeric)
32
+ expect(value).to be_a(Numeric)
33
33
  end
34
34
  end
35
35
  end
@@ -39,8 +39,8 @@ describe WeatherForecasts::Client::SelectQuery do
39
39
 
40
40
  # TODO: Add verification for each metric
41
41
  it "returns a valid response" do
42
- @response.should be_a(Hash)
43
- @response[:parameters]["point1"][:temperature][:maximum][:name].should == "Daily Maximum Temperature"
42
+ expect(@response).to be_a(Hash)
43
+ expect(@response[:parameters]["point1"][:temperature][:maximum][:name]).to eq("Daily Maximum Temperature")
44
44
  end
45
45
  end
46
46
  end
@@ -26,11 +26,11 @@ describe WeatherForecasts::Client::SelectSquareCoordinatesQuery do
26
26
  end
27
27
 
28
28
  it "returns a valid response" do
29
- @response.should be_a(Array)
29
+ expect(@response).to be_a(Array)
30
30
 
31
- @response.first.keys.should include(:latitude, :longitude)
31
+ expect(@response.first.keys).to include(:latitude, :longitude)
32
32
  @response.first.values.each do |value|
33
- value.should be_a(Numeric)
33
+ expect(value).to be_a(Numeric)
34
34
  end
35
35
  end
36
36
  end
@@ -28,16 +28,16 @@ describe WeatherForecasts::Client::Query do
28
28
  describe "#where" do
29
29
  it "updates the #conditions attributes and sets any defaults that aren't set" do
30
30
  subject.where(conditions_with_defaults)
31
- subject.conditions.should == conditions_with_defaults.merge(:property2 => "one")
31
+ expect(subject.conditions).to eq(conditions_with_defaults.merge(:property2 => "one"))
32
32
  end
33
33
 
34
34
  it "does not set a conditions to a default value if it is already set" do
35
35
  subject.where(conditions_overriding_defaults)
36
- subject.conditions.should == conditions_overriding_defaults
36
+ expect(subject.conditions).to eq(conditions_overriding_defaults)
37
37
  end
38
38
 
39
39
  it "returns self" do
40
- subject.where(conditions_overriding_defaults).should be_a(subclass)
40
+ expect(subject.where(conditions_overriding_defaults)).to be_a(subclass)
41
41
  end
42
42
  end
43
43
 
@@ -7,55 +7,55 @@ describe WeatherForecasts::Client do
7
7
 
8
8
  describe "#soap_client" do
9
9
  it "returns a soap client" do
10
- subject.soap_client.should be_a(Savon::Client)
10
+ expect(subject.soap_client).to be_a(Savon::Client)
11
11
  end
12
12
  end
13
13
 
14
14
  describe "#select" do
15
15
  it "returns as WeatherForecasts::Client::SelectQuery object" do
16
- subject.select(options).should be_a(WeatherForecasts::Client::SelectQuery)
16
+ expect(subject.select(options)).to be_a(WeatherForecasts::Client::SelectQuery)
17
17
  end
18
18
  end
19
19
 
20
20
  describe "#select_by_days" do
21
21
  it "returns as WeatherForecasts::Client::SelectByDaysQuery object" do
22
- subject.select_by_days.should be_a(WeatherForecasts::Client::SelectByDaysQuery)
22
+ expect(subject.select_by_days).to be_a(WeatherForecasts::Client::SelectByDaysQuery)
23
23
  end
24
24
  end
25
25
 
26
26
  describe "#select_coordinates_by_zip" do
27
27
  it "returns as WeatherForecasts::Client::SelectCoordinatesByZipQuery object" do
28
- subject.select_coordinates_by_zip.should be_a(WeatherForecasts::Client::SelectCoordinatesByZipQuery)
28
+ expect(subject.select_coordinates_by_zip).to be_a(WeatherForecasts::Client::SelectCoordinatesByZipQuery)
29
29
  end
30
30
  end
31
31
 
32
32
  describe "#select_gridpoint_coordinates" do
33
33
  it "returns as WeatherForecasts::Client::SelectGridpointCoordinatesQuery object" do
34
- subject.select_gridpoint_coordinates.should be_a(WeatherForecasts::Client::SelectGridpointCoordinatesQuery)
34
+ expect(subject.select_gridpoint_coordinates).to be_a(WeatherForecasts::Client::SelectGridpointCoordinatesQuery)
35
35
  end
36
36
  end
37
37
 
38
38
  describe "#select_linepoint_coordinates" do
39
39
  it "returns as WeatherForecasts::Client::SelectLinepointCoordinatesQuery object" do
40
- subject.select_linepoint_coordinates.should be_a(WeatherForecasts::Client::SelectLinepointCoordinatesQuery)
40
+ expect(subject.select_linepoint_coordinates).to be_a(WeatherForecasts::Client::SelectLinepointCoordinatesQuery)
41
41
  end
42
42
  end
43
43
 
44
44
  describe "#select_cities_coordinates" do
45
45
  it "returns as WeatherForecasts::Client::SelectCitiesCoordinatesQuery object" do
46
- subject.select_coordinates_by_cities.should be_a(WeatherForecasts::Client::SelectCoordinatesByCitiesQuery)
46
+ expect(subject.select_coordinates_by_cities).to be_a(WeatherForecasts::Client::SelectCoordinatesByCitiesQuery)
47
47
  end
48
48
  end
49
49
 
50
50
  describe "#select_corner_coordinates" do
51
51
  it "returns as WeatherForecasts::Client::SelectCornerCoordinatesQuery object" do
52
- subject.select_corner_coordinates.should be_a(WeatherForecasts::Client::SelectCornerCoordinatesQuery)
52
+ expect(subject.select_corner_coordinates).to be_a(WeatherForecasts::Client::SelectCornerCoordinatesQuery)
53
53
  end
54
54
  end
55
55
 
56
56
  describe "#select_square_coordinates" do
57
57
  it "returns as WeatherForecasts::Client::SelectSquareCoordinatesQuery object" do
58
- subject.select_square_coordinates.should be_a(WeatherForecasts::Client::SelectSquareCoordinatesQuery)
58
+ expect(subject.select_square_coordinates).to be_a(WeatherForecasts::Client::SelectSquareCoordinatesQuery)
59
59
  end
60
60
  end
61
61
  end
data/spec/spec_helper.rb CHANGED
@@ -1,5 +1,10 @@
1
1
  ENV["ENV"] = "test"
2
2
 
3
+ # Uncomment this and comment out the coveralls code to generate local
4
+ # coverage reports
5
+ # require 'simplecov'
6
+ # SimpleCov.start
7
+
3
8
  require 'coveralls'
4
9
  Coveralls.wear!
5
10
 
@@ -26,7 +31,6 @@ VCR.configure do |c|
26
31
  end
27
32
 
28
33
  RSpec.configure do |config|
29
- config.treat_symbols_as_metadata_keys_with_true_values = true
30
34
  config.run_all_when_everything_filtered = true
31
35
  config.filter_run :focus
32
36
  config.order = 'random'
@@ -23,9 +23,9 @@ Gem::Specification.new do |s|
23
23
 
24
24
  s.executables << 'wf-console'
25
25
 
26
- s.add_runtime_dependency 'dwml', '~> 1.1.2', '>= 1.1.2'
27
- s.add_runtime_dependency 'savon', '~> 2.5.1', '>= 2.5.1'
28
- s.add_runtime_dependency 'httpi', '~>2.1.0', '>= 2.1.0'
26
+ s.add_runtime_dependency 'dwml', '~> 1.1.3', '>= 1.1.3'
27
+ s.add_runtime_dependency 'savon', '~> 2.6.0', '>= 2.6.0'
28
+ s.add_runtime_dependency 'httpi', '~>2.2.0', '>= 2.2.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
31
  s.add_runtime_dependency 'activesupport', '~> 4.1.0', '>= 4.1.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: weather-forecasts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Angelo Lakra
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-28 00:00:00.000000000 Z
11
+ date: 2015-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dwml
@@ -16,60 +16,60 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.1.2
19
+ version: 1.1.3
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 1.1.2
22
+ version: 1.1.3
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: 1.1.2
29
+ version: 1.1.3
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 1.1.2
32
+ version: 1.1.3
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: savon
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: 2.5.1
39
+ version: 2.6.0
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
- version: 2.5.1
42
+ version: 2.6.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.5.1
49
+ version: 2.6.0
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: 2.5.1
52
+ version: 2.6.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.1.0
59
+ version: 2.2.0
60
60
  - - ">="
61
61
  - !ruby/object:Gem::Version
62
- version: 2.1.0
62
+ version: 2.2.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.1.0
69
+ version: 2.2.0
70
70
  - - ">="
71
71
  - !ruby/object:Gem::Version
72
- version: 2.1.0
72
+ version: 2.2.0
73
73
  - !ruby/object:Gem::Dependency
74
74
  name: nokogiri
75
75
  requirement: !ruby/object:Gem::Requirement
@@ -195,19 +195,19 @@ files:
195
195
  - spec/fixtures/vcr_cassettes/select_linepoint_coordinates_query.yml
196
196
  - spec/fixtures/vcr_cassettes/select_query.yml
197
197
  - spec/fixtures/vcr_cassettes/select_square_coordinates_query.yml
198
- - spec/lib/ndfd/client/query/query_property_spec.rb
199
- - spec/lib/ndfd/client/query/select_by_days_query_spec.rb
200
- - spec/lib/ndfd/client/query/select_coordinates_by_cities_query_spec.rb
201
- - spec/lib/ndfd/client/query/select_coordinates_by_zip_query_spec.rb
202
- - spec/lib/ndfd/client/query/select_corner_coordinates_query_spec.rb
203
- - spec/lib/ndfd/client/query/select_gridpoint_coordinates_query_spec.rb
204
- - spec/lib/ndfd/client/query/select_hourly_query_spec.rb
205
- - spec/lib/ndfd/client/query/select_linepoint_coordinates_query_spec.rb
206
- - spec/lib/ndfd/client/query/select_query_spec.rb
207
- - spec/lib/ndfd/client/query/select_square_coordinates_query_spec.rb
208
- - spec/lib/ndfd/client/query/selection_attributes_spec.rb
209
- - spec/lib/ndfd/client/query_spec.rb
210
- - spec/lib/ndfd/client_spec.rb
198
+ - spec/lib/weather_forecasts/client/query/query_property_spec.rb
199
+ - spec/lib/weather_forecasts/client/query/select_by_days_query_spec.rb
200
+ - spec/lib/weather_forecasts/client/query/select_coordinates_by_cities_query_spec.rb
201
+ - spec/lib/weather_forecasts/client/query/select_coordinates_by_zip_query_spec.rb
202
+ - spec/lib/weather_forecasts/client/query/select_corner_coordinates_query_spec.rb
203
+ - spec/lib/weather_forecasts/client/query/select_gridpoint_coordinates_query_spec.rb
204
+ - spec/lib/weather_forecasts/client/query/select_hourly_query_spec.rb
205
+ - spec/lib/weather_forecasts/client/query/select_linepoint_coordinates_query_spec.rb
206
+ - spec/lib/weather_forecasts/client/query/select_query_spec.rb
207
+ - spec/lib/weather_forecasts/client/query/select_square_coordinates_query_spec.rb
208
+ - spec/lib/weather_forecasts/client/query/selection_attributes_spec.rb
209
+ - spec/lib/weather_forecasts/client/query_spec.rb
210
+ - spec/lib/weather_forecasts/client_spec.rb
211
211
  - spec/spec_helper.rb
212
212
  - spec/support/resources/sample_document.xml
213
213
  - weather-forecasts.gemspec
@@ -231,7 +231,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
231
231
  version: '0'
232
232
  requirements: []
233
233
  rubyforge_project:
234
- rubygems_version: 2.2.2
234
+ rubygems_version: 2.4.5
235
235
  signing_key:
236
236
  specification_version: 4
237
237
  summary: Client library for retrieving data from NOAA's weather forecast API
@@ -245,19 +245,18 @@ test_files:
245
245
  - spec/fixtures/vcr_cassettes/select_linepoint_coordinates_query.yml
246
246
  - spec/fixtures/vcr_cassettes/select_query.yml
247
247
  - spec/fixtures/vcr_cassettes/select_square_coordinates_query.yml
248
- - spec/lib/ndfd/client/query/query_property_spec.rb
249
- - spec/lib/ndfd/client/query/select_by_days_query_spec.rb
250
- - spec/lib/ndfd/client/query/select_coordinates_by_cities_query_spec.rb
251
- - spec/lib/ndfd/client/query/select_coordinates_by_zip_query_spec.rb
252
- - spec/lib/ndfd/client/query/select_corner_coordinates_query_spec.rb
253
- - spec/lib/ndfd/client/query/select_gridpoint_coordinates_query_spec.rb
254
- - spec/lib/ndfd/client/query/select_hourly_query_spec.rb
255
- - spec/lib/ndfd/client/query/select_linepoint_coordinates_query_spec.rb
256
- - spec/lib/ndfd/client/query/select_query_spec.rb
257
- - spec/lib/ndfd/client/query/select_square_coordinates_query_spec.rb
258
- - spec/lib/ndfd/client/query/selection_attributes_spec.rb
259
- - spec/lib/ndfd/client/query_spec.rb
260
- - spec/lib/ndfd/client_spec.rb
248
+ - spec/lib/weather_forecasts/client/query/query_property_spec.rb
249
+ - spec/lib/weather_forecasts/client/query/select_by_days_query_spec.rb
250
+ - spec/lib/weather_forecasts/client/query/select_coordinates_by_cities_query_spec.rb
251
+ - spec/lib/weather_forecasts/client/query/select_coordinates_by_zip_query_spec.rb
252
+ - spec/lib/weather_forecasts/client/query/select_corner_coordinates_query_spec.rb
253
+ - spec/lib/weather_forecasts/client/query/select_gridpoint_coordinates_query_spec.rb
254
+ - spec/lib/weather_forecasts/client/query/select_hourly_query_spec.rb
255
+ - spec/lib/weather_forecasts/client/query/select_linepoint_coordinates_query_spec.rb
256
+ - spec/lib/weather_forecasts/client/query/select_query_spec.rb
257
+ - spec/lib/weather_forecasts/client/query/select_square_coordinates_query_spec.rb
258
+ - spec/lib/weather_forecasts/client/query/selection_attributes_spec.rb
259
+ - spec/lib/weather_forecasts/client/query_spec.rb
260
+ - spec/lib/weather_forecasts/client_spec.rb
261
261
  - spec/spec_helper.rb
262
262
  - spec/support/resources/sample_document.xml
263
- has_rdoc: