Sha256: 4e0a93d08f1b717e04d0c8b4ac1ca0a2798f8377300f8795072b7c9eae4be0ef

Contents?: true

Size: 445 Bytes

Versions: 21

Compression:

Stored size: 445 Bytes

Contents

# frozen_string_literal: true

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
require 'rake/dsl_definition'
require 'rake'
require 'rspec'

RSpec::Core::RakeTask.new(:spec) do |rspec|
  rspec.pattern = FileList['spec/**/*_spec.rb']
end

RuboCop::RakeTask.new
task default: %i[rubocop spec]

desc 'open an irb session preloaded with this gem'
task :console do
  sh 'irb -r pp -r ./lib/biodiversity.rb'
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
biodiversity-6.0.1 Rakefile
biodiversity-6.0.0 Rakefile
biodiversity-5.9.1 Rakefile
biodiversity-5.7.2 Rakefile
biodiversity-5.5.2 Rakefile
biodiversity-5.3.4 Rakefile
biodiversity-5.3.3 Rakefile
biodiversity-5.3.2 Rakefile
biodiversity-5.3.1 Rakefile
biodiversity-5.3.0 Rakefile
biodiversity-5.2.0 Rakefile
biodiversity-5.1.2 Rakefile
biodiversity-5.1.1 Rakefile
biodiversity-5.1.0 Rakefile
biodiversity-5.0.1 Rakefile
biodiversity-5.0.0 Rakefile
biodiversity-4.1.0 Rakefile
biodiversity-4.0.3 Rakefile
biodiversity-4.0.2 Rakefile
biodiversity-4.0.1 Rakefile