Sha256: e5a23e250f6fb07330e951ae3f7b8f4f572acf8f7691a173efd0fbad24c05eaa

Contents?: true

Size: 1.24 KB

Versions: 22

Compression:

Stored size: 1.24 KB

Contents

# encoding: utf-8

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 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "name-spotter"
  gem.homepage = "http://github.com/GlobalNamesArchitecture/name-spotter"
  gem.license = "MIT"
  gem.summary = %Q{Scientific names finder}
  gem.description = %Q{The gem searches for scientific names in texts using socket servers running TaxonFinder (by Patrick Leary) and NetiNeti (by Lakshmi Manohar Akella)}
  gem.email = "dmozzherin@gmail.com"
  gem.authors = ["Anthony Goddard", "Chuck Ha", "Dmitry Mozzherin"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

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

require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:features)

task :default => :spec

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
name-spotter-0.2.4 Rakefile
name-spotter-0.2.3 Rakefile
name-spotter-0.2.2 Rakefile
name-spotter-0.2.1 Rakefile
name-spotter-0.2.0 Rakefile
name-spotter-0.1.11 Rakefile
name-spotter-0.1.10 Rakefile
name-spotter-0.1.9 Rakefile
name-spotter-0.1.8 Rakefile
name-spotter-0.1.7 Rakefile
name-spotter-0.1.6 Rakefile
name-spotter-0.1.5 Rakefile
name-spotter-0.1.4 Rakefile
name-spotter-0.1.3 Rakefile
name-spotter-0.1.2 Rakefile
name-spotter-0.1.1 Rakefile
name-spotter-0.1.0 Rakefile
name-spotter-0.0.7 Rakefile
name-spotter-0.0.6 Rakefile
name-spotter-0.0.5 Rakefile