Sha256: 71095ab50367820b2aed901d3b133639bd3a547e5498c752b7e3b4ab4cab2112

Contents?: true

Size: 546 Bytes

Versions: 6

Compression:

Stored size: 546 Bytes

Contents

# encoding: utf-8
require 'bundler/setup'
require 'rake'

require 'rspec/core'
require 'rspec/core/rake_task'
require 'bundler/gem_tasks'
require 'rake/notes/rake_task'


desc "Run RSpec code examples with simplecov"
RSpec::Core::RakeTask.new do |spec|
  spec.rspec_opts = ["-c"]
  spec.pattern = FileList['spec/**/*_spec.rb']
end

desc "console"
task :console do
  require 'bundler'
  Bundler.require(:default, :development, :test)
  require_relative 'lib/attributor'
  pry
end

task :default => :spec

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
attributor-5.0.2 Rakefile
attributor-5.0.1 Rakefile
attributor-5.0 Rakefile
attributor-4.2.0 Rakefile
attributor-4.1.0 Rakefile
attributor-4.0.1 Rakefile