eaal 0.1.15 → 0.1.16

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cd4cbf4273010abe2956f1c260f00ca6374433d0
4
- data.tar.gz: fa32311f2a5dea2a081fe1e1af04aefee5cf60d8
3
+ metadata.gz: 9544d1f4fff43904339ffc973b2c1662c32c7a4e
4
+ data.tar.gz: e293c585daad5109515cd6943b542055df13f06f
5
5
  SHA512:
6
- metadata.gz: 27d06aff241e463bf63ded5bdf0dc71af9d87b436a00a15d78d9d04a49bc8558472653108fc5251abcc1fa03f7d953ff4c09fe7e78df1f0fdbf4a2815138ab00
7
- data.tar.gz: 710fc263dcc8e1a8b15ecd034502eef38f1763db5603bd59371b32d362778d622497683da296171003f898d35195c4cdea7a99cb656e665e07e7504803d79de0
6
+ metadata.gz: 402c9bfb3ba3d69931491db13e8c7de7d7e050208974dd2fddeed0e8108403b4d3e78143b3e465071a4c08487ea560814c628352f4c8c6065f2b109f35132f2a
7
+ data.tar.gz: 7f3f81257d4df1c3952498ede71ff34eec1d8e233b618afebd22e6fb043d327e906d93b1455cc4c8967564e39917765d3a8e1e6b6672f302942999a6eb596f44
@@ -11,6 +11,7 @@ lib/eaal/cache/memcached.rb
11
11
  lib/eaal/exception.rb
12
12
  lib/eaal/result.rb
13
13
  lib/eaal/rowset.rb
14
+ lib/eaal/config.rb
14
15
  test/fixtures/test/test/account/Characters/Request_.xml
15
16
  test/fixtures/test/test/char/CharacterSheet/Request_.xml
16
17
  test/fixtures/test/test/char/CharacterSheet/Request_characterID_12345.xml
@@ -35,7 +35,7 @@ require 'eaal/rowset'
35
35
  require 'eaal/config'
36
36
 
37
37
  module EAAL
38
- VERSION = "0.1.15" # fix for Hoe.spec 2.x
38
+ VERSION = "0.1.16" # fix for Hoe.spec 2.x
39
39
  @@version_string = "EAAL" + VERSION # the version string, used as client name in http requests
40
40
 
41
41
  @@api_base = "https://api.eveonline.com" # the url used as basis for all requests, you might want to use gatecamper url or a personal proxy instead
@@ -0,0 +1,36 @@
1
+ module EAAL
2
+ class Config
3
+
4
+ def initialize(data={})
5
+ @data = {}
6
+ update!(data)
7
+ end
8
+
9
+ def update!(data)
10
+ data.each do |key, value|
11
+ self[key] = value
12
+ end
13
+ end
14
+
15
+ def [](key)
16
+ @data[key.to_sym]
17
+ end
18
+
19
+ def []=(key, value)
20
+ if value.class == Hash
21
+ @data[key.to_sym] = Config.new(value)
22
+ else
23
+ @data[key.to_sym] = value
24
+ end
25
+ end
26
+
27
+ def method_missing(sym, *args)
28
+ if sym.to_s =~ /(.+)=$/
29
+ self[$1] = args.first
30
+ else
31
+ self[sym]
32
+ end
33
+ end
34
+
35
+ end
36
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eaal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.15
4
+ version: 0.1.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Petermann
@@ -104,6 +104,7 @@ files:
104
104
  - lib/eaal/cache/base.rb
105
105
  - lib/eaal/cache/file.rb
106
106
  - lib/eaal/cache/memcached.rb
107
+ - lib/eaal/config.rb
107
108
  - lib/eaal/exception.rb
108
109
  - lib/eaal/result.rb
109
110
  - lib/eaal/rowset.rb