Sha256: d795b7646befe9a7bb22469782a3480c9d789f1ac6b7c75fa9f79cd75b43f75a

Contents?: true

Size: 1.38 KB

Versions: 13

Compression:

Stored size: 1.38 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'

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

task :default => :spec

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
taxamatch_rb-0.9.10 Rakefile
taxamatch_rb-0.9.9 Rakefile
taxamatch_rb-0.9.8 Rakefile
taxamatch_rb-0.9.7 Rakefile
taxamatch_rb-0.9.6 Rakefile
taxamatch_rb-0.9.5 Rakefile
taxamatch_rb-0.9.4 Rakefile
taxamatch_rb-0.9.2 Rakefile
taxamatch_rb-0.9.0 Rakefile
taxamatch_rb-0.8.7 Rakefile
taxamatch_rb-0.8.6 Rakefile
taxamatch_rb-0.8.5 Rakefile
taxamatch_rb-0.8.4 Rakefile