| 1 | $:.unshift '../lib' |
|---|
| 2 | require 'rubygems' |
|---|
| 3 | |
|---|
| 4 | spec = Gem::Specification.new do |s| |
|---|
| 5 | s.name = 'Linguistics' |
|---|
| 6 | s.version = "1.0.2" |
|---|
| 7 | s.author = "Michael Granger, Martin Chase" |
|---|
| 8 | s.email = "ged@FaerieMUD.org, stillflame@FaerieMUD.org" |
|---|
| 9 | s.homepage = "http://www.deveiate.org/code/linguistics.html" |
|---|
| 10 | s.platform = Gem::Platform::RUBY |
|---|
| 11 | s.summary = "This is a generic, language-neutral framework for extending Ruby objects with linguistic methods." |
|---|
| 12 | s.files = Dir.glob("{experiments,tests,redist,lib,docs}/**/*").delete_if {|item| item.include?("CVS") || item.include?("rdoc")} |
|---|
| 13 | s.files.concat ["utils.rb", "test.rb"] |
|---|
| 14 | s.require_path = 'lib' |
|---|
| 15 | s.autorequire = 'linguistics' |
|---|
| 16 | end |
|---|
| 17 | |
|---|
| 18 | if $0==__FILE__ |
|---|
| 19 | Gem::manage_gems |
|---|
| 20 | Gem::Builder.new(spec).build |
|---|
| 21 | end |
|---|
| 22 | |
|---|