rdf 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (9) hide show
  1. data/AUTHORS +1 -0
  2. data/README +59 -0
  3. data/Rakefile +8 -0
  4. data/UNLICENSE +24 -0
  5. data/VERSION +1 -0
  6. data/bin/rdf +3 -0
  7. data/lib/rdf.rb +5 -0
  8. data/lib/rdf/version.rb +14 -0
  9. metadata +71 -0
data/AUTHORS ADDED
@@ -0,0 +1 @@
1
+ * Arto Bendiken <arto.bendiken@gmail.com> (Lead developer)
data/README ADDED
@@ -0,0 +1,59 @@
1
+ RDF.rb: RDF API for Ruby
2
+ ========================
3
+
4
+ This is an RDF API for Ruby.
5
+
6
+ ### About the Resource Description Framework (RDF)
7
+
8
+ * <http://www.w3.org/RDF/>
9
+ * <http://en.wikipedia.org/wiki/Resource_Description_Framework>
10
+
11
+ Documentation
12
+ -------------
13
+
14
+ * <http://rdfrb.rubyforge.org/>
15
+
16
+ Download
17
+ --------
18
+
19
+ To get a local working copy of the development repository, do:
20
+
21
+ % git clone git://github.com/bendiken/rdf.git
22
+
23
+ Alternatively, you can download the latest development version as a tarball
24
+ as follows:
25
+
26
+ % wget http://github.com/bendiken/rdf/tarball/master
27
+
28
+ Requirements
29
+ ------------
30
+
31
+ * [Addressable](http://addressable.rubyforge.org/) (>= 2.1.1)
32
+
33
+ Installation
34
+ ------------
35
+
36
+ The recommended installation method is via RubyGems. To install the latest
37
+ official release from Gemcutter, do:
38
+
39
+ % [sudo] gem install rdf
40
+
41
+ Resources
42
+ ---------
43
+
44
+ * <http://rdfrb.rubyforge.org/>
45
+ * <http://github.com/bendiken/rdf>
46
+ * <http://gemcutter.org/gems/rdf>
47
+ * <http://rubyforge.org/projects/rdfrb/>
48
+ * <http://raa.ruby-lang.org/project/rdf>
49
+
50
+ Author
51
+ ------
52
+
53
+ * [Arto Bendiken](mailto:arto.bendiken@gmail.com) - <http://ar.to/>
54
+
55
+ License
56
+ -------
57
+
58
+ RDF.rb is free and unencumbered public domain software. For more
59
+ information, see <http://unlicense.org/> or the accompanying UNLICENSE file.
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+ $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), 'lib')))
3
+ require 'rubygems'
4
+ begin
5
+ require 'rakefile' # http://github.com/bendiken/rakefile
6
+ rescue LoadError => e
7
+ end
8
+ require 'rdf'
@@ -0,0 +1,24 @@
1
+ This is free and unencumbered software released into the public domain.
2
+
3
+ Anyone is free to copy, modify, publish, use, compile, sell, or
4
+ distribute this software, either in source code form or as a compiled
5
+ binary, for any purpose, commercial or non-commercial, and by any
6
+ means.
7
+
8
+ In jurisdictions that recognize copyright laws, the author or authors
9
+ of this software dedicate any and all copyright interest in the
10
+ software to the public domain. We make this dedication for the benefit
11
+ of the public at large and to the detriment of our heirs and
12
+ successors. We intend this dedication to be an overt act of
13
+ relinquishment in perpetuity of all present and future rights to this
14
+ software under copyright law.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ For more information, please refer to <http://unlicense.org/>
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
data/bin/rdf ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby -rubygems
2
+ $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')))
3
+ require 'rdf'
@@ -0,0 +1,5 @@
1
+ require 'rdf/version'
2
+
3
+ module RDF
4
+ # TODO
5
+ end
@@ -0,0 +1,14 @@
1
+ module RDF
2
+ module VERSION
3
+ MAJOR = 0
4
+ MINOR = 0
5
+ TINY = 1
6
+ EXTRA = nil
7
+
8
+ STRING = [MAJOR, MINOR, TINY].join('.')
9
+ STRING << "-#{EXTRA}" if EXTRA
10
+
11
+ def self.to_s() STRING end
12
+ def self.to_str() STRING end
13
+ end
14
+ end
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rdf
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Arto Bendiken
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-12-20 00:00:00 +01:00
13
+ default_executable: rdf
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: addressable
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 2.1.1
24
+ version:
25
+ description: RDF.rb is a pure-Ruby library for working with Resource Description Framework (RDF) data.
26
+ email: arto.bendiken@gmail.com
27
+ executables:
28
+ - rdf
29
+ extensions: []
30
+
31
+ extra_rdoc_files: []
32
+
33
+ files:
34
+ - AUTHORS
35
+ - README
36
+ - Rakefile
37
+ - UNLICENSE
38
+ - VERSION
39
+ - bin/rdf
40
+ - lib/rdf.rb
41
+ - lib/rdf/version.rb
42
+ has_rdoc: false
43
+ homepage: http://rdfrb.rubyforge.org/
44
+ licenses:
45
+ - Public Domain
46
+ post_install_message:
47
+ rdoc_options: []
48
+
49
+ require_paths:
50
+ - lib
51
+ required_ruby_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: 1.8.2
56
+ version:
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: "0"
62
+ version:
63
+ requirements: []
64
+
65
+ rubyforge_project: rdfrb
66
+ rubygems_version: 1.3.5
67
+ signing_key:
68
+ specification_version: 3
69
+ summary: A Ruby library for working with Resource Description Framework (RDF) data.
70
+ test_files: []
71
+