fog 0.3.14 → 0.3.15
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/Gemfile.lock +1 -1
- data/fog.gemspec +2 -2
- data/lib/fog.rb +1 -1
- data/lib/fog/core/attributes.rb +1 -1
- metadata +3 -3
data/Gemfile.lock
CHANGED
data/fog.gemspec
CHANGED
|
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
## If your rubyforge_project name is different, then edit it and comment out
|
|
8
8
|
## the sub! line in the Rakefile
|
|
9
9
|
s.name = 'fog'
|
|
10
|
-
s.version = '0.3.
|
|
11
|
-
s.date = '2010-11-
|
|
10
|
+
s.version = '0.3.15'
|
|
11
|
+
s.date = '2010-11-03'
|
|
12
12
|
s.rubyforge_project = 'fog'
|
|
13
13
|
|
|
14
14
|
## Make sure your summary is short. The description may be as long
|
data/lib/fog.rb
CHANGED
data/lib/fog/core/attributes.rb
CHANGED
|
@@ -140,7 +140,7 @@ module Fog
|
|
|
140
140
|
unless self.class.ignored_attributes.include?(key)
|
|
141
141
|
if aliased_key = self.class.aliases[key]
|
|
142
142
|
send("#{aliased_key}=", value)
|
|
143
|
-
elsif (
|
|
143
|
+
elsif (public_methods | private_methods).detect {|method| ["#{key}=", :"#{key}="].include?(method)}
|
|
144
144
|
send("#{key}=", value)
|
|
145
145
|
else
|
|
146
146
|
attributes[key] = value
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 3
|
|
8
|
-
-
|
|
9
|
-
version: 0.3.
|
|
8
|
+
- 15
|
|
9
|
+
version: 0.3.15
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- geemus (Wesley Beary)
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-11-
|
|
17
|
+
date: 2010-11-03 00:00:00 -07:00
|
|
18
18
|
default_executable: fog
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|