module Automux::Paths

Public Instance Methods

data() click to toggle source
# File lib/automux/paths.rb, line 13
def data
  File.join(root, 'data/automux')
end
default_blueprint() click to toggle source
# File lib/automux/paths.rb, line 5
def default_blueprint
  File.join(data, 'blueprints', 'default.yml')
end
default_recipe() click to toggle source
# File lib/automux/paths.rb, line 9
def default_recipe
  File.join(data, 'recipes', 'default.sh.erb')
end
root() click to toggle source
# File lib/automux/paths.rb, line 17
def root
  File.expand_path('../../../', __FILE__)
end
user_assets() click to toggle source
# File lib/automux/paths.rb, line 25
def user_assets
  File.join(ENV['HOME'], '.automux')
end
views() click to toggle source
# File lib/automux/paths.rb, line 21
def views
  'lib/automux/views'
end