Project

new_eden

0.0
No commit activity in last 3 years
No release in over 3 years
Interface to the EveOnline API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.9
~> 10.0

Runtime

 Project Readme

NewEden, The RubyGem

NewEden is ruby-interface to the EveOnline API.

Attention

This is alpha version.

  • v0.0.x -- alpha version. ( loose method )
  • v0.1.x -- beta version. ( loose spec )
  • v1.0.0 -- formalize. =)

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