-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
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.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.