Sha256: bb4d0bbf1ae85e1a2350f61d4d399e9f358d459422b04fa9b442912c5b94a87f

Contents?: true

Size: 595 Bytes

Versions: 27

Compression:

Stored size: 595 Bytes

Contents

require 'rubygems'
begin
  require 'bundler/setup'
  require 'bundler'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
require 'rake'
require 'rake/rdoctask'

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

RSpec::Core::RakeTask.new(:spec)

task :default => :spec

Rake::RDocTask.new do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "Mailboxer"
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb', 'app/**/*.rb')
end


Bundler::GemHelper.install_tasks

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
mailboxer-0.6.0 Rakefile
mailboxer-0.5.5 Rakefile
mailboxer-0.5.4 Rakefile
mailboxer-0.5.3 Rakefile
mailboxer-0.5.2 Rakefile
mailboxer-0.5.1 Rakefile
mailboxer-0.5.0 Rakefile
mailboxer-0.4.3 Rakefile
mailboxer-0.4.2 Rakefile
mailboxer-0.4.1 Rakefile
mailboxer-0.4.0 Rakefile
mailboxer-0.3.3 Rakefile
mailboxer-0.3.2 Rakefile
mailboxer-0.3.1 Rakefile
mailboxer-0.3.0 Rakefile
mailboxer-0.2.5 Rakefile
mailboxer-0.2.4 Rakefile
mailboxer-0.2.3 Rakefile
mailboxer-0.2.2 Rakefile
mailboxer-0.2.1 Rakefile