Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ You can find those interperters here:
* [Python](https://www.python.org/downloads/) 2.7
* [Python 3](https://www.python.org/downloads/) 3.8 or later
* [Racket](https://download.racket-lang.org/) 8.7 (BC)
* [RubyInstaller](http://rubyinstaller.org/downloads/) 3.2
* [RubyInstaller](http://rubyinstaller.org/downloads/) 3.4

Make sure that you install the same architecture (32bit/64bit) for those
libraries that matches your Vim installation.
Expand Down
14 changes: 6 additions & 8 deletions appveyor.bat
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ set "RACKET_DIR=%DEPENDENCIES%\racket%RACKET_VER%-%ARCH%"
set "MZSCHEME_VER=%RACKET_VER%"

@rem Ruby
set "RUBY_VER=32"
set "RUBY_API_VER_LONG=3.2.0"
set "RUBY_BRANCH=ruby_3_2"
set "RUBY_RELEASE=3.2.2-1"
set "RUBY_VER=34"
set "RUBY_API_VER_LONG=3.4.0"
set "RUBY_BRANCH=ruby_3_4"
set "RUBY_RELEASE=3.4.8-1"
set "RUBY_SRC_URL=https://github.com/ruby/ruby/archive/%RUBY_BRANCH%.zip"
set "RUBY_URL=https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-%RUBY_RELEASE%/rubyinstaller-%RUBY_RELEASE%-%ARCH%.7z"
set "RUBY_DIR=%DEPENDENCIES%\Ruby%RUBY_VER%-%ARCH%"
Expand Down Expand Up @@ -270,10 +270,8 @@ move %DEPENDENCIES%\rubyinstaller-%RUBY_RELEASE%-%ARCH% ^
@rem RubyInstaller is built by MinGW, so we cannot use header files from it.
@rem Download the source files and generate config.h for MSVC.
call :downloadfile "%RUBY_SRC_URL%" downloads\ruby_src.zip
@rem Extract the files only we needed to reduce the building time.
7z.exe x -y downloads\ruby_src.zip */bin */include */enc/Makefile.in */win32 ^
*/common.mk -ir!version.h -xr!README.* -xr!*/win32/*.c -xr!*/win32/*.h ^
-o.. > nul || exit 1
@rem Extract all files
7z.exe x -y downloads\ruby_src.zip -o.. > nul || exit 1
move ..\ruby-%RUBY_BRANCH% ..\ruby > nul || exit 1
pushd ..\ruby
call win32\configure.bat
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ deploy:
* [Python](https://www.python.org/downloads/) 2.7
* [Python3](https://www.python.org/downloads/) 3.8 or later
* [Racket](https://download.racket-lang.org/) 8.7 (BC)
* [RubyInstaller](http://rubyinstaller.org/downloads/) 3.2
* [RubyInstaller](http://rubyinstaller.org/downloads/) 3.4
* [libsodium](https://download.libsodium.org/libsodium/) 1.0.19
</details>

Expand Down