Sha256: 7b127638b72eb703c94f567022f8fefa99020ae8bb79477f6515727eaee76919

Contents?: true

Size: 493 Bytes

Versions: 4

Compression:

Stored size: 493 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"
require "rspec/core/rake_task"

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

# If you want to make this the default task
task :default => :spec

desc 'Execute a console with the environment preloaded'
task :console do
  exec 'irb -rubygems -I lib -r active_esp.rb'
end

namespace :docs do
  task :generate do
    exec 'yard doc'
  end

  task :server do
    exec 'yard server --reload --server thin'
  end

  task :stats do
    exec 'yard stats'
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
active_esp-0.1.0.alpha4 Rakefile
active_esp-0.1.0.alpha3 Rakefile
active_esp-0.1.0.alpha2 Rakefile
active_esp-0.1.0.alpha1 Rakefile