ember-cli-rails 0.1.11 → 0.1.12
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 +7 -2
- data/README.md +14 -1
- data/lib/ember-cli/engine.rb +2 -4
- 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: 920844b60c35dace25586f39105ced9eaa3147c1
|
|
4
|
+
data.tar.gz: 9942330ac3d0f92315c7baf9c698716af9f2c8c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5d354e6593df4604fd1790eae97c4cc5dcdfac41590c16e79e228ebe7227513fc8d8658c34597858f8d541a93ef0672e2236fa526c76299bfa30b1e27d7ae6d
|
|
7
|
+
data.tar.gz: dc30824fc0b5c6a1724dbee8aa680d0dc7a1e4a20697276f68ee73ce7fa36f9c27ddb48cf939c866feb66a26e6379ab89c4e93ee5ea35dbd5667fa34060d6c4d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
|
+
0.1.12
|
|
2
|
+
------
|
|
3
|
+
|
|
4
|
+
* Fix inflector initializer for older Rails [#115](https://github.com/rwz/ember-cli-rails/pull/115) [#117](https://github.com/rwz/ember-cli-rails/pull/117)
|
|
5
|
+
|
|
1
6
|
0.1.11
|
|
2
7
|
------
|
|
3
8
|
|
|
4
|
-
* Do not include rake tasks twice [#110](https://github.com/rwz/ember-cli-rails/pull/110) [BlakeWilliams](https://github.com/BlakeWilliams)
|
|
9
|
+
* Do not include rake tasks twice [#110](https://github.com/rwz/ember-cli-rails/pull/110) [@BlakeWilliams](https://github.com/BlakeWilliams)
|
|
5
10
|
|
|
6
11
|
0.1.10
|
|
7
12
|
------
|
|
8
13
|
|
|
9
|
-
* Support ember-cli 0.2.\* [
|
|
14
|
+
* Support ember-cli 0.2.\* [#88](https://github.com/rwz/ember-cli-rails/issues/88)
|
|
10
15
|
|
|
11
16
|
0.1.9
|
|
12
17
|
-----
|
data/README.md
CHANGED
|
@@ -172,7 +172,7 @@ init` and then add the following to your `Guardfile`.
|
|
|
172
172
|
```ruby
|
|
173
173
|
guard "livereload" do
|
|
174
174
|
# ...
|
|
175
|
-
watch %r{
|
|
175
|
+
watch %r{your-appname/app/\w+/.+\.(js|hbs|html|css|<other-extensions>)}
|
|
176
176
|
# ...
|
|
177
177
|
end
|
|
178
178
|
```
|
|
@@ -182,6 +182,19 @@ Handlebars, HTML, or CSS files within `app` path. Take note that other
|
|
|
182
182
|
extensions can be added to the line (such as `coffee` for CoffeeScript) to
|
|
183
183
|
watch them for changes as well.
|
|
184
184
|
|
|
185
|
+
*NOTE:* EmberCLI creates symlinks in `your-appname/tmp` directory, which cannot
|
|
186
|
+
be handled properly by Guard. This might lead to performance issues on some
|
|
187
|
+
platforms (most notably on OSX), as well as warnings being printed by latest
|
|
188
|
+
versions of Guard. As a work-around, one might use
|
|
189
|
+
[`directories`](https://github.com/guard/guard/wiki/Guardfile-DSL---Configuring-Guard#directories)
|
|
190
|
+
option, explicitly specifying directories to watch, e.g. adding the following
|
|
191
|
+
to the `Guardfile`.
|
|
192
|
+
|
|
193
|
+
```ruby
|
|
194
|
+
# also add directories that need to be watched by other guard plugins
|
|
195
|
+
directories %w[app config lib spec your-appname/app]
|
|
196
|
+
```
|
|
197
|
+
|
|
185
198
|
## Heroku
|
|
186
199
|
|
|
187
200
|
In order to deploy EmberCLI Rails app to Heroku you need to follow the steps
|
data/lib/ember-cli/engine.rb
CHANGED
|
@@ -5,10 +5,8 @@ module EmberCLI
|
|
|
5
5
|
end
|
|
6
6
|
|
|
7
7
|
initializer "ember-cli-rails.inflector" do
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
inflect.acronym "CLI"
|
|
11
|
-
end
|
|
8
|
+
ActiveSupport::Inflector.inflections do |inflect|
|
|
9
|
+
inflect.acronym "CLI" if inflect.respond_to?(:acronym)
|
|
12
10
|
end
|
|
13
11
|
end
|
|
14
12
|
|
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.1.
|
|
4
|
+
version: 0.1.12
|
|
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-03-
|
|
13
|
+
date: 2015-03-20 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: railties
|