Skip to content

Commit c183c43

Browse files
author
Git for Windows Build Agent
committed
Update 4 packages
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]>
1 parent 23e3f64 commit c183c43

File tree

4,583 files changed

+345280
-341866
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,583 files changed

+345280
-341866
lines changed

etc/rebase.db.i386

0 Bytes
Binary file not shown.

mingw32/bin/gem

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,12 @@
11
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
24
#--
35
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
46
# All rights reserved.
57
# See LICENSE.txt for permissions.
68
#++
79

8-
require 'rubygems'
9-
require 'rubygems/gem_runner'
10-
require 'rubygems/exceptions'
11-
12-
required_version = Gem::Requirement.new ">= 1.8.7"
13-
14-
unless required_version.satisfied_by? Gem.ruby_version then
15-
abort "Expected Ruby Version #{required_version}, is #{Gem.ruby_version}"
16-
end
17-
18-
args = ARGV.clone
19-
20-
begin
21-
Gem::GemRunner.new.run args
22-
rescue Gem::SystemExitException => e
23-
exit e.exit_code
24-
end
10+
require "rubygems/gem_runner"
2511

12+
Gem::GemRunner.new.run ARGV.clone

mingw32/bin/gem.cmd

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,14 @@ exec "$bindir/ruby" "-x" "$0" "$@" #
77
>,
88
}
99
#!/usr/bin/env ruby
10+
# frozen_string_literal: true
11+
1012
#--
1113
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
1214
# All rights reserved.
1315
# See LICENSE.txt for permissions.
1416
#++
1517

16-
require 'rubygems'
17-
require 'rubygems/gem_runner'
18-
require 'rubygems/exceptions'
19-
20-
required_version = Gem::Requirement.new ">= 1.8.7"
21-
22-
unless required_version.satisfied_by? Gem.ruby_version then
23-
abort "Expected Ruby Version #{required_version}, is #{Gem.ruby_version}"
24-
end
25-
26-
args = ARGV.clone
27-
28-
begin
29-
Gem::GemRunner.new.run args
30-
rescue Gem::SystemExitException => e
31-
exit e.exit_code
32-
end
18+
require "rubygems/gem_runner"
3319

20+
Gem::GemRunner.new.run ARGV.clone

mingw32/bin/git-lfs.exe

619 KB
Binary file not shown.

mingw32/bin/msvcrt-ruby310.dll

-3.54 MB
Binary file not shown.

mingw32/bin/msvcrt-ruby330.dll

4.18 MB
Binary file not shown.

mingw32/bin/ruby.exe

526 Bytes
Binary file not shown.

mingw32/bin/rubyw.exe

526 Bytes
Binary file not shown.

mingw32/bin/syntax_suggest

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
:""||{ ""=> %q<-*- ruby -*-
2+
@"%~dp0ruby" -x "%~f0" %*
3+
@exit /b %ERRORLEVEL%
4+
};{ #
5+
bindir="${0%/*}" #
6+
exec "$bindir/ruby" "-x" "$0" "$@" #
7+
>,
8+
}
9+
#!/usr/bin/env ruby
10+
#
11+
# This file was generated by RubyGems.
12+
#
13+
# The application 'syntax_suggest' is installed as part of a gem, and
14+
# this file is here to facilitate running it.
15+
#
16+
17+
require 'rubygems'
18+
19+
Gem.use_gemdeps
20+
21+
version = ">= 0.a"
22+
23+
str = ARGV.first
24+
if str
25+
str = str.b[/\A_(.*)_\z/, 1]
26+
if str and Gem::Version.correct?(str)
27+
version = str
28+
ARGV.shift
29+
end
30+
end
31+
32+
if Gem.respond_to?(:activate_bin_path)
33+
load Gem.activate_bin_path('syntax_suggest', 'syntax_suggest', version)
34+
else
35+
gem "syntax_suggest", version
36+
load Gem.bin_path("syntax_suggest", "syntax_suggest", version)
37+
end

0 commit comments

Comments
 (0)