ember-cli-rails 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/ember-cli/app.rb +10 -1
- data/lib/ember-cli/configuration.rb +1 -0
- data/lib/ember-cli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4507aad01bcaab29b2c7c5b8cbb053efc2ae9ba1
|
|
4
|
+
data.tar.gz: 4b7f08abaeb00d070256acba6922395f726e7394
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee5b726c52b2ef816efdd52c0124b1be9fde0f7a9e8f001de88550df7d70ef1689f0343c8a74a036349ba0869ea9144ad1d96a2578b4045863e9ad4ac343b457
|
|
7
|
+
data.tar.gz: e216e1f8d7c5c852d4bb6d92c5eb6474b83c8fcee781811e890e759fd113bc4dccea9c14cff4632eb8baa6461f11839c64080cec2f08815b4051ae1019e82896
|
data/CHANGELOG.md
CHANGED
data/lib/ember-cli/app.rb
CHANGED
|
@@ -126,6 +126,10 @@ module EmberCLI
|
|
|
126
126
|
options.fetch(:build_timeout){ EmberCLI.configuration.build_timeout }
|
|
127
127
|
end
|
|
128
128
|
|
|
129
|
+
def watcher
|
|
130
|
+
options.fetch(:watcher){ EmberCLI.configuration.watcher }
|
|
131
|
+
end
|
|
132
|
+
|
|
129
133
|
def check_for_build_error!
|
|
130
134
|
raise_build_error! if build_error?
|
|
131
135
|
end
|
|
@@ -197,7 +201,12 @@ module EmberCLI
|
|
|
197
201
|
end
|
|
198
202
|
|
|
199
203
|
def command(options={})
|
|
200
|
-
watch =
|
|
204
|
+
watch = ""
|
|
205
|
+
if options[:watch]
|
|
206
|
+
watch = "--watch"
|
|
207
|
+
watch += " --watcher #{watcher}" if watcher
|
|
208
|
+
end
|
|
209
|
+
|
|
201
210
|
"#{ember_path} build #{watch} --environment #{environment} --output-path #{dist_path} #{log_pipe}"
|
|
202
211
|
end
|
|
203
212
|
|
data/lib/ember-cli/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ember-cli-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pavel Pravosud
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2015-07-
|
|
13
|
+
date: 2015-07-18 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: railties
|