Sha256: 3edab5f7fdd632a5eb905ddd5bb85744b98a16b10942f98e93bf6c383d05c084

Contents?: true

Size: 797 Bytes

Versions: 40

Compression:

Stored size: 797 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Blog'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'


Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task :default => :test

Version data entries

40 entries across 40 versions & 2 rubygems

Version Path
blogit-0.4.3 Rakefile
blogit-0.4.2 Rakefile
blogit-0.4.1 Rakefile
blogit-0.4.0 Rakefile
blogit-0.3.2 Rakefile
blogit-0.3.1 Rakefile
blogit-0.3.0 Rakefile
blogit-0.2.1 Rakefile
blogit-0.2.0 Rakefile
blogit-0.1.0 Rakefile
blogit-0.0.13 Rakefile
blogit-0.0.12 Rakefile
blogit-0.0.11 Rakefile
blogit-0.0.10 Rakefile
blogit-0.0.9 Rakefile
blogit-0.0.8 Rakefile
blogit-0.0.7 Rakefile
blogit-0.0.6 Rakefile
blogit-0.0.5 Rakefile
blogit-0.0.4 Rakefile