mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2026-05-30 11:18:40 +02:00
759bf16be6
Use "bundle config set --local" to set "path" and "without" flags.
19 lines
333 B
Batchfile
19 lines
333 B
Batchfile
@echo off
|
|
|
|
git clone --depth=1 https://github.com/ruby/typeprof .
|
|
|
|
call bundle config set --local path vendor/bundle
|
|
call bundle config set --local without development
|
|
call bundle install
|
|
|
|
echo @echo off ^
|
|
|
|
setlocal ^
|
|
|
|
set BUNDLE_GEMFILE=%%~dp0Gemfile ^
|
|
|
|
bundle exec ruby %%~dp0\exe\typeprof %%* ^
|
|
|
|
> typeprof.cmd
|
|
|