module Harmoni
Constants
- VERSION
Public Class Methods
build(path, *args, **opts)
click to toggle source
# File lib/harmoni.rb, line 10 def self.build(path, *args, **opts) type = opts[:type] || Config.detect_type(path) Config.new(*args, opts.merge(type: type, path: path)) end
sync(file, *args, **opts)
click to toggle source
# File lib/harmoni.rb, line 15 def self.sync(file, *args, **opts) build(file, *args, opts.merge(sync: true)) end