Skip to content

Commit

Permalink
Update 4 packages
Browse files Browse the repository at this point in the history
mingw-w64-i686-asciidoctor (2.0.23-1 -> 2.0.23-2)
mingw-w64-i686-git-lfs (3.5.1-1 -> 3.6.0-1)
mingw-w64-i686-ruby (removed)
mingw-w64-i686-ruby (new: 3.3.6-1)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Nov 22, 2024
1 parent 23e3f64 commit c183c43
Show file tree
Hide file tree
Showing 4,583 changed files with 345,280 additions and 341,866 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Binary file modified etc/rebase.db.i386
Binary file not shown.
21 changes: 4 additions & 17 deletions mingw32/bin/gem
Original file line number Diff line number Diff line change
@@ -1,25 +1,12 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems'
require 'rubygems/gem_runner'
require 'rubygems/exceptions'

required_version = Gem::Requirement.new ">= 1.8.7"

unless required_version.satisfied_by? Gem.ruby_version then
abort "Expected Ruby Version #{required_version}, is #{Gem.ruby_version}"
end

args = ARGV.clone

begin
Gem::GemRunner.new.run args
rescue Gem::SystemExitException => e
exit e.exit_code
end
require "rubygems/gem_runner"

Gem::GemRunner.new.run ARGV.clone
21 changes: 4 additions & 17 deletions mingw32/bin/gem.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,14 @@ exec "$bindir/ruby" "-x" "$0" "$@" #
>,
}
#!/usr/bin/env ruby
# frozen_string_literal: true

#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems'
require 'rubygems/gem_runner'
require 'rubygems/exceptions'

required_version = Gem::Requirement.new ">= 1.8.7"

unless required_version.satisfied_by? Gem.ruby_version then
abort "Expected Ruby Version #{required_version}, is #{Gem.ruby_version}"
end

args = ARGV.clone

begin
Gem::GemRunner.new.run args
rescue Gem::SystemExitException => e
exit e.exit_code
end
require "rubygems/gem_runner"

Gem::GemRunner.new.run ARGV.clone
Binary file modified mingw32/bin/git-lfs.exe
Binary file not shown.
Binary file removed mingw32/bin/msvcrt-ruby310.dll
Binary file not shown.
Binary file added mingw32/bin/msvcrt-ruby330.dll
Binary file not shown.
Binary file modified mingw32/bin/ruby.exe
Binary file not shown.
Binary file modified mingw32/bin/rubyw.exe
Binary file not shown.
37 changes: 37 additions & 0 deletions mingw32/bin/syntax_suggest
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
:""||{ ""=> %q<-*- ruby -*-
@"%~dp0ruby" -x "%~f0" %*
@exit /b %ERRORLEVEL%
};{ #
bindir="${0%/*}" #
exec "$bindir/ruby" "-x" "$0" "$@" #
>,
}
#!/usr/bin/env ruby
#
# This file was generated by RubyGems.
#
# The application 'syntax_suggest' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'rubygems'

Gem.use_gemdeps

version = ">= 0.a"

str = ARGV.first
if str
str = str.b[/\A_(.*)_\z/, 1]
if str and Gem::Version.correct?(str)
version = str
ARGV.shift
end
end

if Gem.respond_to?(:activate_bin_path)
load Gem.activate_bin_path('syntax_suggest', 'syntax_suggest', version)
else
gem "syntax_suggest", version
load Gem.bin_path("syntax_suggest", "syntax_suggest", version)
end
Loading

0 comments on commit c183c43

Please sign in to comment.