ddollar / simple-parser

Simple parsing library

This URL has Read+Write access

ddollar (author)
Mon Aug 24 22:05:43 -0700 2009
commit  17b8406bd7a1fad009a4934ae4b179148ce8a10b
tree    d2d692edea79fd2bc1aba3f842bc4227a68a8887
parent  9c851aaa04a629300a77e0761598a3a510e7cbcb
simple-parser / simple-parser.gemspec
100644 21 lines (14 sloc) 0.549 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
spec = Gem::Specification.new do |s|
  
  s.name = "simple-parser"
  s.version = "0.1.1"
  s.summary = "Simple parser"
  s.homepage = "http://peervoice.com/software/simple-parser"
  
  s.author = "David Dollar"
  s.email = "ddollar@gmail.com"
  
  s.files = ["lib/simple-parser","lib/simple-parser/string.rb","lib/simple-parser.rb"]
  s.platform = Gem::Platform::RUBY
                   
  s.rubyforge_project = "simple-parser"
  s.require_path = "lib"
  s.has_rdoc = true
  s.extra_rdoc_files = ["README.html"]
  
end