Sha256: f4417c1d81b62185b1fc244a7b66a995fc1b55679280acad5d853618020c846c

Contents?: true

Size: 1.05 KB

Versions: 11

Compression:

Stored size: 1.05 KB

Contents

def dump_load_path
  puts $LOAD_PATH.join("\n")
  found = nil
  $LOAD_PATH.each do |path|
    if File.exists?(File.join(path,"rspec"))
      puts "Found rspec in #{path}"
      if File.exists?(File.join(path,"rspec","core"))
        puts "Found core"
        if File.exists?(File.join(path,"rspec","core","rake_task"))
          puts "Found rake_task"
          found = path
        else
          puts "!! no rake_task"
        end
      else
        puts "!!! no core"
      end
    end
  end
  if found.nil?
    puts "Didn't find rspec/core/rake_task anywhere"
  else
    puts "Found in #{path}"
  end
end
require 'bundler'
require 'rake/clean'

require 'rake/testtask'

require 'cucumber'
require 'cucumber/rake/task'
gem 'rdoc' # we need the installed RDoc gem, not the system one
require 'rdoc/task'

include Rake::DSL

Bundler::GemHelper.install_tasks


Rake::TestTask.new do |t|
  t.pattern = 'test/tc_*.rb'
end

Rake::RDocTask.new do |rd|
  
  rd.main = "README.rdoc"
  
  rd.rdoc_files.include("lib/**/*.rb","bin/**/*")
end

task :default => [:test,:features]

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
pave-0.0.12 Rakefile
pave-0.0.11 Rakefile
pave-0.0.10 Rakefile
pave-0.0.9 Rakefile
pave-0.0.8 Rakefile
pave-0.0.7 Rakefile
pave-0.0.6 Rakefile
pave-0.0.5 Rakefile
pave-0.0.4 Rakefile
pave-0.0.2 Rakefile
pave-0.0.1 Rakefile