# frozen_string_literal: true SIMPLE_GEM = <<-GEMDATA.freeze MD5SUM = "989bf34a1cbecd52e0ea66b662b3a405" if $0 == __FILE__ require 'optparse' options = {} ARGV.options do |opts| opts.on_tail("--help", "show this message") {puts opts; exit} opts.on('--dir=DIRNAME', "Installation directory for the Gem") {|options[:directory]|} opts.on('--force', "Force Gem to install, bypassing dependency checks") {|options[:force]|} opts.on('--gen-rdoc', "Generate RDoc documentation for the Gem") {|options[:gen_rdoc]|} opts.parse! end require 'rubygems' @directory = options[:directory] || Gem.dir @force = options[:force] gem = Gem::Installer.at(__FILE__).install(@force, @directory) if options[:gen_rdoc] Gem::DocManager.new(gem).generate_rdoc end end __END__ --- !ruby/object:Gem::Specification rubygems_version: "1.0" name: testing version: !ruby/object:Gem::Version version: 1.2.3 date: 2004-03-18 22:01:52.859121 -05:00 platform: summary: This exercise the gem testing stuff. require_paths: - lib files: - lib/foo.rb - lib/test - lib/test.rb - lib/test/wow.rb autorequire: test test_suite_file: foo requirements: - a computer processor --- - size: 109 mode: 420 path: lib/foo.rb - size: 0 mode: 420 path: lib/test.rb - size: 15 mode: 420 path: lib/test/wow.rb --- eJwVjDEKgDAUQ/eeIpsKguhY3ARPoHMp9quF0mL7e39/h5DwQpLpqz4TOqbC U42eO6WuYEvBntIhECuaaX1KqXXLmy2kAEc32szExK+PjyBAlpTZyK0N/Twu g1CKTjX9BGAj1w== --- eJwDAAAAAAE= --- eJwrKC0pVlAvzy9XyE3MU+cCACwiBP4= GEMDATA ption> The Ruby Programming Language
summaryrefslogtreecommitdiff
path: root/st.c
AgeCommit message (Expand)Author
2024-02-09Move clean-up after table rebuildingNobuyoshi Nakada
2023-12-25Move internal ST functions to internal/st.hPeter Zhu
2023-12-15check modifcation whil ar->stKoichi Sasada
2023-11-11[Bug #19969] Compact st_table after deleted if possibleNobuyoshi Nakada
2023-07-01Define `NO_SANITIZE` with reference to ext/bigdecimal/missing.cjinroq
2023-07-01Supress `warning: ‘unsigned-integer-overflow’ attribute directive ignored...jinroq
2023-06-30Don't check for null pointer in calls to freePeter Zhu
2023-06-29Fix memory leak when copying ST tablesPeter Zhu
2023-06-24De-duplicate parse_st.c code from st.cNobuyoshi Nakada
2023-06-17Use ruby functions if `RUBY` is definedNobuyoshi Nakada
2023-06-17Expand `#ifdef RUBY` regionNobuyoshi Nakada
2023-05-17Implement Hash ST tables on VWAPeter Zhu
2023-03-20Use an st table for "too complex" objectsAaron Patterson
2023-02-10st.c: spell `perturb' properlyEric Wong
2022-10-19Fix and improve coroutines for Darwin (macOS) ppc/ppc64. (#5975)Sergey Fedorov
2022-10-06[Bug #19038] Fix corruption of generic_iv_tbl when compactingPeter Zhu
2022-07-21Expand tabs [ci skip]Takashi Kokubun
2022-02-28st.c: Fix a typo in a commentYusuke Endoh