summaryrefslogtreecommitdiff
path: root/gems
diff options
context:
space:
mode:
Diffstat (limited to 'gems')
-rw-r--r--gems/bundled_gems56
-rw-r--r--gems/lib/core_assertions.rb1
-rw-r--r--gems/lib/envutil.rb1
-rw-r--r--gems/lib/rake/extensiontask.rb14
4 files changed, 63 insertions, 9 deletions
diff --git a/gems/bundled_gems b/gems/bundled_gems
index fa2f585f6a..e42c7afd39 100644
--- a/gems/bundled_gems
+++ b/gems/bundled_gems
@@ -1,9 +1,47 @@
-# gem-name version-to-bundle repository-url [optional-commit-hash-to-test-or-defaults-to-v-version]
-minitest 5.14.4 https://github.com/seattlerb/minitest
-power_assert 2.0.0 https://github.com/ruby/power_assert
-rake 13.0.3 https://github.com/ruby/rake
-test-unit 3.4.1 https://github.com/test-unit/test-unit 3.4.1
-rexml 3.2.5 https://github.com/ruby/rexml
-rss 0.2.9 https://github.com/ruby/rss 0.2.9
-typeprof 0.13.0 https://github.com/ruby/typeprof
-rbs 1.2.0 https://github.com/ruby/rbs
+# gem-name version repository-url [revision]
+#
+# - gem-name: gem name to bundle
+# - version: released version to bundle
+# - repository-url: URL from where clone for test
+# - revision: revision in repository-url to test
+# if `revision` is not given, "v"+`version` or `version` will be used.
+
+minitest 6.0.6 https://github.com/minitest/minitest
+power_assert 3.0.1 https://github.com/ruby/power_assert
+rake 13.4.2 https://github.com/ruby/rake
+test-unit 3.7.7 https://github.com/test-unit/test-unit
+rexml 3.4.4 https://github.com/ruby/rexml
+rss 0.3.2 https://github.com/ruby/rss
+net-imap 0.6.4 https://github.com/ruby/net-imap
+net-smtp 0.5.1 https://github.com/ruby/net-smtp
+matrix 0.4.3 https://github.com/ruby/matrix
+prime 0.1.4 https://github.com/ruby/prime
+rbs 4.0.2 https://github.com/ruby/rbs 36a7e8e38df9efd33db83c3f30f0308bdeb84bd9
+typeprof 0.32.0 https://github.com/ruby/typeprof
+debug 1.11.1 https://github.com/ruby/debug 9dc2024a5a05116b3d38afbc5579d9503d8913f3
+racc 1.8.1 https://github.com/ruby/racc
+mutex_m 0.3.0 https://github.com/ruby/mutex_m
+getoptlong 0.2.1 https://github.com/ruby/getoptlong
+base64 0.3.0 https://github.com/ruby/base64
+bigdecimal 4.1.2 https://github.com/ruby/bigdecimal
+observer 0.1.2 https://github.com/ruby/observer
+abbrev 0.1.2 https://github.com/ruby/abbrev
+resolv-replace 0.2.0 https://github.com/ruby/resolv-replace
+rinda 0.2.0 https://github.com/ruby/rinda
+drb 2.2.3 https://github.com/ruby/drb
+nkf 0.2.0 https://github.com/ruby/nkf
+syslog 0.4.0 https://github.com/ruby/syslog
+csv 3.3.5 https://github.com/ruby/csv
+repl_type_completor 0.1.15 https://github.com/ruby/repl_type_completor
+ostruct 0.6.3 https://github.com/ruby/ostruct
+pstore 0.2.1 https://github.com/ruby/pstore
+benchmark 0.5.0 https://github.com/ruby/benchmark
+logger 1.7.0 https://github.com/ruby/logger
+rdoc 7.2.0 https://github.com/ruby/rdoc 1f93543615928b6d45357432f16ec6006e2d8b1e
+win32ole 1.9.3 https://github.com/ruby/win32ole
+irb 1.18.0 https://github.com/ruby/irb
+reline 0.6.3 https://github.com/ruby/reline
+readline 0.0.4 https://github.com/ruby/readline
+fiddle 1.1.8 https://github.com/ruby/fiddle
+tsort 0.2.0 https://github.com/ruby/tsort
+win32-registry 0.1.2 https://github.com/ruby/win32-registry
diff --git a/gems/lib/core_assertions.rb b/gems/lib/core_assertions.rb
new file mode 100644
index 0000000000..7334063885
--- /dev/null
+++ b/gems/lib/core_assertions.rb
@@ -0,0 +1 @@
+require_relative "../../tool/lib/core_assertions.rb"
diff --git a/gems/lib/envutil.rb b/gems/lib/envutil.rb
new file mode 100644
index 0000000000..d684c22cf2
--- /dev/null
+++ b/gems/lib/envutil.rb
@@ -0,0 +1 @@
+require_relative "../../tool/lib/envutil.rb"
diff --git a/gems/lib/rake/extensiontask.rb b/gems/lib/rake/extensiontask.rb
new file mode 100644
index 0000000000..0ab0cb7b50
--- /dev/null
+++ b/gems/lib/rake/extensiontask.rb
@@ -0,0 +1,14 @@
+require "rake/tasklib" unless defined?(Rake::TaskLib)
+
+module Rake
+ class ExtensionTask < TaskLib
+ def initialize(...)
+ task :compile do |args|
+ puts "Dummy `compile` task defined in #{__FILE__}"
+ puts "#{args.name} => #{args.prereqs.join(' ')}"
+ end
+ end
+
+ def lib_dir; end
+ end
+end