mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7585bc3187
Features: - Add caller information to some deprecation messages to make them easier to fix [#7361](https://github.com/bundler/bundler/pull/7361) - Reconcile `bundle cache` vs `bundle package` everywhere. Now in docs, CLI help and everywhere else `bundle cache` is the preferred version and `bundle package` remains as an alias [#7389](https://github.com/bundler/bundler/pull/7389) - Display some basic `bundler` documentation together with ruby's RDoc based documentation [#7394](https://github.com/bundler/bundler/pull/7394) Bugfixes: - Fix typos deprecation message and upgrading docs [#7374](https://github.com/bundler/bundler/pull/7374) - Deprecation warnings about `taint` usage on ruby 2.7 [#7385](https://github.com/bundler/bundler/pull/7385) - Fix `--help` flag not correctly delegating to `man` when used with command aliases [#7388](https://github.com/bundler/bundler/pull/7388) - `bundle add` should cache newly added gems if an application cache exists [#7393](https://github.com/bundler/bundler/pull/7393) - Stop using an insecure folder as a "fallback home" when user home is not defined [#7416](https://github.com/bundler/bundler/pull/7416) - Fix `bundler/inline` warning about `Bundler.root` redefinition [#7417](https://github.com/bundler/bundler/pull/7417)
38 lines
1.2 KiB
Ruby
38 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "compact_index"
|
|
|
|
Artifice.deactivate
|
|
|
|
class CompactIndexPartialUpdate < CompactIndexAPI
|
|
# Stub the server to never return 304s. This simulates the behaviour of
|
|
# Fastly / Rubygems ignoring ETag headers.
|
|
def not_modified?(_checksum)
|
|
false
|
|
end
|
|
|
|
get "/versions" do
|
|
cached_versions_path = File.join(
|
|
Bundler.rubygems.user_home, ".bundle", "cache", "compact_index",
|
|
"localgemserver.test.80.dd34752a738ee965a2a4298dc16db6c5", "versions"
|
|
)
|
|
|
|
# Verify a cached copy of the versions file exists
|
|
unless File.read(cached_versions_path).start_with?("created_at: ")
|
|
raise("Cached versions file should be present and have content")
|
|
end
|
|
|
|
# Verify that a partial request is made, starting from the index of the
|
|
# final byte of the cached file.
|
|
unless env["HTTP_RANGE"] == "bytes=#{File.read(cached_versions_path).bytesize - 1}-"
|
|
raise("Range header should be present, and start from the index of the final byte of the cache.")
|
|
end
|
|
|
|
etag_response do
|
|
# Return the exact contents of the cache.
|
|
File.read(cached_versions_path)
|
|
end
|
|
end
|
|
end
|
|
|
|
Artifice.activate_with(CompactIndexPartialUpdate)
|