File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ bundle exec ... # for best results always use bundle exec!
6464rails hyperstack:install # full system install
6565rails hyperstack:install:webpack # just add webpack
6666rails hyperstack:install:skip-webpack # all but webpack
67- rails hyperstack:install:hyper-model-only # just add hyper-model
67+ rails hyperstack:install:hyper-model # just add hyper-model
6868rails hyperstack:install:skip-hyper-model # all but hyper-model
6969rails hyperstack:install:hotloader-only # just add the hotloader
7070rails hyperstack:install:skip-hotloader # skip the hotloader
@@ -99,7 +99,7 @@ rails g hyper:router CompName # adds a router component
9999
100100rails g hyper:component App --add-route
101101rails hyperstack:install:webpack
102- rails hyperstack:install:hyper-model-only
102+ rails hyperstack:install:hyper-model
103103rails hyperstack:install:hotloader-only
104104```
105105
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ namespace :hyperstack do
1616 task "webpack" do
1717 exec "#{ RbConfig . ruby } #{ bin_path } /rails g hyperstack:install --webpack-only"
1818 end
19- task "hyper-model-only " do
19+ task "hyper-model" do
2020 exec "#{ RbConfig . ruby } #{ bin_path } /rails g hyperstack:install --hyper-model-only"
2121 end
2222 task "skip-hotloader" do
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ You can always install these pieces later using these options:
5050
5151--hotloader-only # just add the hotloader
5252--webpack # just add webpack
53- --hyper-model-only # just add hyper-model, and default policy files
53+ --hyper-model # just add hyper-model, and default policy files
5454
5555*******************************************************************************
5656}
You can’t perform that action at this time.
0 commit comments