class Bashly::Settings

Attributes

source_dir[W]
target_dir[W]

Public Class Methods

source_dir() click to toggle source
# File lib/bashly/settings.rb, line 6
def source_dir
  @source_dir ||= ENV['BASHLY_SOURCE_DIR'] || 'src'
end
target_dir() click to toggle source
# File lib/bashly/settings.rb, line 10
def target_dir
  @target_dir ||= ENV['BASHLY_TARGET_DIR'] || '.'
end