class Motion::Project::Config

Attributes

installrapp_mode[RW]

Public Instance Methods

installrapp() { |self| ... } click to toggle source
# File lib/motion/project/installr.rb, line 10
def installrapp(&block)
  yield self if block_given? && installrapp_mode?
end
installrapp_mode?() click to toggle source
# File lib/motion/project/installr.rb, line 14
def installrapp_mode?
  @installrapp_mode == true
end