ember-cli-rails 0.0.16 → 0.0.17

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: 84093485928f16ef6e3dad167909250468a8483e
4
- data.tar.gz: eea7dab850ffb0a93d91293e29e24a7100260d8e
3
+ metadata.gz: bea73c50b7ae583d0d513fd537bbf9090a792981
4
+ data.tar.gz: 1d3ac0194431d6dabe1dd42f30b39122922a463d
5
5
  SHA512:
6
- metadata.gz: 8ae3f692eddf8f1e6a0d50eb58c3ed0ac5d432b177bed534364ac1d9edd2c053326ba05a0657f969785b4ca8ea0d27e2e79b0c8e5271a8432c9959dbfd1d1d9a
7
- data.tar.gz: 4f8c0afbb6d6176c6075e1622dc325da800226381cf88eca5f80ac9fe3e8c71e9b13ef56c408232048d73fa2f8d606e416abdf0c2fd8b1c08fdc0d0eece9133b
6
+ metadata.gz: cafc706e56398f3d3f0a991c12bff319e1b847642f7dffd8660508bd7dc6a905b0eabcc5d5504fae6d7b59dd12a0758839495b6dd1ed3fae10d12b85070cc3a6
7
+ data.tar.gz: c07db85db8e00b3e87a3b1141177bbc7d9845bf522d5bf2119440507a89b621875d67cf359e8d1290f52642f2c429471f25adfa15223b3d13e0d127d517c4dad
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ 0.0.17
2
+ ------
3
+
4
+ * Only precompile assets that start with <ember-app-name> [#53](https://github.com/rwz/ember-cli-rails/pull/53)
5
+
1
6
  0.0.16
2
7
  ------
3
8
 
data/README.md CHANGED
@@ -114,10 +114,11 @@ could render your app at the `/` route with the following view:
114
114
  Your Ember application will now be served at the `/` route.
115
115
 
116
116
  ## Enabling LiveReload
117
- In order to get LiveReload correctly up and running for EmberCLI Rails, you can
118
- install the [guard](https://github.com/guard/guard) and
119
- [guard-livereload](https://github.com/guard/guard-livereload) gems and then run
120
- `guard init`and adding the following line to your `Guardfile`
117
+
118
+ In order to get LiveReload up and running with EmberCLI Rails, you can install
119
+ [guard](https://github.com/guard/guard) and
120
+ [guard-livereload](https://github.com/guard/guard-livereload) gems, run `guard
121
+ init` and then add the following to your `Guardfile`.
121
122
 
122
123
  ```ruby
123
124
  guard "livereload" do
data/lib/ember-cli/app.rb CHANGED
@@ -146,7 +146,7 @@ module EmberCLI
146
146
  end
147
147
 
148
148
  def add_assets_to_precompile_list
149
- Rails.configuration.assets.precompile << /(?:\/|\A)#{name}\//
149
+ Rails.configuration.assets.precompile << /\A#{name}\//
150
150
  end
151
151
 
152
152
  def command(options={})
@@ -1,3 +1,3 @@
1
1
  module EmberCLI
2
- VERSION = "0.0.16".freeze
2
+ VERSION = "0.0.17".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.0.16
4
+ version: 0.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Pravosud
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-01-08 00:00:00.000000000 Z
12
+ date: 2015-01-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties