From 7955e1928be0a5068c3cfe30126790ddf36857c2 Mon Sep 17 00:00:00 2001 From: Sergey Zyablitsky Date: Sat, 19 Sep 2015 12:32:05 +0900 Subject: [PATCH 1/3] Upadate README CI configuration --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 1d181cf2b..3f42ae618 100644 --- a/README.md +++ b/README.md @@ -250,6 +250,13 @@ We have feature tests in /spec/features Run the tests with `rspec`. +## CI configuration +Add those lines to your CI scripts after `bundle install` +``` +npm install +cd client && $(npm bin)/webpack --config webpack.rails.config.js +``` + # Linting and Code Inspection ## Running Lint and CI tasks * Default rake task runs tests and linting (yes, repeating this!) (see `ci.rake`) From a6e0555eba9e240509ba4984b973fcdf838ab5dd Mon Sep 17 00:00:00 2001 From: Sergey Zyablitsky Date: Sat, 19 Sep 2015 18:19:44 +0900 Subject: [PATCH 2/3] Update README.md fix for new build system --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f42ae618..7869b5b29 100644 --- a/README.md +++ b/README.md @@ -254,7 +254,7 @@ Run the tests with `rspec`. Add those lines to your CI scripts after `bundle install` ``` npm install -cd client && $(npm bin)/webpack --config webpack.rails.config.js +cd client && npm run build ``` # Linting and Code Inspection From c284074d02cee299dd42d61aac39323494e2040a Mon Sep 17 00:00:00 2001 From: Sergey Zyablitsky Date: Mon, 28 Sep 2015 13:45:56 +0900 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7869b5b29..c67268936 100644 --- a/README.md +++ b/README.md @@ -254,7 +254,7 @@ Run the tests with `rspec`. Add those lines to your CI scripts after `bundle install` ``` npm install -cd client && npm run build +cd client && npm run build:client && npm run build:server ``` # Linting and Code Inspection