NewEden, The RubyGem

NewEden is ruby-interface to the EveOnline API.

Installation

gem install new_eden

And then execute:

$ bundle

Or install it yourself as:

$ gem install new_eden

Usage

require 'new_eden'

client = NewEden::Client.new do |config|
  config.keyId = '******'
  config.vCode = '******'
end

# example
puts client.map.kills.inspect

Future plans

  • Use local cache.

    client.map.kills #call API.
    client.map.kills #not call API. (see: cachedUntil)
    
  • Wait to chache-expire.

    client.map.kills #call API.
    client.map.kills do
    ... # wait expire the cachedUntil and to do block.
    end
    

Return thanks to...

Contact

Twitter: @Chiether