reve 0.0.83 → 0.0.86

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/lib/reve.rb CHANGED
@@ -768,8 +768,8 @@ module Reve
768
768
  $stderr.puts "Fatal error ((#{e.to_s})): Couldn't search the XML document ((#{xml})) for any potential error messages! Is your Hpricot broken?"
769
769
  exit 1
770
770
  end
771
- @current_time = (x/:currenttime).inner_html.to_time rescue Time.now.utc # Shouldn't need to rescue this but one never knows
772
- @cached_until = (x/:cacheduntil).inner_html.to_time rescue nil # Errors aren't always cached
771
+ @current_time = (x/:currentTime).inner_html.to_time rescue Time.now.utc # Shouldn't need to rescue this but one never knows
772
+ @cached_until = (x/:cachedUntil).inner_html.to_time rescue nil # Errors aren't always cached
773
773
  return x if out.size < 1
774
774
  code = out.first['code'].to_i
775
775
  str = out.first.inner_html
data/test/test_reve.rb CHANGED
@@ -135,7 +135,7 @@ class TestReve < Test::Unit::TestCase
135
135
  corporation = @api.corporation_sheet :characterid => 123
136
136
  end
137
137
  assert_not_nil @api.last_hash
138
- assert_not_nil @api.cached_until
138
+ assert_kind_of Time, @api.cached_until
139
139
  assert_equal 150212025, corporation.id
140
140
  assert_equal "Banana Republic", corporation.name
141
141
  assert_equal "BR", corporation.ticker
@@ -179,7 +179,7 @@ class TestReve < Test::Unit::TestCase
179
179
 
180
180
  assert_equal 3, stations.size
181
181
  assert_not_nil @api.last_hash
182
- assert_not_nil @api.cached_until
182
+ assert_kind_of Time, @api.cached_until
183
183
 
184
184
  stations.each do |station|
185
185
  assert_not_nil station.id
@@ -312,7 +312,7 @@ class TestReve < Test::Unit::TestCase
312
312
  chars = @api.characters
313
313
  end
314
314
  assert_not_nil @api.last_hash
315
- assert_not_nil @api.cached_until
315
+ assert_kind_of Time, @api.cached_until
316
316
  assert_equal 1, chars.size
317
317
  chars.each do |char|
318
318
  assert_not_nil(char.name)
@@ -330,7 +330,7 @@ class TestReve < Test::Unit::TestCase
330
330
  bases = @api.starbases(:characterid => 1)
331
331
  end
332
332
  assert_not_nil @api.last_hash
333
- assert_not_nil @api.cached_until
333
+ assert_kind_of Time, @api.cached_until
334
334
  assert_equal 4, bases.size
335
335
  bases.each do |starbase|
336
336
  assert_instance_of Reve::Classes::Starbase, starbase
@@ -349,7 +349,7 @@ class TestReve < Test::Unit::TestCase
349
349
  fuels = @api.starbase_fuel(:starbaseid => 1,:characterid => 2)
350
350
  end
351
351
  assert_not_nil @api.last_hash
352
- assert_not_nil @api.cached_until
352
+ assert_kind_of Time, @api.cached_until
353
353
  assert_equal 14, fuels.size
354
354
  fuels.each do |fuel|
355
355
  assert_equal 1, fuel.starbase_id
@@ -365,7 +365,7 @@ class TestReve < Test::Unit::TestCase
365
365
  alliances = @api.alliances
366
366
  end
367
367
  assert_not_nil @api.last_hash
368
- assert_not_nil @api.cached_until
368
+ assert_kind_of Time, @api.cached_until
369
369
  assert_equal 3, alliances.size
370
370
  corpsize = 0
371
371
  alliances.each do |alliance|
@@ -388,7 +388,7 @@ class TestReve < Test::Unit::TestCase
388
388
  sovereignties = @api.sovereignty
389
389
  end
390
390
  assert_not_nil @api.last_hash
391
- assert_not_nil @api.cached_until
391
+ assert_kind_of Time, @api.cached_until
392
392
  assert_equal 7, sovereignties.size
393
393
  sovereignties.each do |sovereignty|
394
394
  assert_instance_of Reve::Classes::Sovereignty, sovereignty
@@ -405,7 +405,7 @@ class TestReve < Test::Unit::TestCase
405
405
  reftypes = @api.ref_types
406
406
  end
407
407
  assert_not_nil @api.last_hash
408
- assert_not_nil @api.cached_until
408
+ assert_kind_of Time, @api.cached_until
409
409
  assert_equal 6, reftypes.size
410
410
  reftypes.each do |reftype|
411
411
  assert_not_nil reftype.id
@@ -420,7 +420,7 @@ class TestReve < Test::Unit::TestCase
420
420
  orders = @api.personal_market_orders
421
421
  end
422
422
  assert_not_nil @api.last_hash
423
- assert_not_nil @api.cached_until
423
+ assert_kind_of Time, @api.cached_until
424
424
  assert_equal 11, orders.size
425
425
  buys = sells = 0
426
426
  orders.each do |order|
@@ -443,7 +443,7 @@ class TestReve < Test::Unit::TestCase
443
443
  orders = @api.corporate_market_orders :url => File.join(XML_BASE,'corporate_market_orders.xml')
444
444
  end
445
445
  assert_not_nil @api.last_hash
446
- assert_not_nil @api.cached_until
446
+ assert_kind_of Time, @api.cached_until
447
447
  assert_equal 1, orders.size
448
448
  buys = sells = 0
449
449
  orders.each do |order|
@@ -524,7 +524,7 @@ class TestReve < Test::Unit::TestCase
524
524
  mapjumps = @api.map_jumps
525
525
  end
526
526
  assert_not_nil @api.last_hash
527
- assert_not_nil @api.cached_until
527
+ assert_kind_of Time, @api.cached_until
528
528
  assert_equal 5, mapjumps.size
529
529
  mapjumps.each do |jump|
530
530
  assert_not_nil jump.system_id
@@ -539,7 +539,7 @@ class TestReve < Test::Unit::TestCase
539
539
  mapkills = @api.map_kills
540
540
  end
541
541
  assert_not_nil @api.last_hash
542
- assert_not_nil @api.cached_until
542
+ assert_kind_of Time, @api.cached_until
543
543
  assert_equal 4, mapkills.size
544
544
  mapkills.each do |kill|
545
545
  assert_not_nil kill.system_id
@@ -556,7 +556,7 @@ class TestReve < Test::Unit::TestCase
556
556
  skilltrees = @api.skill_tree
557
557
  end
558
558
  assert_not_nil @api.last_hash
559
- assert_not_nil @api.cached_until
559
+ assert_kind_of Time, @api.cached_until
560
560
  assert_equal 2, skilltrees.size
561
561
  skilltrees.each do |skill|
562
562
  assert_not_nil skill.type_id
@@ -582,7 +582,7 @@ class TestReve < Test::Unit::TestCase
582
582
  balance = @api.personal_wallet_balance(:characterid => 1)
583
583
  end
584
584
  assert_not_nil @api.last_hash
585
- assert_not_nil @api.cached_until
585
+ assert_kind_of Time, @api.cached_until
586
586
  assert_equal 7, balance.size
587
587
  balance.each do |bal|
588
588
  assert_not_nil bal.account_id
@@ -598,7 +598,7 @@ class TestReve < Test::Unit::TestCase
598
598
  trans = @api.personal_wallet_transactions(:characterid => 1)
599
599
  end
600
600
  assert_not_nil @api.last_hash
601
- assert_not_nil @api.cached_until
601
+ assert_kind_of Time, @api.cached_until
602
602
  assert_instance_of Reve::Classes::PersonalWalletTransaction, trans.first
603
603
  assert_equal 9, trans.size
604
604
  trans.each do |t|
@@ -622,7 +622,7 @@ class TestReve < Test::Unit::TestCase
622
622
  journal = @api.personal_wallet_journal(:characterid => 1)
623
623
  end
624
624
  assert_not_nil @api.last_hash
625
- assert_not_nil @api.cached_until
625
+ assert_kind_of Time, @api.cached_until
626
626
  assert_equal 8, journal.size
627
627
  journal.each do |j|
628
628
  assert_not_nil j.date
@@ -644,7 +644,7 @@ class TestReve < Test::Unit::TestCase
644
644
  members = @api.member_tracking(:characterid => 1)
645
645
  end
646
646
  assert_not_nil @api.last_hash
647
- assert_not_nil @api.cached_until
647
+ assert_kind_of Time, @api.cached_until
648
648
  assert_equal 2, members.size
649
649
  members.each do |member|
650
650
  assert_not_nil member.character_id
@@ -671,7 +671,7 @@ class TestReve < Test::Unit::TestCase
671
671
  sheet = @api.corporation_sheet
672
672
  end
673
673
  assert_not_nil @api.last_hash
674
- assert_not_nil @api.cached_until
674
+ assert_kind_of Time, @api.cached_until
675
675
  assert_equal 7, sheet.divisions.size
676
676
  assert_equal 7, sheet.wallet_divisions.size
677
677
  end
@@ -683,7 +683,7 @@ class TestReve < Test::Unit::TestCase
683
683
  sheet = @api.corporation_sheet :corporationid => 134300597
684
684
  end
685
685
  assert_not_nil @api.last_hash
686
- assert_not_nil @api.cached_until
686
+ assert_kind_of Time, @api.cached_until
687
687
  assert_equal 0, sheet.divisions.size
688
688
  assert_equal 0, sheet.wallet_divisions.size
689
689
  end
@@ -695,7 +695,7 @@ class TestReve < Test::Unit::TestCase
695
695
  skill = @api.skill_in_training(:characterid => 1, :url => XML_BASE + 'skill_in_training-none.xml')
696
696
  end
697
697
  assert_not_nil @api.last_hash
698
- assert_not_nil @api.cached_until
698
+ assert_kind_of Time, @api.cached_until
699
699
  assert_equal false, skill.skill_in_training
700
700
  end
701
701
 
@@ -706,7 +706,7 @@ class TestReve < Test::Unit::TestCase
706
706
  skill = @api.skill_in_training(:characterid => 123, :url => URI.parse('http://svn.crudvision.com/reve/trunk/test/xml/skill_in_training-none.xml'))
707
707
  end
708
708
  assert_not_nil @api.last_hash
709
- assert_not_nil @api.cached_until
709
+ assert_kind_of Time, @api.cached_until
710
710
  assert_equal false, skill.skill_in_training
711
711
  end
712
712
 
@@ -717,7 +717,7 @@ class TestReve < Test::Unit::TestCase
717
717
  skill = @api.skill_in_training(:characerid => 1)
718
718
  end
719
719
  assert_not_nil @api.last_hash
720
- assert_not_nil @api.cached_until
720
+ assert_kind_of Time, @api.cached_until
721
721
  assert skill.skill_in_training
722
722
  assert_not_nil skill.start_time
723
723
  assert_not_nil skill.type_id
@@ -734,7 +734,7 @@ class TestReve < Test::Unit::TestCase
734
734
  sheet = @api.character_sheet(:characterid => 1)
735
735
  end
736
736
  assert_not_nil @api.last_hash
737
- assert_not_nil @api.cached_until
737
+ assert_kind_of Time, @api.cached_until
738
738
 
739
739
  assert_not_nil sheet.name
740
740
  assert_not_nil sheet.race
data/test/xml/assets.xml CHANGED
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <eveapi version="2">
3
- <currenttime>2007-12-18 18:27:27</currenttime>
3
+ <currentTime>2007-12-18 18:27:27</currentTime>
4
4
  <result>
5
5
  <rowset columns="itemID,locationID,typeID,quantity,flag,singleton" name="assets" key="itemID">
6
6
  <row typeid="222" itemid="427545405" singleton="0" quantity="100" flag="4" locationid="60004390">
@@ -1,11 +1,11 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <eveapi version="2">
3
- <currenttime>2008-01-19 13:06:24</currenttime>
4
- <result>
5
- <rowset columns="name,characterID" name="characters" key="characterID">
6
- <row name="CCP Garthagk" characterid="797400947">
7
- </row><row name="Raquel Smith" characterid="892008733">
8
- </row></rowset>
9
- </result>
10
- <cacheduntil>2008-02-19 13:06:24</cacheduntil>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <eveapi version="2">
3
+ <currentTime>2008-01-19 13:06:24</currentTime>
4
+ <result>
5
+ <rowset columns="name,characterID" name="characters" key="characterID">
6
+ <row name="CCP Garthagk" characterid="797400947">
7
+ </row><row name="Raquel Smith" characterid="892008733">
8
+ </row></rowset>
9
+ </result>
10
+ <cacheduntil>2008-02-19 13:06:24</cacheduntil>
11
11
  </eveapi>
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <eveapi version="2">
3
- <currenttime>2008-02-03 14:51:15</currenttime>
3
+ <currentTime>2008-02-03 14:51:15</currentTime>
4
4
  <result>
5
5
  <rowset columns="itemID,locationID,typeID,quantity,flag,singleton" name="assets" key="itemID">
6
6
  <row typeid="215" itemid="1454093021" singleton="0" quantity="100" flag="62" locationid="60003838">
@@ -1,10 +1,10 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <eveapi version="2">
3
- <currenttime>2008-02-03 14:50:26</currenttime>
4
- <result>
5
- <rowset columns="orderID,charID,stationID,volEntered,volRemaining,minVolume,orderState,typeID,range,accountKey,duration,escrow,price,bid,issued" name="orders" key="orderID">
6
- <row minvolume="1" price="2.50" orderid="640467432" typeid="215" volremaining="50" issued="2008-02-03 14:47:15" stationid="60003838" volentered="50" escrow="0.00" charid="892804655" orderstate="0" bid="0" accountkey="1000" range="32767" duration="90">
7
- </row></rowset>
8
- </result>
9
- <cacheduntil>2008-02-03 15:50:26</cacheduntil>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <eveapi version="2">
3
+ <currentTime>2008-02-03 14:50:26</currentTime>
4
+ <result>
5
+ <rowset columns="orderID,charID,stationID,volEntered,volRemaining,minVolume,orderState,typeID,range,accountKey,duration,escrow,price,bid,issued" name="orders" key="orderID">
6
+ <row minvolume="1" price="2.50" orderid="640467432" typeid="215" volremaining="50" issued="2008-02-03 14:47:15" stationid="60003838" volentered="50" escrow="0.00" charid="892804655" orderstate="0" bid="0" accountkey="1000" range="32767" duration="90">
7
+ </row></rowset>
8
+ </result>
9
+ <cachedUntil>2008-02-03 15:50:26</cachedUntil>
10
10
  </eveapi>
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <eveapi version="2">
3
- <currenttime>2008-02-03 14:50:39</currenttime>
3
+ <currentTime>2008-02-03 14:50:39</currentTime>
4
4
  <result>
5
5
  <rowset columns="accountID,accountKey,balance" name="accounts" key="accountID">
6
6
  <row accountID="9161533" accountKey="1000" balance="18004409.84">
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <eveapi version="2">
3
- <currenttime>2008-02-03 14:51:03</currenttime>
3
+ <currentTime>2008-02-03 14:51:03</currentTime>
4
4
  <result>
5
5
  <rowset columns="date,refID,refTypeID,ownerName1,ownerID1,ownerName2,ownerID2,argName1,argID1,amount,balance,reason" name="entries" key="refID">
6
6
  <row date="2008-02-03 14:47:00" argID1="1" argName1="EVE System" amount="-100.00" ownerID1="892804655" refID="922128913" ownerName1="Liquidator Brunt" refTypeID="46" ownerID2="1000035" reason="" ownerName2="Caldari Navy" balance="18004409.84">
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <eveapi version="2">
3
- <currenttime>2008-02-03 14:50:52</currenttime>
3
+ <currentTime>2008-02-03 14:50:52</currentTime>
4
4
  <result>
5
5
  <rowset columns="transactionDateTime,transactionID,quantity,typeName,typeID,price,clientID,clientName,characterID,characterName,stationID,stationName,transactionType,transactionFor" name="transactions" key="transactionID">
6
6
  <row characterName="Liquidator Brunt" price="2.70" transactionType="buy" typeID="215" transactionID="545372452" transactionDateTime="2008-02-03 14:47:00" transactionFor="corporation" stationID="60003838" characterID="892804655" clientName="Ceredrif" quantity="100" stationName="Sarekuwa III - Moon 8 - Caldari Navy Assembly Plant" typeName="Iron Charge S" clientID="1710698307">
data/test/xml/errors.xml CHANGED
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <eveapi version="2">
3
- <currenttime>2008-02-03 13:58:00</currenttime>
3
+ <currentTime>2008-02-03 13:58:00</currentTime>
4
4
  <result>
5
5
  <rowset columns="errorCode,errorText" name="errors" key="errorCode">
6
6
  <row errorText="Expected before ref/trans ID = 0: wallet not previously loaded." errorCode="100">
@@ -1,11 +1,11 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
- <eveapi version="2">
3
- <currentTime>2007-12-15 13:45:14</currentTime>
4
- <result>
5
- <rowset name="jobs" key="jobID" columns="jobID,assemblyLineID,containerID,installedItemID,installedItemLocationID,installedItemQuantity,installedItemProductivityLevel,installedItemMaterialLevel,installedItemLicensedProductionRunsRemaining,outputLocationID,installerID,runs,licensedProductionRuns,installedInSolarSystemID,containerLocationID,materialMultiplier,charMaterialMultiplier,timeMultiplier,charTimeMultiplier,installedItemTypeID,outputTypeID,containerTypeID,installedItemCopy,completed,completedSuccessfully,installedItemFlag,outputFlag,activityID,completedStatus,installTime,beginProductionTime,endProductionTime,pauseProductionTime">
6
- <row jobID="10590126" assemblyLineID="33966" containerID="60003865" installedItemID="111397161" installedItemLocationID="60003865" installedItemQuantity="1" installedItemProductivityLevel="50" installedItemMaterialLevel="50" installedItemLicensedProductionRunsRemaining="-1" outputLocationID="60003865" installerID="837727449" runs="180" licensedProductionRuns="0" installedInSolarSystemID="30001403" containerLocationID="30001403" materialMultiplier="1" charMaterialMultiplier="1" timeMultiplier="1" charTimeMultiplier="0.8" installedItemTypeID="806" outputTypeID="205" containerTypeID="1529" installedItemCopy="0" completed="0" completedSuccessfully="0" installedItemFlag="4" outputFlag="4" activityID="1" completedStatus="0" installTime="2007-07-29 12:05:00" beginProductionTime="2007-07-29 12:05:00" endProductionTime="2007-07-29 21:44:00" pauseProductionTime="0001-01-01 00:00:00" />
7
- <row jobID="10149805" assemblyLineID="33951" containerID="60003865" installedItemID="638992720" installedItemLocationID="60003865" installedItemQuantity="1" installedItemProductivityLevel="0" installedItemMaterialLevel="0" installedItemLicensedProductionRunsRemaining="1" outputLocationID="60003865" installerID="837727449" runs="1" licensedProductionRuns="0" installedInSolarSystemID="30001403" containerLocationID="30001403" materialMultiplier="1" charMaterialMultiplier="1" timeMultiplier="1" charTimeMultiplier="0.8" installedItemTypeID="17637" outputTypeID="17636" containerTypeID="1529" installedItemCopy="1" completed="1" completedSuccessfully="0" installedItemFlag="4" outputFlag="4" activityID="1" completedStatus="1" installTime="2007-07-15 20:21:00" beginProductionTime="2007-07-15 20:21:00" endProductionTime="2007-07-16 00:21:00" pauseProductionTime="0001-01-01 00:00:00" />
8
- </rowset>
9
- </result>
10
- <cachedUntil>2007-12-15 14:00:14</cachedUntil>
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2007-12-15 13:45:14</currentTime>
4
+ <result>
5
+ <rowset name="jobs" key="jobID" columns="jobID,assemblyLineID,containerID,installedItemID,installedItemLocationID,installedItemQuantity,installedItemProductivityLevel,installedItemMaterialLevel,installedItemLicensedProductionRunsRemaining,outputLocationID,installerID,runs,licensedProductionRuns,installedInSolarSystemID,containerLocationID,materialMultiplier,charMaterialMultiplier,timeMultiplier,charTimeMultiplier,installedItemTypeID,outputTypeID,containerTypeID,installedItemCopy,completed,completedSuccessfully,installedItemFlag,outputFlag,activityID,completedStatus,installTime,beginProductionTime,endProductionTime,pauseProductionTime">
6
+ <row jobID="10590126" assemblyLineID="33966" containerID="60003865" installedItemID="111397161" installedItemLocationID="60003865" installedItemQuantity="1" installedItemProductivityLevel="50" installedItemMaterialLevel="50" installedItemLicensedProductionRunsRemaining="-1" outputLocationID="60003865" installerID="837727449" runs="180" licensedProductionRuns="0" installedInSolarSystemID="30001403" containerLocationID="30001403" materialMultiplier="1" charMaterialMultiplier="1" timeMultiplier="1" charTimeMultiplier="0.8" installedItemTypeID="806" outputTypeID="205" containerTypeID="1529" installedItemCopy="0" completed="0" completedSuccessfully="0" installedItemFlag="4" outputFlag="4" activityID="1" completedStatus="0" installTime="2007-07-29 12:05:00" beginProductionTime="2007-07-29 12:05:00" endProductionTime="2007-07-29 21:44:00" pauseProductionTime="0001-01-01 00:00:00" />
7
+ <row jobID="10149805" assemblyLineID="33951" containerID="60003865" installedItemID="638992720" installedItemLocationID="60003865" installedItemQuantity="1" installedItemProductivityLevel="0" installedItemMaterialLevel="0" installedItemLicensedProductionRunsRemaining="1" outputLocationID="60003865" installerID="837727449" runs="1" licensedProductionRuns="0" installedInSolarSystemID="30001403" containerLocationID="30001403" materialMultiplier="1" charMaterialMultiplier="1" timeMultiplier="1" charTimeMultiplier="0.8" installedItemTypeID="17637" outputTypeID="17636" containerTypeID="1529" installedItemCopy="1" completed="1" completedSuccessfully="0" installedItemFlag="4" outputFlag="4" activityID="1" completedStatus="1" installTime="2007-07-15 20:21:00" beginProductionTime="2007-07-15 20:21:00" endProductionTime="2007-07-16 00:21:00" pauseProductionTime="0001-01-01 00:00:00" />
8
+ </rowset>
9
+ </result>
10
+ <cachedUntil>2007-12-15 14:00:14</cachedUntil>
11
11
  </eveapi>
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <eveapi version="1">
3
- <currenttime>2007-12-12 20:47:52</currenttime>
3
+ <currentTime>2007-12-12 20:47:52</currentTime>
4
4
  <result>
5
5
  <rowset columns="solarSystemID,jumps" name="solarSystems" key="solarSystemID">
6
6
  <row solarsystemid="30034971" shipjumps="10">
@@ -11,5 +11,5 @@
11
11
  </rowset>
12
12
  <datatime>2007-12-12 20:36:42</datatime>
13
13
  </result>
14
- <cacheduntil>2007-12-12 21:47:52</cacheduntil>
14
+ <cachedUntil>2007-12-12 21:47:52</cachedUntil>
15
15
  </eveapi>
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <eveapi version="1">
3
- <currenttime>2007-12-12 20:35:50</currenttime>
3
+ <currentTime>2007-12-12 20:35:50</currentTime>
4
4
  <result>
5
5
  <rowset columns="solarSystemID,shipKills,factionKills,podKills" name="solarSystems" key="solarSystemID">
6
6
  <row factionkills="17" shipkills="1" solarsystemid="30001723" podkills="0">
@@ -11,6 +11,6 @@
11
11
  </rowset>
12
12
  <datatime>2007-12-12 20:32:27</datatime>
13
13
  </result>
14
- <cacheduntil>2007-12-12 21:35:50</cacheduntil>
14
+ <cachedUntil>2007-12-12 21:35:50</cachedUntil>
15
15
  </eveapi>
16
16
 
@@ -37,4 +37,5 @@
37
37
  </row>
38
38
  </rowset>
39
39
  </result>
40
+ <cachedUntil>2007-06-21 10:57:20</cachedUntil>
40
41
  </eveapi>
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: reve
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.83
7
- date: 2008-03-07 00:00:00 +00:00
6
+ version: 0.0.86
7
+ date: 2008-03-11 00:00:00 +00:00
8
8
  summary: Reve is a Ruby library to interface with the Eve Online API
9
9
  require_paths:
10
10
  - lib