nathansobo / treetop

A Ruby-based parsing DSL based on parsing expression grammars.

This URL has Read+Write access

treetop / treetop.gemspec
100644 19 lines (17 sloc) 0.615 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require "treetop/version"
$gemspec = Gem::Specification.new do |s|
  s.name = "treetop"
  s.version = Treetop::VERSION::STRING
  s.author = "Nathan Sobo"
  s.email = "nathansobo@gmail.com"
  s.homepage = "http://functionalform.blogspot.com"
  s.platform = Gem::Platform::RUBY
  s.summary = "A Ruby-based text parsing and interpretation DSL"
  s.files = ["LICENSE", "README.md", "Rakefile", "{test,lib,bin,doc,examples}/**/*"].map{|p| Dir[p]}.flatten
  s.bindir = "bin"
  s.executables = ["tt"]
  s.require_path = "lib"
  s.autorequire = "treetop"
  s.has_rdoc = false
  s.add_dependency "polyglot", ">= 0.2.5"
end