Skip to content

Commit 9952688

Browse files
author
Matthew Saginario
committed
hyper-model-only to hyper-model
1 parent 658e6ca commit 9952688

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/installation/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ bundle exec ... # for best results always use bundle exec!
6464
rails hyperstack:install # full system install
6565
rails hyperstack:install:webpack # just add webpack
6666
rails 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
6868
rails hyperstack:install:skip-hyper-model # all but hyper-model
6969
rails hyperstack:install:hotloader-only # just add the hotloader
7070
rails hyperstack:install:skip-hotloader # skip the hotloader
@@ -99,7 +99,7 @@ rails g hyper:router CompName # adds a router component
9999
100100
rails g hyper:component App --add-route
101101
rails hyperstack:install:webpack
102-
rails hyperstack:install:hyper-model-only
102+
rails hyperstack:install:hyper-model
103103
rails hyperstack:install:hotloader-only
104104
```
105105

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

ruby/rails-hyperstack/rails-hyperstack.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)