akamaized 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -8,16 +8,16 @@ module Akamaized
8
8
 
9
9
  def initialize(opts = {})
10
10
  opts = {
11
- "username" => "",
12
- "password" => "",
13
- "host" => "",
14
- "base_dir" => ""
11
+ :username => "",
12
+ :password => "",
13
+ :host => "",
14
+ :base_dir => ""
15
15
  }.merge(opts)
16
16
 
17
- self.username = opts["username"]
18
- self.password = opts["password"]
19
- self.host = opts["host"]
20
- self.base_dir = opts["base_dir"]
17
+ self.username = opts[:username]
18
+ self.password = opts[:password]
19
+ self.host = opts[:host]
20
+ self.base_dir = opts[:base_dir]
21
21
  end
22
22
 
23
23
  end
@@ -1,3 +1,3 @@
1
1
  module Akamaized
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -10,6 +10,7 @@ describe Akamaized do
10
10
 
11
11
  before(:each) do
12
12
  @config = YAML::load(File.open(File.expand_path("../../config/akamai.yml", __FILE__)))
13
+
13
14
  end
14
15
 
15
16
  it "should not connect without valid credentials" do
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: akamaized
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.0
5
+ version: 0.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Brandon Hansen, Eric Casequin