ddollar / simple-parser

Simple parsing library

This URL has Read+Write access

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.0"
  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