File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ Right now, the path to the shitlist is hardcoded so make sure you store yours at
83
83
This command helps you dual-boot your application.
84
84
85
85
``` bash
86
- next --init # Create Gemfile.next
86
+ next --init # Create Gemfile.next and Gemfile.next.lock
87
87
vim Gemfile # Tweak your dependencies conditionally using `next?`
88
88
next bundle install # Install new gems
89
89
next rails s # Start server using Gemfile.next
@@ -105,6 +105,17 @@ Or install it yourself as:
105
105
106
106
$ gem install next_rails
107
107
108
+ ## Setup
109
+
110
+ Execute:
111
+
112
+ $ next --init
113
+
114
+ Init will create a Gemfile.next and an initialized Gemfile.next.lock.
115
+ The Gemfile.next.lock is initialized with the contents of your existing
116
+ Gemfile.lock lock file. We initialize the Gemfile.next.lock to prevent
117
+ major version jumps when running the next version of Rails.
118
+
108
119
## License
109
120
110
121
The gem is available as open source under the terms of the [ MIT License] ( https://opensource.org/licenses/MIT ) .
You can’t perform that action at this time.
0 commit comments