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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b9e22a400999b48e24aebc6db3d83d40398ba1e9
4
- data.tar.gz: 22e419c4a33f82814415ba93e9e8067149b72648
3
+ metadata.gz: 920844b60c35dace25586f39105ced9eaa3147c1
4
+ data.tar.gz: 9942330ac3d0f92315c7baf9c698716af9f2c8c4
5
5
  SHA512:
6
- metadata.gz: d2568fd9aae6d84d87b3cac48722c94fa7aefdd032f8779044aad7ac66e022e51cfd65869c1d89954fcdceedd375e48e6f7288943a5b2f854ab1ce15b1dda5fa
7
- data.tar.gz: 9fb0f10c413452433b0fff754b328c5dcd107e8d17580abf25f8631405d581168ca79f6ff4cc0aa0eeab2a3792236b73eda4bd9f0e005067d14c8bdf4c481e72
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.\* [1bf8d2c](https://github.com/rwz/ember-cli-rails/commit/1bf8d2c5fb43e369b76819ffd5bd2bbcfb0fe14e)
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{app/<your-appname>/app/\w+/.+\.(js|hbs|html|css|<other-extensions>)}
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
@@ -5,10 +5,8 @@ module EmberCLI
5
5
  end
6
6
 
7
7
  initializer "ember-cli-rails.inflector" do
8
- if Rails.version > "3.2"
9
- ActiveSupport::Inflector.inflections :en do |inflect|
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
 
@@ -1,3 +1,3 @@
1
1
  module EmberCLI
2
- VERSION = "0.1.11".freeze
2
+ VERSION = "0.1.12".freeze
3
3
  end
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.11
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 00:00:00.000000000 Z
13
+ date: 2015-03-20 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: railties