Sha256: 151e10bd04e14e9cb2796989f569244741e63da4d4e69a4c1270bace5c49d13b
Contents?: true
Size: 512 Bytes
Versions: 6
Compression:
Stored size: 512 Bytes
Contents
require "singleton" module EmberCLI class Configuration include Singleton def app(name, options={}) apps.store name, App.new(name, options) end def apps @apps ||= HashWithIndifferentAccess.new end def tee_path return @tee_path if defined?(@tee_path) @tee_path = Helpers.which("tee") end def npm_path @npm_path ||= Helpers.which("npm") end def build_timeout @build_timeout ||= 5 end attr_writer :build_timeout end end
Version data entries
6 entries across 6 versions & 1 rubygems