Module: BranchesTools

Defined in:
lib/branches_tools.rb,
lib/branches_tools/version.rb

Constant Summary collapse

VERSION =
"0.0.1"

Instance Method Summary collapse

Instance Method Details

#installObject

All commands are assumed to be running from root of the project



9
10
11
12
13
14
15
16
17
18
# File 'lib/branches_tools.rb', line 9

def install
  stylesDir = "./src/style"

  if !ARGV[0].nil?
    stylesDir = ARGV[0]
  end

  Bourbon.install stylesDir
  Neat.install stylesDir
end