summaryrefslogtreecommitdiff
path: root/test/rubygems
AgeCommit message (Collapse)Author
2023-06-22[rubygems/rubygems] Fix argument order of `assert_equal`Nobuyoshi Nakada
https://github.com/rubygems/rubygems/commit/a7c015f82b
2023-06-19[rubygems/rubygems] Bump rb-sysdependabot[bot]
Bumps [rb-sys](https://github.com/oxidize-rb/rb-sys) from 0.9.78 to 0.9.79. - [Release notes](https://github.com/oxidize-rb/rb-sys/releases) - [Commits](https://github.com/oxidize-rb/rb-sys/compare/v0.9.78...v0.9.79) --- updated-dependencies: - dependency-name: rb-sys dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2023-06-19[rubygems/rubygems] Suppress Content-Type warningsNobuyoshi Nakada
https://github.com/rubygems/rubygems/commit/97dbe4cabd
2023-06-19[rubygems/rubygems] RemoteFetcher tests don't work with path including `+`Nobuyoshi Nakada
https://github.com/rubygems/rubygems/commit/657d57621e
2023-06-19[rubygems/rubygems] Escape regexp metachacters or use `assert_include`Nobuyoshi Nakada
https://github.com/rubygems/rubygems/commit/6d445a85d7
2023-06-15[rubygems/rubygems] Removed unnecessary disabling of Lint/DuplicateMethodsHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/225fdf0b2e
2023-06-05[rubygems/rubygems] Try again with ↵Hiroshi SHIBATA
https://github.com/rubygems/rubygems/pull/6693 https://github.com/rubygems/rubygems/commit/73c0d5f059
2023-05-30Merge RubyGems/Bundler master from 4076391fce5847689bf2ec402b17133fe4e32285Hiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/7873
2023-05-29[rubygems/rubygems] Bump rb-sysdependabot[bot]
Bumps [rb-sys](https://github.com/oxidize-rb/rb-sys) from 0.9.77 to 0.9.78. - [Release notes](https://github.com/oxidize-rb/rb-sys/releases) - [Commits](https://github.com/oxidize-rb/rb-sys/compare/v0.9.77...v0.9.78) --- updated-dependencies: - dependency-name: rb-sys dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2023-05-25[rubygems/rubygems] Load plugin immediatelySutou Kouhei
We can install RubyGems plugin by "gem install XXX". The installed plugin is used from the NEXT "gem ...". For example, "gem install gem-src kaminari" doesn't use gem-src plugin for kaminari. "gem install gem-src && gem install kaminari" uses gem-src plugin for kaminari. How about loading a plugin immediately when the plugin is installed? If this proposal is implemented, "gem install gem-src kaminari" works like "gem install gem-src && gem install kaminari". https://github.com/rubygems/rubygems/commit/4917d96f4c
2023-05-23[rubygems/rubygems] Remove forward slash in key regardless if it contains __Jenny Shen
https://github.com/rubygems/rubygems/commit/33a02eec00
2023-05-15[rubygems/rubygems] Bump rb-sysdependabot[bot]
Bumps [rb-sys](https://github.com/oxidize-rb/rb-sys) from 0.9.75 to 0.9.77. - [Release notes](https://github.com/oxidize-rb/rb-sys/releases) - [Commits](https://github.com/oxidize-rb/rb-sys/compare/v0.9.75...v0.9.77) --- updated-dependencies: - dependency-name: rb-sys dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2023-05-02[rubygems/rubygems] Bump rb-sysdependabot[bot]
Bumps [rb-sys](https://github.com/oxidize-rb/rb-sys) from 0.9.74 to 0.9.75. - [Release notes](https://github.com/oxidize-rb/rb-sys/releases) - [Commits](https://github.com/oxidize-rb/rb-sys/compare/v0.9.74...v0.9.75) --- updated-dependencies: - dependency-name: rb-sys dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2023-04-24[rubygems/rubygems] Bump rb-sysdependabot[bot]
Bumps [rb-sys](https://github.com/oxidize-rb/rb-sys) from 0.9.72 to 0.9.74. - [Release notes](https://github.com/oxidize-rb/rb-sys/releases) - [Commits](https://github.com/oxidize-rb/rb-sys/compare/v0.9.72...v0.9.74) --- updated-dependencies: - dependency-name: rb-sys dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2023-04-20[rubygems/rubygems] Revert "Bundler::YAMLSerializer.load couldn't raise ↵Hiroshi SHIBATA
error when invalid yaml was provided" This reverts commit https://github.com/rubygems/rubygems/commit/cfcfde04c783. https://github.com/rubygems/rubygems/commit/ac21ae7083
2023-04-19Hide Gem::MockGemUi. It's only used by testsHiroshi SHIBATA
2023-04-19[rubygems/rubygems] Added tests for load_with_rubygems_config_hash and ↵Hiroshi SHIBATA
dump_with_rubygems_yaml https://github.com/rubygems/rubygems/commit/0393f24119
2023-04-19[rubygems/rubygems] Bundler::YAMLSerializer.load couldn't raise error when ↵Hiroshi SHIBATA
invalid yaml was provided https://github.com/rubygems/rubygems/commit/cfcfde04c7
2023-04-19[rubygems/rubygems] Replaced Gem::ConfigFile.dump_with_rubygems_yaml for ↵Hiroshi SHIBATA
saveing configuration https://github.com/rubygems/rubygems/commit/46438e61cd
2023-04-19[rubygems/rubygems] Introduce self.load_with_rubygems_config_hashHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/9175b8cf2a
2023-04-19[rubygems/rubygems] Wrap self.convert_rubygems_config_hash from ↵Hiroshi SHIBATA
Bundler::YAMLSerializer.load https://github.com/rubygems/rubygems/commit/080880ac23
2023-04-19[rubygems/rubygems] Move all changes only in RubyGemsHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/d842e2092f
2023-04-19[rubygems/rubygems] Added guard condition for replacing __ variable in YAML keysHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/e7d31405ea
2023-04-19[rubygems/rubygems] Replaced load_yaml_file with Bundler::YAMLSerializerHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/1ed5fc018e
2023-04-19[rubygems/rubygems] api_key is always contained stringHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/925f7f6717
2023-04-17[rubygems/rubygems] Bump rb-sysdependabot[bot]
Bumps [rb-sys](https://github.com/oxidize-rb/rb-sys) from 0.9.71 to 0.9.72. - [Release notes](https://github.com/oxidize-rb/rb-sys/releases) - [Commits](https://github.com/oxidize-rb/rb-sys/compare/v0.9.71...v0.9.72) --- updated-dependencies: - dependency-name: rb-sys dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2023-04-13[rubygems/rubygems] Extract alias variables for long name classHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/33caea928e
2023-04-13[rubygems/rubygems] Downcase camel like cases of instance variableHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/4eaac27107
2023-04-12[rubygems/rubygems] Close the server for testNobuyoshi Nakada
https://github.com/rubygems/rubygems/commit/bf5e82fd14
2023-04-12Ensure api_key is sent if basic auth not provided on webauthn_verification_urlAshley Ellis Pierce
Co-authored-by: Jenny Shen <jenny.shen@shopify.com>
2023-04-12Add message for otp bypassEric Herscovich
Update tests Fix wording of message
2023-04-12Terminate interaction when rescuing WebauthnVerificationError during ↵Jenny Shen
wait_for_otp Co-authored-by: Betty Li <makewithbetty@gmail.com>
2023-04-12Use Webauthn Listener in wait_for_otpJenny Shen
2023-04-12Add wait for webauthn otp when fetching otpJenny Shen
Co-authored-by: Jacques Chester <jacques.chester@shopify.com>
2023-04-12[rubygems/rubygems] Refactor Webauthn listener response - Makes the response ↵Jenny Shen
class a wrapper around Net::HTTPResponse - Builds a Net::HTTPResponse upon initialization - to_s returns a string representation of the response to send - Adds a Socket Responder class to send responses given a socket https://github.com/rubygems/rubygems/commit/7513c220b6 Co-authored-by: Jacques Chester <jacques.chester@shopify.com>
2023-04-12[rubygems/rubygems] Add access control headers for all requests to allow ↵Jenny Shen
RubyGems.org to render the response https://github.com/rubygems/rubygems/commit/22b329eb60
2023-04-12[rubygems/rubygems] Add otp command testsJenny Shen
https://github.com/rubygems/rubygems/commit/c494112063
2023-04-12[rubygems/rubygems] Add WebauthnListener classJenny Shen
https://github.com/rubygems/rubygems/commit/d42ddbb73c Co-authored-by: Ashley Ellis Pierce <anellis12@gmail.com> Co-authored-by: Jacques Chester <jacques.chester@shopify.com>
2023-04-12[rubygems/rubygems] Add MockBrowser helper classJenny Shen
https://github.com/rubygems/rubygems/commit/2d763cfd47 Co-authored-by: Jacques Chester <jacques.chester@shopify.com>
2023-04-12[rubygems/rubygems] Add WebauthnListener response classesJenny Shen
https://github.com/rubygems/rubygems/commit/0e9a26acb1
2023-04-12[rubygems/rubygems] Clarify messageAshley Ellis Pierce
https://github.com/rubygems/rubygems/commit/d94173be49
2023-04-12[rubygems/rubygems] Ask user to otp at webauthn verification urlAshley Ellis Pierce
https://github.com/rubygems/rubygems/commit/004eadb0c5
2023-04-11util/rubocop -A --only Style/NumericLiteralPrefixHiroshi SHIBATA
2023-04-11[rubygems/rubygems] Bump rb-sysdependabot[bot]
Bumps [rb-sys](https://github.com/oxidize-rb/rb-sys) from 0.9.70 to 0.9.71. - [Release notes](https://github.com/oxidize-rb/rb-sys/releases) - [Commits](https://github.com/oxidize-rb/rb-sys/compare/v0.9.70...v0.9.71) --- updated-dependencies: - dependency-name: rb-sys dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2023-04-07[rubygems/rubygems] util/rubocop -A --only Style/FormatStringHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/132a56569d
2023-04-06[rubygems/rubygems] util/rubocop -A --only Style/LineEndConcatenationHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/67ece7b8b6
2023-04-06[rubygems/rubygems] Use TestCase#util_spec instead of custom code.Vít Ondruch
https://github.com/rubygems/rubygems/commit/74d485ff1e
2023-04-05[rubygems/rubygems] util/rubocop -A --only Style/RegexpLiteralHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/9264d83421
2023-04-05[rubygems/rubygems] Removed unused Gem::Deprecate from Gem::TestCaseHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/d8a75a5f84
2023-04-05[rubygems/rubygems] Extract class method used by self.methodHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/d900453ca2