ember-cli-rails 0.5.2 → 0.5.3

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: ddb6dc3742597e8044ab777f9497be13fa30bd10
4
- data.tar.gz: 65afcdf3aedec901b2fd606624f5117c1cee659a
3
+ metadata.gz: a477097f445d867f4eb15dc3324de4403ba786c4
4
+ data.tar.gz: 372d3a187bf7c67b88143c5f33baf04de9e1a767
5
5
  SHA512:
6
- metadata.gz: aabc433601664fa93b54d67612517f57771841f090829f2b0f5c84e61d2a0333f9c61d417794c586302073940fcafed7a63648cab4d733b67d098356568efc1e
7
- data.tar.gz: e4e4652c381c9182e8cc95bd486e078a2e2ffe4a2c12abc7fa24861a8bc0f928b89680199299371d74345717c73afc475a680ba12bc1c0de1e86531df30fc6dc
6
+ metadata.gz: 69f1d502d3a90a6ef890e2a0739e30bdc76c1818f60b2cfa55aaec67cb6a12f76dd47b725f77ecec9f02caa4091ef6883916ff194b0815ba6a4a9ce99ec6b927
7
+ data.tar.gz: 77a53d500ce206dfb378f67920732391329bfd6e21eadd8439cdd22abd43507b72a9350ec432667654baf2bc4dd606ac1b9b994656447f41903b3844bd0893d2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  master
2
2
  ------
3
3
 
4
+ 0.5.3
5
+ -----
6
+
7
+ * No longer redirect `STDERR` to `STDOUT` when executing `ember` commands. This
8
+ fixes some JRuby bugs. [#288]
9
+ * Don't `prune` in generated Heroku setup script. [#286]
10
+
11
+ [#288]: https://github.com/thoughtbot/ember-cli-rails/pull/288
12
+ [#286]: https://github.com/thoughtbot/ember-cli-rails/pull/286
13
+
4
14
  0.5.2
5
15
  -----
6
16
 
@@ -55,7 +55,7 @@ module EmberCli
55
55
 
56
56
  def exec(command, method: :system)
57
57
  Dir.chdir paths.root do
58
- Kernel.public_send(method, env, command, err: :out) || exit(1)
58
+ Kernel.public_send(method, env, command) || exit(1)
59
59
  end
60
60
  end
61
61
 
@@ -1,3 +1,3 @@
1
1
  module EmberCli
2
- VERSION = "0.5.2".freeze
2
+ VERSION = "0.5.3".freeze
3
3
  end
@@ -3,8 +3,11 @@ Description:
3
3
 
4
4
  Once the generator is complete, execute the following:
5
5
 
6
- heroku buildpacks:add --index 1 https://github.com/heroku/heroku-buildpack-nodejs
7
- heroku config:set NPM_CONFIG_PRODUCTION=false
6
+ $ heroku buildpacks:clear
7
+ $ heroku buildpacks:add --index 1 https://github.com/heroku/heroku-buildpack-nodejs
8
+ $ heroku buildpacks:add --index 2 https://github.com/heroku/heroku-buildpack-ruby
9
+ $ heroku config:set NPM_CONFIG_PRODUCTION=false
10
+ $ heroku config:unset SKIP_EMBER
8
11
 
9
12
  Example:
10
13
  rails generate ember-cli:heroku
@@ -6,8 +6,6 @@ bower="$(pwd)/node_modules/.bin/bower"
6
6
 
7
7
  for app in <%= app_paths.map { |app_path| %{"#{app_path}"} }.join(" ") -%>; do
8
8
  cd $app &&
9
- npm prune &&
10
9
  npm install &&
11
- $bower prune &&
12
10
  $bower install
13
11
  done
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.5.2
4
+ version: 0.5.3
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-11-16 00:00:00.000000000 Z
13
+ date: 2015-11-19 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: railties