Sha256: 358aef03b5b118cbcc9272adc9b533b37964c668fbd473667b8bd46c81090fc8
Contents?: true
Size: 1.55 KB
Versions: 6
Compression:
Stored size: 1.55 KB
Contents
require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'rake/extensiontask' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "taxamatch_rb" gem.summary = 'Implementation of Tony Rees Taxamatch algorithms' gem.description = 'This gem implements algorithm for fuzzy matching scientific names developed by Tony Rees' gem.email = "dmozzherin@eol.org" gem.homepage = "http://github.com/GlobalNamesArchitecture/taxamatch_rb" gem.authors = ["Dmitry Mozzherin"] gem.files = FileList["[A-Z]*", "*.gemspec", "{bin,generators,lib,spec}/**/*"] gem.files -= FileList['lib/**/*.bundle', 'lib/**/*.dll', 'lib/**/*.so'] gem.files += FileList['ext/**/*.c'] gem.extensions = FileList['ext/**/extconf.rb'] # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings end rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler" end require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end RSpec::Core::RakeTask.new(:rcov) do |spec| spec.pattern = 'spec/**/*_spec.rb' spec.rcov = true end Rake::ExtensionTask.new("damerau_levenshtein") do |extension| extension.lib_dir = "lib" end Rake::Task[:spec].prerequisites << :compile task :default => :spec
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
taxamatch_rb-0.8.3 | Rakefile |
taxamatch_rb-0.8.2 | Rakefile |
taxamatch_rb-0.8.1 | Rakefile |
taxamatch_rb-0.8.0 | Rakefile |
taxamatch_rb-0.7.6 | Rakefile |
taxamatch_rb-0.7.5 | Rakefile |