digitalocean 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -68,10 +68,10 @@ module Digitalocean
68
68
  post_query = parts[1]
69
69
 
70
70
  singleton.send :define_method, "_#{method_name}" do |*args|
71
- pre_query = Digitalocean.process_standard_args_from_part(pre_query, args)
72
- post_query = Digitalocean.process_hash_args_from_part(post_query, args)
71
+ pre_query_for_method = Digitalocean.process_standard_args_from_part(pre_query, args)
72
+ post_query_for_method = Digitalocean.process_hash_args_from_part(post_query, args)
73
73
 
74
- [pre_query, post_query].join("?")
74
+ [pre_query_for_method, post_query_for_method].join("?")
75
75
  end
76
76
 
77
77
  singleton.send :define_method, method_name do |*args|
@@ -1,3 +1,3 @@
1
1
  module Digitalocean
2
- VERSION = "1.0.3"
2
+ VERSION = "1.0.4"
3
3
  end
@@ -12,7 +12,7 @@ describe Digitalocean do
12
12
  it { subject.api_endpoint.should eq "https://api.digitalocean.com" }
13
13
  it { subject.client_id.should eq "client_id_required" }
14
14
  it { subject.api_key.should eq "api_key_required" }
15
- it { subject::VERSION.should eq "1.0.3" }
15
+ it { subject::VERSION.should eq "1.0.4" }
16
16
  end
17
17
 
18
18
  describe "setting values" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: digitalocean
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-03-26 00:00:00.000000000 Z
13
+ date: 2014-03-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: faraday