athena 0.1.1 → 0.1.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.
- data/README +2 -2
- data/Rakefile +3 -2
- data/lib/athena/formats/ferret.rb +7 -4
- data/lib/athena/version.rb +2 -2
- metadata +14 -4
data/README
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
== VERSION
|
|
4
4
|
|
|
5
|
-
This documentation refers to athena version 0.1.
|
|
5
|
+
This documentation refers to athena version 0.1.2
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
== DESCRIPTION
|
|
@@ -26,7 +26,7 @@ Rubyforge project:: <http://rubyforge.org/projects/prometheus>
|
|
|
26
26
|
|
|
27
27
|
== LICENSE AND COPYRIGHT
|
|
28
28
|
|
|
29
|
-
Copyright (C) 2007-
|
|
29
|
+
Copyright (C) 2007-2010 University of Cologne,
|
|
30
30
|
Albertus-Magnus-Platz, 50932 Cologne, Germany
|
|
31
31
|
|
|
32
32
|
athena is free software: you can redistribute it and/or modify it under the
|
data/Rakefile
CHANGED
|
@@ -6,7 +6,8 @@ begin
|
|
|
6
6
|
|
|
7
7
|
Hen.lay! {{
|
|
8
8
|
:rubyforge => {
|
|
9
|
-
:
|
|
9
|
+
:project => %q{prometheus},
|
|
10
|
+
:package => %q{athena}
|
|
10
11
|
},
|
|
11
12
|
|
|
12
13
|
:gem => {
|
|
@@ -14,7 +15,7 @@ begin
|
|
|
14
15
|
:summary => 'Convert database files to various formats.',
|
|
15
16
|
:files => FileList['lib/**/*.rb', 'bin/*'].to_a,
|
|
16
17
|
:extra_files => FileList['[A-Z]*', 'example/*'].to_a,
|
|
17
|
-
:dependencies => %w[xmlstreamin ruby-nuggets]
|
|
18
|
+
:dependencies => %w[builder xmlstreamin ruby-nuggets]
|
|
18
19
|
}
|
|
19
20
|
}}
|
|
20
21
|
rescue LoadError
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# #
|
|
4
4
|
# A component of athena, the database file converter. #
|
|
5
5
|
# #
|
|
6
|
-
# Copyright (C) 2007-
|
|
6
|
+
# Copyright (C) 2007-2010 University of Cologne, #
|
|
7
7
|
# Albertus-Magnus-Platz, #
|
|
8
8
|
# 50932 Cologne, Germany #
|
|
9
9
|
# #
|
|
@@ -28,8 +28,11 @@
|
|
|
28
28
|
|
|
29
29
|
require 'rubygems'
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
begin
|
|
32
|
+
gem 'ferret', ENV['FERRET_VERSION'] if ENV['FERRET_VERSION']
|
|
33
|
+
require 'ferret'
|
|
34
|
+
rescue LoadError
|
|
35
|
+
end
|
|
33
36
|
|
|
34
37
|
module Athena::Formats
|
|
35
38
|
|
|
@@ -55,7 +58,7 @@ module Athena::Formats
|
|
|
55
58
|
@parser = parser
|
|
56
59
|
end
|
|
57
60
|
|
|
58
|
-
end
|
|
61
|
+
end if Object.const_defined?(:Ferret)
|
|
59
62
|
|
|
60
63
|
def parse(source, &block)
|
|
61
64
|
path = source.path
|
data/lib/athena/version.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# #
|
|
4
4
|
# A component of athena, the database file converter. #
|
|
5
5
|
# #
|
|
6
|
-
# Copyright (C) 2007-
|
|
6
|
+
# Copyright (C) 2007-2010 University of Cologne, #
|
|
7
7
|
# Albertus-Magnus-Platz, #
|
|
8
8
|
# 50932 Cologne, Germany #
|
|
9
9
|
# #
|
|
@@ -30,7 +30,7 @@ module Athena::Version
|
|
|
30
30
|
|
|
31
31
|
MAJOR = 0
|
|
32
32
|
MINOR = 1
|
|
33
|
-
TINY =
|
|
33
|
+
TINY = 2
|
|
34
34
|
|
|
35
35
|
class << self
|
|
36
36
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: athena
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jens Wille
|
|
@@ -9,9 +9,19 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date:
|
|
12
|
+
date: 2010-02-03 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: builder
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
version:
|
|
15
25
|
- !ruby/object:Gem::Dependency
|
|
16
26
|
name: xmlstreamin
|
|
17
27
|
type: :runtime
|
|
@@ -68,12 +78,12 @@ licenses: []
|
|
|
68
78
|
|
|
69
79
|
post_install_message:
|
|
70
80
|
rdoc_options:
|
|
81
|
+
- --title
|
|
82
|
+
- athena Application documentation
|
|
71
83
|
- --main
|
|
72
84
|
- README
|
|
73
85
|
- --line-numbers
|
|
74
86
|
- --inline-source
|
|
75
|
-
- --title
|
|
76
|
-
- athena Application documentation
|
|
77
87
|
- --all
|
|
78
88
|
- --charset
|
|
79
89
|
- UTF-8
|