Sha256: 8522b6d0110d71d8431371109245a9b40e1848a7f48ecb69bf7ab8b8c1fe9076
Contents?: true
Size: 1.22 KB
Versions: 3
Compression:
Stored size: 1.22 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'string_metric/version' Gem::Specification.new do |spec| spec.name = "string_metric" spec.version = StringMetric::VERSION spec.authors = ["Giorgos Tsiftsis"] spec.email = ["giorgos.tsiftsis@skroutz.gr"] spec.summary = %q{A simple library with String Metric algorithms} spec.description = %q{A simple library with String Metric algorithms} spec.homepage = "https://github.com/chief/string_metric" 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.5" spec.add_development_dependency "rake", "~> 10.1.1" spec.add_development_dependency "rspec", "~> 2.14.1" spec.add_development_dependency "text", "~> 1.2.3" if RUBY_ENGINE == "ruby" if RUBY_VERSION > "1.9.3" spec.add_development_dependency "pry-byebug", "~> 1.2.1" else spec.add_development_dependency "pry", "~> 0.9.12.4" end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
string_metric-0.1.2 | string_metric.gemspec |
string_metric-0.1.1 | string_metric.gemspec |
string_metric-0.1.0 | string_metric.gemspec |