Sha256: 26d90ed77b118cb5dfcbd6bebf510770f3a7cfd3dfef8a7d69dd41ffad677c55

Contents?: true

Size: 1.08 KB

Versions: 94

Compression:

Stored size: 1.08 KB

Contents

require 'rubygems'
require 'rake/rdoctask'

require 'merb-core'
require 'merb-core/tasks/merb'

include FileUtils

# Load the basic runtime dependencies; this will include 
# any plugins and therefore plugin rake tasks.
init_env = ENV['MERB_ENV'] || 'rake'
Merb.load_dependencies(:environment => init_env)
     
# Get Merb plugins and dependencies
Merb::Plugins.rakefiles.each { |r| require r } 

# Load any app level custom rakefile extensions from lib/tasks
tasks_path = File.join(File.dirname(__FILE__), "lib", "tasks")
rake_files = Dir["#{tasks_path}/*.rake"]
rake_files.each{|rake_file| load rake_file }

desc "Start runner environment"
task :merb_env do
  Merb.start_environment(:environment => init_env, :adapter => 'runner')
end

require 'spec/rake/spectask'
require 'merb-core/test/tasks/spectasks'
desc 'Default: run spec examples'
task :default => 'spec'

##############################################################################
# ADD YOUR CUSTOM TASKS IN /lib/tasks
# NAME YOUR RAKE FILES file_name.rake
##############################################################################

Version data entries

94 entries across 88 versions & 30 rubygems

Version Path
adva-0.3.2 test/webrat/spec/integration/merb/Rakefile
adva-0.3.1 test/webrat/spec/integration/merb/Rakefile
adva-0.3.0 test/webrat/spec/integration/merb/Rakefile
adva-0.2.4 test/webrat/spec/integration/merb/Rakefile
adva-0.2.3 test/webrat/spec/integration/merb/Rakefile
adva-0.2.2 test/webrat/spec/integration/merb/Rakefile
adva-0.2.1 test/webrat/spec/integration/merb/Rakefile
adva-0.2.0 test/webrat/spec/integration/merb/Rakefile
adva-0.1.4 test/webrat/spec/integration/merb/Rakefile
adva-0.1.3 test/webrat/spec/integration/merb/Rakefile
adva-0.1.2 test/webrat/spec/integration/merb/Rakefile
adva-0.1.1 test/webrat/spec/integration/merb/Rakefile
adva-0.1.0 test/webrat/spec/integration/merb/Rakefile
adva-0.0.1 test/webrat/spec/integration/merb/Rakefile
davidtrogers-webrat-0.4.4.2 spec/integration/merb/Rakefile
diabolo-webrat-0.5.1 spec/integration/merb/Rakefile
dstrelau-webrat-0.5.1 spec/integration/merb/Rakefile
hardbap-webrat-0.5.1 spec/integration/merb/Rakefile
hardbap-webrat-0.5.2 spec/integration/merb/Rakefile
sr-webrat-0.4.4.1 spec/integration/merb/Rakefile