Sha256: 8cfa9535517a3df4ddb125abea22f52d5a652081fcd3b2111d36c3c81e40ccd1

Contents?: true

Size: 619 Bytes

Versions: 13

Compression:

Stored size: 619 Bytes

Contents

require 'rspec/core'
require 'rspec/core/rake_task'
require 'webmock/rspec'
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

desc "Open an irb session preloaded with this library"
task :console do
  sh "irb -rubygems -I lib -r rosemary.rb"
end

task :c => :console

task :default => :spec

require 'yard'
YARD::Rake::YardocTask.new do |t|
  t.files   = ['lib/**/*.rb'] # optional
  # t.options = ['--any', '--extra', '--opts'] # optional
end

require "bundler/gem_tasks"

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
rosemary-0.4.4 Rakefile
rosemary-0.4.3 Rakefile
rosemary-0.4.2 Rakefile
rosemary-0.4.1 Rakefile
rosemary-0.4.0 Rakefile
rosemary-0.3.12 Rakefile
rosemary-0.3.11 Rakefile
rosemary-0.3.10 Rakefile
rosemary-0.3.9 Rakefile
rosemary-0.3.8 Rakefile
rosemary-0.3.7 Rakefile
rosemary-0.3.6 Rakefile
rosemary-0.3.5 Rakefile