public
Description: The Curies library implements the CURIE syntax for expressing Compact URIs. See http://www.w3.org/TR/curie/ for more information on the CURIE specification.
Homepage:
Clone URL: git://github.com/pius/curies.git
pius (author)
Fri Jan 09 02:26:36 -0800 2009
commit  608baabaf65a166e2e9402ab0a868198376b514d
tree    44e50785e6941642ab56023244ea6671b19f4b93
parent  a148e2a50add900596d595e3c8a78e07ce5b32f2
curies / curies.gemspec
100644 34 lines (29 sloc) 1.722 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{curies}
  s.version = "0.0.2"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Pius Uzamere"]
  s.date = %q{2009-01-08}
  s.description = %q{Curies implements the CURIE syntax for expressing Compact URIs. See http://www.w3.org/TR/curie/ for more information.}
  s.email = ["pius+curie@uyiosa.com"]
  s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "README.txt"]
  s.files = ["History.txt", "License.txt", "Manifest.txt", "README.txt", "Rakefile", "config/hoe.rb", "config/requirements.rb", "lib/curies.rb", "lib/curies/curie.rb", "lib/curies/version.rb", "script/destroy", "script/generate", "script/txt2html", "setup.rb", "spec/curies_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/website.rake"]
  s.homepage = %q{http://curies.rubyforge.org}
  s.rdoc_options = ["--main", "README.txt"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{curies}
  s.rubygems_version = %q{1.3.1}
  s.summary = %q{Curies implements the CURIE syntax for expressing Compact URIs. See http://www.w3.org/TR/curie/ for more information.}
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_development_dependency(%q<hoe>, [">= 1.8.2"])
    else
      s.add_dependency(%q<hoe>, [">= 1.8.2"])
    end
  else
    s.add_dependency(%q<hoe>, [">= 1.8.2"])
  end
end