From e444ed2e4762ce19f24f7a40d7913edc79c18f14 Mon Sep 17 00:00:00 2001 From: Jonathan Jackson Date: Mon, 22 Dec 2014 13:16:58 -0500 Subject: [PATCH] Bump dependency on ember-cli-rails to 0.0.5 This version of the addon includes a monkeypatch that properly fires the `preBuild` hook before build is invoked. fixes #31 --- README.md | 2 +- lib/ember-cli/app.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 95f8ac4a..093f3851 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ Once you've updated your initializer to taste, you need to install the For each of your EmberCLI applications install the addon with: ```sh -npm install --save-dev ember-cli-rails-addon@0.0.3 +npm install --save-dev ember-cli-rails-addon@0.0.5 ``` And that's it! diff --git a/lib/ember-cli/app.rb b/lib/ember-cli/app.rb index 3dd2f42c..eabec76a 100644 --- a/lib/ember-cli/app.rb +++ b/lib/ember-cli/app.rb @@ -2,7 +2,7 @@ module EmberCLI class App - ADDON_VERSION = "0.0.3" + ADDON_VERSION = "0.0.5" EMBER_CLI_VERSION = "~> 0.1.3" attr_reader :name, :options, :pid