rtriplify 0.0.0 → 0.0.1
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 +41 -3
- data/lib/app/controllers/triplify_controller.rb +67 -67
- data/lib/app/helpers/triplify_helper.rb +1 -5
- data/lib/config/{database.yml → database_1.yml} +77 -57
- data/lib/model.rb +93 -46
- data/lib/rtriplify.rb +10 -11
- data/lib/tripleizer.rb +371 -116
- data/lib/triplify_metadata.rb +3 -3
- data/rails/init.rb +2 -2
- metadata +17 -7
- data/lib/triplify/acts_ass_yaffle.rb +0 -0
- data/lib/triplify.rb +0 -11
data/rails/init.rb
CHANGED
|
@@ -20,11 +20,11 @@ ActionController::Routing::Routes.draw do |map|
|
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
#["rtriplify"].each do |plugin_name|
|
|
23
|
-
reloadable_path = RAILS_ROOT + "/vendor/plugins/rtriplify/lib"
|
|
23
|
+
# reloadable_path = RAILS_ROOT + "/vendor/plugins/rtriplify/lib"
|
|
24
24
|
|
|
25
25
|
#ActiveSupport::Dependencies.load_once_paths.delete(reloadable_path)
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
#configatron.configure_from_yaml('config/database_1.yml')
|
|
29
|
-
configatron.configure_from_yaml('vendor/plugins/rtriplify/lib/config/database.yml')
|
|
29
|
+
#configatron.configure_from_yaml('vendor/plugins/rtriplify/lib/config/database.yml')
|
|
30
30
|
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.0.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Nico Patitz
|
|
@@ -16,8 +16,20 @@ cert_chain: []
|
|
|
16
16
|
|
|
17
17
|
date: 2007-09-03 00:00:00 +02:00
|
|
18
18
|
default_executable:
|
|
19
|
-
dependencies:
|
|
20
|
-
|
|
19
|
+
dependencies:
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
21
|
+
name: configatron
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
+
none: false
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
segments:
|
|
29
|
+
- 0
|
|
30
|
+
version: "0"
|
|
31
|
+
type: :runtime
|
|
32
|
+
version_requirements: *id001
|
|
21
33
|
description: a ruby clone of triplify. it can provide rdf data out of your existing database
|
|
22
34
|
email: nico.patitz@gmx.de
|
|
23
35
|
executables: []
|
|
@@ -32,7 +44,7 @@ files:
|
|
|
32
44
|
- README
|
|
33
45
|
- MIT-LICENSE
|
|
34
46
|
- rails/init.rb
|
|
35
|
-
- lib/config/
|
|
47
|
+
- lib/config/database_1.yml
|
|
36
48
|
- lib/app/controllers/triplify_controller.rb
|
|
37
49
|
- lib/app/helpers/triplify_helper.rb
|
|
38
50
|
- lib/app/models/triplify.rb
|
|
@@ -40,10 +52,8 @@ files:
|
|
|
40
52
|
- lib/model.rb
|
|
41
53
|
- lib/rtriplify.rb
|
|
42
54
|
- lib/tripleizer.rb
|
|
43
|
-
- lib/triplify/acts_ass_yaffle.rb
|
|
44
55
|
- lib/triplify/commands.rb
|
|
45
56
|
- lib/triplify/core_ext.rb
|
|
46
|
-
- lib/triplify.rb
|
|
47
57
|
- lib/triplify_metadata.rb
|
|
48
58
|
has_rdoc: true
|
|
49
59
|
homepage: http://www.triplify.org/
|
|
File without changes
|
data/lib/triplify.rb
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
#loading helpers and controllers
|
|
2
|
-
|
|
3
|
-
%w{ models controllers helpers}.each do |dir|
|
|
4
|
-
path = File.join(File.dirname(__FILE__), 'app', dir)
|
|
5
|
-
$LOAD_PATH << path
|
|
6
|
-
ActiveSupport::Dependencies.load_paths << path
|
|
7
|
-
ActiveSupport::Dependencies.load_once_paths.delete(path)
|
|
8
|
-
end
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|