Advertisement
Guest User

danbri

a guest
Sep 30th, 2008
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.58 KB | None | 0 0
  1. Gem::Specification.new do |s|
  2.   s.name = "rena"
  3.   s.version = "0.0.1"
  4.   s.date = "2008-07-13"
  5.   s.summary = "Ruby RDF library."
  6.   s.email = "tom@tommorris.org"
  7.   s.homepage = "http://github.com/tommorris/rena"
  8.   s.description = "Rena is a Ruby library for manipulating RDF files."
  9.   s.has_rdoc = true
  10.   s.authors = ['Tom Morris', 'Pius Uzamere', 'Patrick Sinclair']
  11.   s.files = ["README.txt", "Rakefile", "rena.gemspec", "lib/rena.rb", "lib/rena/bnode.rb", "lib/rena/graph.rb", "lib/rena/literal.rb", "lib/rena/n3parser.rb", "lib/rena/n3_grammar.treetop", "lib/rena/namespace.rb", "lib/rena/rdfxmlparser.rb", "lib/rena/rexml_hacks.rb", "lib/rena/triple.rb", "lib/rena/uriref.rb", "lib/rena/exceptions/about_each_exception.rb", "lib/rena/exceptions/uri_relative_exception.rb"]
  12.   s.test_files = ["test/test_uris.rb", "test/xml.rdf", "spec/bnode_spec.rb", "spec/graph_spec.rb", "spec/literal_spec.rb", "spec/namespaces_spec.rb", "spec/parser_spec.rb", "spec/rexml_hacks_spec.rb", "spec/triple_spec.rb", "spec/uriref_spec.rb"]
  13.   #s.rdoc_options = ["--main", "README.txt"]
  14.   #s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
  15.   s.add_dependency("addressable", [">= 1.0.4"])
  16.   s.add_dependency("treetop", [">= 1.2.4"])
  17. end
  18.  
  19. # tweaked by danbri,
  20. # danbri: phenny, tell tommorris that "lib/rena/n3_grammar.treetop" (was 'grammer') and "spec/bnode_spec.rb" (was "test/spec/bnode.spec.rb") , various "test/spec/" -> "spec/",  various ".spec" -> "_spec" ... tweaks needed in rena.gemspec before I could make a Rena gem
  21. #
  22. #    gem build rena.gemspec
  23. #    gem install rena-0.0.1.gem
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement