Sha256: 59d5eb98e5545acbefe652c2ff149a977770ace1468eaaf4cddb2123cd9d240f

Contents?: true

Size: 431 Bytes

Versions: 1

Compression:

Stored size: 431 Bytes

Contents

require File.join File.dirname(__FILE__), '..', 'lib', 'capucine.rb'

namespace :capucine do

  task :init do
    cap = Capucine::Main.new
    cap.run_command(['init'])
  end

  task :new do
    cap = Capucine::Main.new
    cap.run_command(['new'])
  end

  task :compile do
    cap = Capucine::Main.new
    cap.run_command(['compile'])
  end

  task :watch do
    cap = Capucine::Main.new
    cap.run_command(['watch'])
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
capucine-0.2.10 tasks/all.rake