adam 1.0.2

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.
@@ -0,0 +1,15 @@
1
+ module Adam
2
+
3
+ module Killmail
4
+
5
+ class ValidationError < RuntimeError
6
+ attr_reader :source
7
+
8
+ def initialize(source = false)
9
+ @source = source
10
+ end
11
+ end
12
+
13
+ end
14
+
15
+ end
@@ -0,0 +1,7 @@
1
+ require 'active_record'
2
+
3
+ database_configuration = YAML::load_file(File.dirname(__FILE__) + '/../config/database.yml')
4
+ ActiveRecord::Base.establish_connection(database_configuration)
5
+
6
+ class Item < ActiveRecord::Base; end
7
+ class SolarSystem < ActiveRecord::Base; end
metadata ADDED
@@ -0,0 +1,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: adam
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 0
8
+ - 2
9
+ version: 1.0.2
10
+ platform: ruby
11
+ authors:
12
+ - Johannes Gorset
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-09-26 00:00:00 +02:00
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description:
22
+ email: jgorset@gmail.com
23
+ executables: []
24
+
25
+ extensions: []
26
+
27
+ extra_rdoc_files: []
28
+
29
+ files:
30
+ - config/database.yml
31
+ - db/adam.sql
32
+ - lib/adam/kill.rb
33
+ - lib/adam/kill_log/validation_error.rb
34
+ - lib/adam/kill_log.rb
35
+ - lib/adam/killboard/feed_error.rb
36
+ - lib/adam/killboard.rb
37
+ - lib/adam/killmail/validation_error.rb
38
+ - lib/adam/killmail.rb
39
+ - lib/adam.rb
40
+ - lib/models.rb
41
+ - README.md
42
+ has_rdoc: true
43
+ homepage: http://github.com/frkt/adam
44
+ licenses: []
45
+
46
+ post_install_message:
47
+ rdoc_options: []
48
+
49
+ require_paths:
50
+ - lib
51
+ required_ruby_version: !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ segments:
57
+ - 0
58
+ version: "0"
59
+ required_rubygems_version: !ruby/object:Gem::Requirement
60
+ none: false
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ segments:
65
+ - 0
66
+ version: "0"
67
+ requirements: []
68
+
69
+ rubyforge_project:
70
+ rubygems_version: 1.3.7
71
+ signing_key:
72
+ specification_version: 3
73
+ summary: Adam is a library for all things EVE
74
+ test_files: []
75
+