current_weather 0.0.2 → 0.0.3

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.
data/.DS_Store ADDED
Binary file
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/weather/version', __FILE__)
2
+ require File.expand_path('../lib/current_weather/version', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.authors = ["michael verdi"]
data/lib/.DS_Store ADDED
Binary file
Binary file
File without changes
@@ -12,7 +12,7 @@ module WeatherApi
12
12
  self.condition = attributes['condition'].first
13
13
  self.temperature = attributes['temp_f'].first
14
14
  self.humidity = attributes['humidity'].first
15
- self.icon = attributes['icon'].first
15
+ self.icon = "www.google.com" + attributes['icon'].first
16
16
  self.wind_conditon = attributes['wind_condition'].first
17
17
  end
18
18
 
@@ -0,0 +1,3 @@
1
+ module Weather
2
+ VERSION = "0.0.3"
3
+ end
@@ -0,0 +1,4 @@
1
+ require "current_weather/version"
2
+ require "current_weather/client"
3
+ require "current_weather/todays_weather"
4
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: current_weather
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-06-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday
16
- requirement: &70330330335780 !ruby/object:Gem::Requirement
16
+ requirement: &70171874317760 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70330330335780
24
+ version_requirements: *70171874317760
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: nokogiri
27
- requirement: &70330330335360 !ruby/object:Gem::Requirement
27
+ requirement: &70171874317300 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70330330335360
35
+ version_requirements: *70171874317300
36
36
  description: google weather wrapper for ruby
37
37
  email:
38
38
  - michael.v.verdi@gmail.com
@@ -40,16 +40,19 @@ executables: []
40
40
  extensions: []
41
41
  extra_rdoc_files: []
42
42
  files:
43
+ - .DS_Store
43
44
  - .gitignore
44
45
  - Gemfile
45
46
  - LICENSE
46
47
  - README.md
47
48
  - Rakefile
48
- - lib/weather.rb
49
- - lib/weather/client.rb
50
- - lib/weather/todays_weather.rb
51
- - lib/weather/version.rb
52
- - weather.gemspec
49
+ - current_weather.gemspec
50
+ - lib/.DS_Store
51
+ - lib/current_weather.rb
52
+ - lib/current_weather/.DS_Store
53
+ - lib/current_weather/client.rb
54
+ - lib/current_weather/todays_weather.rb
55
+ - lib/current_weather/version.rb
53
56
  homepage: ''
54
57
  licenses: []
55
58
  post_install_message:
@@ -1,3 +0,0 @@
1
- module Weather
2
- VERSION = "0.0.2"
3
- end
data/lib/weather.rb DELETED
@@ -1,4 +0,0 @@
1
- require "weather/version"
2
- require "weather/client"
3
- require "weather/todays_weather"
4
-