Sha256: 53098ae292a0a228e55c79a3994d685cb0677f5696e036cd2bc7c10a1499f1ea

Contents?: true

Size: 894 Bytes

Versions: 29

Compression:

Stored size: 894 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    = 'Adherent'
  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
Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rake')].each {|f| load f }
require 'rspec/core'
require 'rspec/core/rake_task'
desc "Run all specs in spec directory (excluding plugin specs)"
RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare')
task :default => :spec

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
adherent-0.3.13 Rakefile
adherent-0.3.12 Rakefile
adherent-0.3.11 Rakefile
adherent-0.3.10 Rakefile
adherent-0.3.9 Rakefile
adherent-0.3.7 Rakefile
adherent-0.3.6 Rakefile
adherent-0.3.5 Rakefile
adherent-0.3.4 Rakefile
adherent-0.3.3 Rakefile
adherent-0.3.2 Rakefile
adherent-0.3.1 Rakefile
adherent-0.3.0 Rakefile
adherent-0.2.9 Rakefile
adherent-0.2.8 Rakefile
adherent-0.2.7 Rakefile
adherent-0.2.6 Rakefile
adherent-0.2.5 Rakefile
adherent-0.2.4 Rakefile
adherent-0.2.3 Rakefile