Sha256: 276cdf0e057f97c821396b4d4f0fac7bbd9366386308a19bc5d43b560d4088c9
Contents?: true
Size: 952 Bytes
Versions: 1
Compression:
Stored size: 952 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'levenshtein/version' Gem::Specification.new do |spec| spec.name = "levenshtein-jruby" spec.version = Levenshtein::VERSION spec.platform = 'java' spec.authors = ["David Butler"] spec.email = ["dwbutler@ucla.edu"] spec.description = %q{Calculate the Levenshtein distance between two strings in JRuby} spec.summary = %q{Levenshtein gem that runs in JRuby} spec.homepage = "https://github.com/dwbutler/levenshtein-jruby" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
levenshtein-jruby-0.1.0-java | levenshtein-jruby.gemspec |