This repository has been archived by the owner on Sep 12, 2018. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gemspec
36 lines (31 loc) · 1.53 KB
/
.gemspec
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
32
33
34
35
36
#!/usr/bin/env ruby -rubygems
# -*- encoding: utf-8 -*-
GEMSPEC = Gem::Specification.new do |gem|
gem.version = File.read('VERSION').chomp
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
gem.name = 'crm114'
gem.homepage = 'http://crm114.rubyforge.org/'
gem.license = 'Public Domain' if gem.respond_to?(:license=)
gem.summary = 'Ruby interface to the CRM114 Controllable Regex Mutilator text classification engine.'
gem.description = <<-EOF
CRM114.rb is a Ruby interface to the CRM114 Controllable Regex
Mutilator, an advanced and fast text classifier that uses sparse binary
polynomial matching with a Bayesian Chain Rule evaluator and a hidden
Markov model to categorize data with up to a 99.87% accuracy.
EOF
gem.rubyforge_project = 'crm114'
gem.author = 'Arto Bendiken'
gem.email = '[email protected]'
gem.platform = Gem::Platform::RUBY
gem.files = %w(AUTHORS README UNLICENSE VERSION lib/crm114.rb lib/crm114/version.rb test/test_code_or_text.rb test/test_crm114.rb)
gem.bindir = %q(bin)
gem.executables = %w()
gem.default_executable = gem.executables.first
gem.require_paths = %w(lib)
gem.extensions = %w()
gem.test_files = %w(test/test_code_or_text.rb test/test_crm114.rb)
gem.has_rdoc = false
gem.required_ruby_version = '>= 1.8.2'
gem.requirements = ['CRM114']
gem.post_install_message = nil
end