Sorbet install: Difference between revisions

From wikinotes
(Created page with "= Gemfile = <blockquote> <syntaxhighlight lang="ruby"> source "https://rubygems.org" gem "sorbet" gem "sorbet-runtime" gem "sorbet-static" </syntaxhighlight> </blockquote><!-- Gemfile -->")
 
No edit summary
Line 9: Line 9:
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Gemfile -->
</blockquote><!-- Gemfile -->
= Init =
<blockquote>
<syntaxhighlight lang="bash">
bundle exec srb init
</syntaxhighlight>
</blockquote><!-- Init -->

Revision as of 20:00, 4 November 2023

Gemfile

source "https://rubygems.org"

gem "sorbet"
gem "sorbet-runtime"
gem "sorbet-static"

Init

bundle exec srb init