Adam

Description

Adam is a library for all things EVE.

Features

  • Parses killmails
  • Parses kill logs
  • Imports killmails from EDK-compatible feeds

Synopsis

Parse a killmail

kill = Adam::Killmail.parse(killmail)

kill.time                     # => 2010-09-23 15:43:04 +0200
kill.solar_system.name        # => Murethand
kill.victim.pilot             # => Caelum Dominus
kill.victim.corporation       # => Invicta.
kill.loot[0].name             # => Warp Disruptor II
kill.loot[0].quantity         # => 1

Parse a kill log

kill = Adam::KillLog.parse(kill_log)

kill.time                     # => 2010-09-23 15:43:04 +0200
kill.solar_system.name        # => Murethand
kill.victim.pilot             # => Caelum Dominus
kill.victim.corporation       # => Invicta.
kill.loot[0].name             # => Warp Disruptor II
kill.loot[0].quantity         # => 1

kill.to_s                     # => Kill log's killmail equivalent.

Import killmails

killboard = Adam::Killboard.new :uri => 'http://invicta.eve-kill.net/', :feed_uri =>  'http://feed.evsco.net/?a=feed&corp=Invicta.&combined=true'
killboard.killmails :week => 1, :year => 2010

Requirements

  • Ruby 1.9
  • Hpricot
  • ActiveRecord

Install

Adam can be installed as a Ruby gem or a Ruby on Rails plugin:

# Install as a gem
$ gem install adam

# Install as a Ruby on Rails plugin
$ rails plugin install git://github.com/jgorset/adam.git

Adam defines ActiveRecord models for Item, SolarSystem and Faction if your application hasn't already done so, but you'll need to populate database tables for each model:

$ mysql adam < db/factions.sql
$ mysql adam < db/solar_systems.sql
$ mysql adam < db/items.sql

Finally, you'll need to configure Adam so it can connect to your database:

Adam::configure do |c|
  c.database.adapter = 'mysql2'
  c.database.username = 'username'
  c.database.password = 'password'
  c.database.name = 'database'
  c.database.host = 'localhost'
end

That's it, you're done.

License

(The MIT License)

Copyright (c) 2010 Johannes Gorset

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.