class Develry::Project::Initializer

Base class for project initializers

Attributes

project[R]

Public Class Methods

new(project) click to toggle source
# File lib/develry/project/initializer.rb, line 12
def initialize(project)
  @project = project
end

Public Instance Methods

call() click to toggle source
# File lib/develry/project/initializer.rb, line 16
def call
  raise NotImplementedError, "#{self.class}##{__method__} must be implemented"
end