require "stairs" module Stairs class Tasks include Rake::DSL def install! desc "Setup the project" task :newb do Stairs::Runner.new([:newb]).run! end end end end Stairs::Tasks.new.install!