Sha256: 91505d2d7efbadab3bf0681517323a59efe57c0ebd6ea7fc0f03713350a564b0

Contents?: true

Size: 462 Bytes

Versions: 9

Compression:

Stored size: 462 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"

require 'rspec'
require 'rspec/core/rake_task'

desc "Run all RSpec test examples"
RSpec::Core::RakeTask.new do |spec|
  spec.rspec_opts = ["-c", "-f progress"]
  spec.pattern = 'spec/**/*_spec.rb'
end

task :default => :spec

require 'rdoc/task'
RDoc::Task.new do |rdoc|
  rdoc.main = "README.rdoc"
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "mandrill-rails"
  rdoc.rdoc_files.include('README*', 'lib/**/*.rb')
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mandrill-rails-1.1.1 Rakefile
mandrill-rails-1.1.0 Rakefile
mandrill-rails-1.0.2 Rakefile
mandrill-rails-1.0.1 Rakefile
mandrill-rails-1.0.0 Rakefile
mandrill-rails-0.0.4 Rakefile
mandrill-rails-0.0.3 Rakefile
mandrill-rails-0.0.2 Rakefile
mandrill-rails-0.0.1 Rakefile