Sha256: ac12f0d1e819e89fe37e8e4f1916549ead93df48e8a73cfd06c0e9a1c0547482
Contents?: true
Size: 618 Bytes
Versions: 2
Compression:
Stored size: 618 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 bundler_path @bundler_path ||= Helpers.which("bundler") end def build_timeout @build_timeout ||= 5 end attr_writer :build_timeout attr_accessor :watcher end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ember-cli-rails-0.3.5 | lib/ember-cli/configuration.rb |
ember-cli-rails-0.3.4 | lib/ember-cli/configuration.rb |