class GrapeBootstrap::Commands::Base

Attributes

path[R]

Public Class Methods

new(path, options=[]) click to toggle source
# File lib/grape_bootstrap/commands/base.rb, line 6
def initialize path, options=[]
  if path.nil?
    throw "Path not specified"
  end
  @path = path
end