Ticket #3: linguistics.gemspec.txt

File linguistics.gemspec.txt, 745 bytes (added by deveiant, 7 years ago)

Gemspec for Linguistics from rubygems 0.8.1

Line 
1$:.unshift '../lib'
2require 'rubygems'
3
4spec = 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'
16end
17
18if $0==__FILE__
19  Gem::manage_gems
20  Gem::Builder.new(spec).build
21end
22