Skip to content

Commit 48dcc10

Browse files
committed
installer fixups
1 parent 5942545 commit 48dcc10

File tree

3 files changed

+10
-13
lines changed

3 files changed

+10
-13
lines changed

docs/installation/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ rails hyperstack:install:webpack # just add webpack
8080
rails hyperstack:install:skip-webpack # all but webpack
8181
rails hyperstack:install:hyper-model # just add hyper-model
8282
rails hyperstack:install:skip-hyper-model # all but hyper-model
83-
rails hyperstack:install:hotloader-only # just add the hotloader
83+
rails hyperstack:install:hotloader # just add the hotloader
8484
rails hyperstack:install:skip-hotloader # skip the hotloader
8585
8686
# rails g is short for rails generate

ruby/rails-hyperstack/lib/tasks/hyperstack/install.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace :hyperstack do
1010
namespace :install do
1111
task :default do
1212
end
13-
task "hotloader-only" do
13+
task "hotloader" do
1414
exec "#{RbConfig.ruby} #{bin_path}/rails g hyperstack:install --hotloader-only"
1515
end
1616
task "webpack" do

ruby/rails-hyperstack/rails-hyperstack.gemspec

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,14 @@ This will add everything you need including the hotloader, webpack integration,
4242
hyper-model (active record model client synchronization) and a top level
4343
component to get you started.
4444
45-
You can control how much of the stack gets installed using these options:
46-
47-
--skip-hotloader # don't add the hotloader
48-
--skip-webpack # don't add webpack
49-
--skip-hyper-model # don't add hyper-model and default policy files
50-
51-
You can always install these pieces later using these options:
52-
53-
--hotloader-only # just add the hotloader
54-
--webpack-only # just add webpack
55-
--hyper-model-only # just add hyper-model, and default policy files
45+
You can control how much of the stack gets installed as well:
46+
47+
>> bundle exec rails hyperstack:install:webpack # just add webpack
48+
>> bundle exec rails hyperstack:install:skip-webpack # all but webpack
49+
>> bundle exec rails hyperstack:install:hyper-model # just add hyper-model
50+
>> bundle exec rails hyperstack:install:skip-hyper-model # all but hyper-model
51+
>> bundle exec rails hyperstack:install:hotloader # just add the hotloader
52+
>> bundle exec rails hyperstack:install:skip-hotloader # skip the hotloader
5653
5754
*******************************************************************************
5855
}

0 commit comments

Comments
 (0)