-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use jruby stemmer, bump version * oops! RUBY_PLATFORM is a const! * travis yml jruby fix * readme edits / roll version back * another try at travis / better gem name
- Loading branch information
1 parent
2b485e1
commit 1416fc3
Showing
8 changed files
with
92 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
source 'https://rubygems.org' | ||
gemspec | ||
gemspec name: 'classifier-reborn' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
source 'https://rubygems.org' | ||
gemspec name: 'classifier-reborn-jruby' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# coding: utf-8 | ||
lib = File.expand_path('../lib', __FILE__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'classifier-reborn/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.platform = 'java' | ||
s.specification_version = 2 if s.respond_to? :specification_version= | ||
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version= | ||
s.rubygems_version = '2.2.2' | ||
s.required_ruby_version = '>= 1.9.3' | ||
|
||
s.name = 'classifier-reborn-jruby' | ||
s.version = ClassifierReborn::VERSION | ||
s.license = 'LGPL' | ||
s.summary = 'A general classifier module to allow Bayesian and other types of classifications.' | ||
s.authors = ['Lucas Carlson', 'Parker Moore', 'Chase Gilliam'] | ||
s.email = ['[email protected]', '[email protected]', '[email protected]'] | ||
s.homepage = 'https://github.com/jekyll/classifier-reborn' | ||
|
||
all_files = `git ls-files -z`.split("\x0") | ||
s.files = all_files.grep(%r{^(bin|lib|data)/}) | ||
s.executables = all_files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
s.require_paths = ['lib'] | ||
|
||
s.has_rdoc = true | ||
s.rdoc_options = ['--charset=UTF-8'] | ||
s.extra_rdoc_files = %w(README.markdown LICENSE) | ||
|
||
s.add_runtime_dependency('jruby-stemmer-other', '~> 0.0.2') | ||
|
||
s.add_development_dependency('rake') | ||
s.add_development_dependency('rdoc') | ||
s.add_development_dependency('minitest') | ||
s.add_development_dependency('minitest-reporters') | ||
s.add_development_dependency('rubocop') | ||
s.add_development_dependency('pry') | ||
s.add_development_dependency('redis') | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters