class Molecule::AssetGroup

Attributes

file_paths[RW]
name[RW]
type[RW]

Public Class Methods

new(name, type) click to toggle source
# File lib/molecule/asset_group.rb, line 7
def initialize name, type
  @name = name
  @type = type
  @file_paths = []
end

Public Instance Methods

add_file_path(file_path) click to toggle source
# File lib/molecule/asset_group.rb, line 13
def add_file_path file_path
  @file_paths << file_path
end