Sha256: e29b33d6ad07f9a74f2e33c39c97432c31ab7a1f23d1de7ad54887e3dc457e9d

Contents?: true

Size: 542 Bytes

Versions: 17

Compression:

Stored size: 542 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

17 entries across 17 versions & 1 rubygems

Version Path
attributor-8.0 Rakefile
attributor-7.1 Rakefile
attributor-7.0 Rakefile
attributor-6.5 Rakefile
attributor-6.4 Rakefile
attributor-6.3 Rakefile
attributor-6.2 Rakefile
attributor-6.1 Rakefile
attributor-6.0 Rakefile
attributor-5.7 Rakefile
attributor-5.6 Rakefile
attributor-5.5 Rakefile
attributor-5.4 Rakefile
attributor-5.3 Rakefile
attributor-5.2.1 Rakefile
attributor-5.2.0 Rakefile
attributor-5.1.0 Rakefile