forked from ActiveRDF/ActiveRDF
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
all adapters packaged as gem-plugins now
- Loading branch information
Eyal Oren
committed
Oct 24, 2006
1 parent
525f515
commit 08941c7
Showing
25 changed files
with
1,658 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,5 +35,5 @@ task :default => [:upload] | |
|
||
task :upload => :package do |task| | ||
sh "scp pkg/*.gem [email protected]:/home/eyal/webs/activerdf/gems/" | ||
sh "scp rdflite/pkg/*.gem [email protected]:/home/eyal/webs/activerdf/gems/" | ||
sh "scp activerdf-*/pkg/*.gem [email protected]:/home/eyal/webs/activerdf/gems/" | ||
end |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
== ActiveRDF Redland adapter | ||
This is the ActiveRDF adapter to the Redland RDF store. | ||
See http://www.activerdf.org/ and http://librdf.org for more information. | ||
|
||
== License | ||
This adapter is distributed under the LGPL[link:LICENSE] license. | ||
|
||
== Authors | ||
* Eyal Oren |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
require 'rake' | ||
require 'rake/testtask' | ||
require 'rake/clean' | ||
require 'rake/gempackagetask' | ||
require 'rake/rdoctask' | ||
require 'tools/rakehelp' | ||
require 'fileutils' | ||
include FileUtils | ||
|
||
setup_tests | ||
setup_clean ["pkg", "lib/*.bundle", "*.gem", ".config"] | ||
|
||
setup_rdoc ['README', 'LICENSE', 'lib/**/*.rb', 'doc/**/*.rdoc'] | ||
|
||
desc "Does a full compile, test run" | ||
task :default => [:test, :package] | ||
|
||
version="0.9" | ||
name="activerdf-redland" | ||
|
||
setup_gem(name, version) do |spec| | ||
spec.summary = "ActiveRDF adapter to Redland RDF store" | ||
spec.description = spec.summary | ||
spec.author="Eyal Oren <[email protected]" | ||
spec.add_dependency('gem_plugin', '>= 0.2.1') | ||
spec.add_dependency('activerdf', '>= 0.9.2') | ||
spec.files += Dir.glob("resources/**/*") | ||
end | ||
|
||
|
||
task :install => [:test, :package] do | ||
sh %{sudo gem install pkg/#{name}-#{version}.gem} | ||
end | ||
|
||
task :uninstall => [:clean] do | ||
sh %{sudo gem uninstall #{name}} | ||
end | ||
|
File renamed without changes.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
== ActiveRDF SPARQL adapter | ||
This is the ActiveRDF adapter to a SPARQL endpoint serving RDF. | ||
See http://www.activerdf.org/ for more information. | ||
|
||
== License | ||
This adapter is distributed under the LGPL[link:LICENSE] license. | ||
|
||
== Authors | ||
* Eyal Oren | ||
* Sebastian Gerke |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
require 'rake' | ||
require 'rake/testtask' | ||
require 'rake/clean' | ||
require 'rake/gempackagetask' | ||
require 'rake/rdoctask' | ||
require 'tools/rakehelp' | ||
require 'fileutils' | ||
include FileUtils | ||
|
||
setup_tests | ||
setup_clean ["pkg", "lib/*.bundle", "*.gem", ".config"] | ||
|
||
setup_rdoc ['README', 'LICENSE', 'lib/**/*.rb', 'doc/**/*.rdoc'] | ||
|
||
desc "Does a full compile, test run" | ||
task :default => [:test, :package] | ||
|
||
version="0.9" | ||
name="activerdf-sparql" | ||
|
||
setup_gem(name, version) do |spec| | ||
spec.summary = "ActiveRDF adapter to SPARQL endpoint" | ||
spec.description = spec.summary | ||
spec.author="Eyal Oren <[email protected]" | ||
spec.add_dependency('gem_plugin', '>= 0.2.1') | ||
spec.add_dependency('activerdf', '>= 0.9.2') | ||
spec.files += Dir.glob("resources/**/*") | ||
end | ||
|
||
|
||
task :install => [:test, :package] do | ||
sh %{sudo gem install pkg/#{name}-#{version}.gem} | ||
end | ||
|
||
task :uninstall => [:clean] do | ||
sh %{sudo gem uninstall #{name}} | ||
end | ||
|
Empty file.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.