/usr/share/rubygems-integration/1.8/specifications/classifier-1.3.3.gemspec is in ruby-classifier 1.3.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "classifier"
s.version = "1.3.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Lucas Carlson"]
s.autorequire = "classifier"
s.date = "2010-07-06"
s.description = " A general classifier module to allow Bayesian and other types of classifications.\n"
s.email = "lucas@rufy.com"
s.files = ["lib/classifier/bayes.rb", "lib/classifier/extensions/string.rb", "lib/classifier/extensions/vector.rb", "lib/classifier/extensions/vector_serialize.rb", "lib/classifier/extensions/word_hash.rb", "lib/classifier/lsi/content_node.rb", "lib/classifier/lsi/summary.rb", "lib/classifier/lsi/word_list.rb", "lib/classifier/lsi.rb", "lib/classifier.rb", "bin/bayes.rb", "bin/summarize.rb", "test/bayes/bayesian_test.rb", "test/extensions/word_hash_test.rb", "test/lsi/lsi_test.rb", "test/test_helper.rb", "LICENSE", "Rakefile", "README"]
s.homepage = "http://classifier.rufy.com/"
s.require_paths = ["lib"]
s.requirements = ["A porter-stemmer module to split word stems."]
s.rubygems_version = "1.8.23"
s.summary = "A general classifier module to allow Bayesian and other types of classifications."
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<fast-stemmer>, [">= 1.0.0"])
else
s.add_dependency(%q<fast-stemmer>, [">= 1.0.0"])
end
else
s.add_dependency(%q<fast-stemmer>, [">= 1.0.0"])
end
end
|