summaryrefslogtreecommitdiff
path: root/bin/bundler
blob: e15eb39ed70c10440aff2acfce6dc4f9fd0737a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env ruby
#
# This file was generated by RubyGems.
#
# The application 'bundler' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'rubygems'

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('bundler', 'bundler', version)
else
gem "bundler", version
load Gem.bin_path("bundler", "bundler", version)
end
'/ruby.git/commit/time.c?h=v3_4_9&id=78f55ccd9be6c1893f07c841843a75f3b988dcf2'>[DOC] Move Time#xmlschema docs to the core (#12403)Victor Shepelev 2024-12-14Extract `NUM2WV` macroNobuyoshi Nakada 2024-12-07[Bug #20929] Win32: Use `wcsftime`Nobuyoshi Nakada 2024-12-06[Bug #20929] Win32: Encode timezone name in UTF-8Nobuyoshi Nakada 2024-10-14[Bug #20797] Check seconds in UTC offset as well as minutesNobuyoshi Nakada 2024-10-14`2digits` macrosNobuyoshi Nakada 2024-10-05Suppress warnings in `time_init_parse` functionS-H-GAMELINKS 2024-09-23Fix a -Wsign-compare warningTakashi Kokubun 2024-09-23Refactor `Time#xmlschema`Nobuyoshi Nakada 2024-09-06[Feature #20707] Fix negative UTC offset conversionNobuyoshi Nakada 2024-09-05Move Time#xmlschema in core and optimize itJean Boussier 2024-06-02Time internal representation comment removed.Tanaka Akira 2024-03-22Fix pointer incompatiblityNobuyoshi Nakada