|
|
|
@@ -1010,7 +1010,6 @@ module.exports = function createError(message, config, code, request, response)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var bind = __webpack_require__(727);
|
|
|
|
|
var isBuffer = __webpack_require__(812);
|
|
|
|
|
|
|
|
|
|
/*global toString:true*/
|
|
|
|
|
|
|
|
|
@@ -1028,6 +1027,27 @@ function isArray(val) {
|
|
|
|
|
return toString.call(val) === '[object Array]';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine if a value is undefined
|
|
|
|
|
*
|
|
|
|
|
* @param {Object} val The value to test
|
|
|
|
|
* @returns {boolean} True if the value is undefined, otherwise false
|
|
|
|
|
*/
|
|
|
|
|
function isUndefined(val) {
|
|
|
|
|
return typeof val === 'undefined';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine if a value is a Buffer
|
|
|
|
|
*
|
|
|
|
|
* @param {Object} val The value to test
|
|
|
|
|
* @returns {boolean} True if value is a Buffer, otherwise false
|
|
|
|
|
*/
|
|
|
|
|
function isBuffer(val) {
|
|
|
|
|
return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)
|
|
|
|
|
&& typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine if a value is an ArrayBuffer
|
|
|
|
|
*
|
|
|
|
@@ -1084,16 +1104,6 @@ function isNumber(val) {
|
|
|
|
|
return typeof val === 'number';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine if a value is undefined
|
|
|
|
|
*
|
|
|
|
|
* @param {Object} val The value to test
|
|
|
|
|
* @returns {boolean} True if the value is undefined, otherwise false
|
|
|
|
|
*/
|
|
|
|
|
function isUndefined(val) {
|
|
|
|
|
return typeof val === 'undefined';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine if a value is an Object
|
|
|
|
|
*
|
|
|
|
@@ -1386,17 +1396,17 @@ const core = __webpack_require__(470)
|
|
|
|
|
async function run() {
|
|
|
|
|
try {
|
|
|
|
|
const platform = getVirtualEnvironmentName()
|
|
|
|
|
const [engine, version] = parseRubyEngineAndVersion(core.getInput('ruby-version'))
|
|
|
|
|
|
|
|
|
|
let installer
|
|
|
|
|
if (platform === 'windows-latest') {
|
|
|
|
|
if (platform === 'windows-latest' && engine !== 'jruby') {
|
|
|
|
|
installer = __webpack_require__(826)
|
|
|
|
|
} else {
|
|
|
|
|
installer = __webpack_require__(442)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const input = core.getInput('ruby-version')
|
|
|
|
|
const [engine, version] = parseRubyEngineAndVersion(input)
|
|
|
|
|
const engineVersions = await installer.getAvailableVersions(engine)
|
|
|
|
|
const ruby = validateRubyEngineAndVersion(engineVersions, input, engine, version)
|
|
|
|
|
const engineVersions = installer.getAvailableVersions(platform, engine)
|
|
|
|
|
const ruby = validateRubyEngineAndVersion(platform, engineVersions, engine, version)
|
|
|
|
|
|
|
|
|
|
const rubyPrefix = await installer.install(platform, ruby)
|
|
|
|
|
core.setOutput('ruby-prefix', rubyPrefix)
|
|
|
|
@@ -1425,20 +1435,19 @@ function parseRubyEngineAndVersion(rubyVersion) {
|
|
|
|
|
return [engine, version]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function validateRubyEngineAndVersion(engineVersions, input, engine, version) {
|
|
|
|
|
function validateRubyEngineAndVersion(platform, engineVersions, engine, version) {
|
|
|
|
|
if (!engineVersions) {
|
|
|
|
|
throw new Error(`Unknown engine ${engine} (input: ${input})`)
|
|
|
|
|
throw new Error(`Unknown engine ${engine} on ${platform}`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!engineVersions.includes(version)) {
|
|
|
|
|
const latestToFirstVersion = engineVersions.slice().reverse()
|
|
|
|
|
const found = latestToFirstVersion.find(v => v.startsWith(version))
|
|
|
|
|
const found = latestToFirstVersion.find(v => v !== 'head' && v.startsWith(version))
|
|
|
|
|
if (found) {
|
|
|
|
|
version = found
|
|
|
|
|
} else {
|
|
|
|
|
throw new Error(`Unknown version ${version} for ${engine}
|
|
|
|
|
input: ${input}
|
|
|
|
|
available versions for ${engine}: ${engineVersions.join(', ')}
|
|
|
|
|
throw new Error(`Unknown version ${version} for ${engine} on ${platform}
|
|
|
|
|
available versions for ${engine} on ${platform}: ${engineVersions.join(', ')}
|
|
|
|
|
File an issue at https://github.com/eregon/use-ruby-action/issues if would like support for a new version`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@@ -2143,6 +2152,7 @@ module.exports = require("https");
|
|
|
|
|
var utils = __webpack_require__(35);
|
|
|
|
|
var settle = __webpack_require__(564);
|
|
|
|
|
var buildURL = __webpack_require__(133);
|
|
|
|
|
var buildFullPath = __webpack_require__(960);
|
|
|
|
|
var parseHeaders = __webpack_require__(333);
|
|
|
|
|
var isURLSameOrigin = __webpack_require__(688);
|
|
|
|
|
var createError = __webpack_require__(26);
|
|
|
|
@@ -2165,7 +2175,8 @@ module.exports = function xhrAdapter(config) {
|
|
|
|
|
requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
request.open(config.method.toUpperCase(), buildURL(config.url, config.params, config.paramsSerializer), true);
|
|
|
|
|
var fullPath = buildFullPath(config.baseURL, config.url);
|
|
|
|
|
request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);
|
|
|
|
|
|
|
|
|
|
// Set the request timeout in MS
|
|
|
|
|
request.timeout = config.timeout;
|
|
|
|
@@ -2226,7 +2237,11 @@ module.exports = function xhrAdapter(config) {
|
|
|
|
|
|
|
|
|
|
// Handle timeout
|
|
|
|
|
request.ontimeout = function handleTimeout() {
|
|
|
|
|
reject(createError('timeout of ' + config.timeout + 'ms exceeded', config, 'ECONNABORTED',
|
|
|
|
|
var timeoutErrorMessage = 'timeout of ' + config.timeout + 'ms exceeded';
|
|
|
|
|
if (config.timeoutErrorMessage) {
|
|
|
|
|
timeoutErrorMessage = config.timeoutErrorMessage;
|
|
|
|
|
}
|
|
|
|
|
reject(createError(timeoutErrorMessage, config, 'ECONNABORTED',
|
|
|
|
|
request));
|
|
|
|
|
|
|
|
|
|
// Clean up request
|
|
|
|
@@ -2240,7 +2255,7 @@ module.exports = function xhrAdapter(config) {
|
|
|
|
|
var cookies = __webpack_require__(864);
|
|
|
|
|
|
|
|
|
|
// Add xsrf header
|
|
|
|
|
var xsrfValue = (config.withCredentials || isURLSameOrigin(config.url)) && config.xsrfCookieName ?
|
|
|
|
|
var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ?
|
|
|
|
|
cookies.read(config.xsrfCookieName) :
|
|
|
|
|
undefined;
|
|
|
|
|
|
|
|
|
@@ -2263,8 +2278,8 @@ module.exports = function xhrAdapter(config) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Add withCredentials to request if needed
|
|
|
|
|
if (config.withCredentials) {
|
|
|
|
|
request.withCredentials = true;
|
|
|
|
|
if (!utils.isUndefined(config.withCredentials)) {
|
|
|
|
|
request.withCredentials = !!config.withCredentials;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Add responseType to request if needed
|
|
|
|
@@ -4645,7 +4660,7 @@ module.exports = require("assert");
|
|
|
|
|
/***/ 361:
|
|
|
|
|
/***/ (function(module) {
|
|
|
|
|
|
|
|
|
|
module.exports = {"name":"axios","version":"0.19.0","description":"Promise based HTTP client for the browser and node.js","main":"index.js","scripts":{"test":"grunt test && bundlesize","start":"node ./sandbox/server.js","build":"NODE_ENV=production grunt build","preversion":"npm test","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","postversion":"git push && git push --tags","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","fix":"eslint --fix lib/**/*.js"},"repository":{"type":"git","url":"https://github.com/axios/axios.git"},"keywords":["xhr","http","ajax","promise","node"],"author":"Matt Zabriskie","license":"MIT","bugs":{"url":"https://github.com/axios/axios/issues"},"homepage":"https://github.com/axios/axios","devDependencies":{"bundlesize":"^0.17.0","coveralls":"^3.0.0","es6-promise":"^4.2.4","grunt":"^1.0.2","grunt-banner":"^0.6.0","grunt-cli":"^1.2.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","grunt-eslint":"^20.1.0","grunt-karma":"^2.0.0","grunt-mocha-test":"^0.13.3","grunt-ts":"^6.0.0-beta.19","grunt-webpack":"^1.0.18","istanbul-instrumenter-loader":"^1.0.0","jasmine-core":"^2.4.1","karma":"^1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.1","karma-jasmine-ajax":"^0.1.13","karma-opera-launcher":"^1.0.0","karma-safari-launcher":"^1.0.0","karma-sauce-launcher":"^1.2.0","karma-sinon":"^1.0.5","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","load-grunt-tasks":"^3.5.2","minimist":"^1.2.0","mocha":"^5.2.0","sinon":"^4.5.0","typescript":"^2.8.1","url-search-params":"^0.10.0","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"typings":"./index.d.ts","dependencies":{"follow-redirects":"1.5.10","is-buffer":"^2.0.2"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}]};
|
|
|
|
|
module.exports = {"name":"axios","version":"0.19.2","description":"Promise based HTTP client for the browser and node.js","main":"index.js","scripts":{"test":"grunt test && bundlesize","start":"node ./sandbox/server.js","build":"NODE_ENV=production grunt build","preversion":"npm test","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","postversion":"git push && git push --tags","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","fix":"eslint --fix lib/**/*.js"},"repository":{"type":"git","url":"https://github.com/axios/axios.git"},"keywords":["xhr","http","ajax","promise","node"],"author":"Matt Zabriskie","license":"MIT","bugs":{"url":"https://github.com/axios/axios/issues"},"homepage":"https://github.com/axios/axios","devDependencies":{"bundlesize":"^0.17.0","coveralls":"^3.0.0","es6-promise":"^4.2.4","grunt":"^1.0.2","grunt-banner":"^0.6.0","grunt-cli":"^1.2.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","grunt-eslint":"^20.1.0","grunt-karma":"^2.0.0","grunt-mocha-test":"^0.13.3","grunt-ts":"^6.0.0-beta.19","grunt-webpack":"^1.0.18","istanbul-instrumenter-loader":"^1.0.0","jasmine-core":"^2.4.1","karma":"^1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.1","karma-jasmine-ajax":"^0.1.13","karma-opera-launcher":"^1.0.0","karma-safari-launcher":"^1.0.0","karma-sauce-launcher":"^1.2.0","karma-sinon":"^1.0.5","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","load-grunt-tasks":"^3.5.2","minimist":"^1.2.0","mocha":"^5.2.0","sinon":"^4.5.0","typescript":"^2.8.1","url-search-params":"^0.10.0","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"typings":"./index.d.ts","dependencies":{"follow-redirects":"1.5.10"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}]};
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
@@ -4849,38 +4864,99 @@ function escape(s) {
|
|
|
|
|
__webpack_require__.r(__webpack_exports__);
|
|
|
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getAvailableVersions", function() { return getAvailableVersions; });
|
|
|
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "install", function() { return install; });
|
|
|
|
|
const os = __webpack_require__(87)
|
|
|
|
|
const path = __webpack_require__(622)
|
|
|
|
|
const core = __webpack_require__(470)
|
|
|
|
|
const io = __webpack_require__(1)
|
|
|
|
|
const tc = __webpack_require__(533)
|
|
|
|
|
const rubyBuilderVersions = __webpack_require__(451)
|
|
|
|
|
const axios = __webpack_require__(53)
|
|
|
|
|
|
|
|
|
|
const builderReleaseTag = 'builds-newer-openssl'
|
|
|
|
|
const releasesURL = 'https://github.com/eregon/ruby-install-builder/releases'
|
|
|
|
|
const metadataURL = 'https://raw.githubusercontent.com/eregon/ruby-install-builder/metadata'
|
|
|
|
|
|
|
|
|
|
async function getAvailableVersions(engine) {
|
|
|
|
|
const response = await axios.get(`${metadataURL}/versions.json`)
|
|
|
|
|
const versions = response.data
|
|
|
|
|
return versions[engine]
|
|
|
|
|
function getAvailableVersions(platform, engine) {
|
|
|
|
|
return rubyBuilderVersions.getVersions(platform)[engine]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function install(platform, ruby) {
|
|
|
|
|
const rubyPrefix = await downloadAndExtract(platform, ruby)
|
|
|
|
|
core.addPath(`${rubyPrefix}/bin`)
|
|
|
|
|
|
|
|
|
|
core.addPath(path.join(rubyPrefix, 'bin'))
|
|
|
|
|
if (ruby.startsWith('rubinius')) {
|
|
|
|
|
core.addPath(path.join(rubyPrefix, 'gems', 'bin'))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return rubyPrefix
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function downloadAndExtract(platform, ruby) {
|
|
|
|
|
const rubiesDir = `${process.env.HOME}/.rubies`
|
|
|
|
|
const rubiesDir = path.join(os.homedir(), '.rubies')
|
|
|
|
|
await io.mkdirP(rubiesDir)
|
|
|
|
|
|
|
|
|
|
const url = `${releasesURL}/download/${builderReleaseTag}/${ruby}-${platform}.tar.gz`
|
|
|
|
|
const url = await getDownloadURL(platform, ruby)
|
|
|
|
|
console.log(url)
|
|
|
|
|
|
|
|
|
|
const downloadPath = await tc.downloadTool(url)
|
|
|
|
|
await tc.extractTar(downloadPath, rubiesDir)
|
|
|
|
|
|
|
|
|
|
return `${rubiesDir}/${ruby}`
|
|
|
|
|
return path.join(rubiesDir, ruby)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function getDownloadURL(platform, ruby) {
|
|
|
|
|
if (ruby.endsWith('-head')) {
|
|
|
|
|
return getLatestHeadBuildURL(platform, ruby)
|
|
|
|
|
} else {
|
|
|
|
|
return `${releasesURL}/download/${builderReleaseTag}/${ruby}-${platform}.tar.gz`
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function getLatestHeadBuildURL(platform, ruby) {
|
|
|
|
|
const engine = ruby.split('-')[0]
|
|
|
|
|
const repository = `eregon/${engine}-dev-builder`
|
|
|
|
|
const metadataURL = `https://raw.githubusercontent.com/${repository}/metadata/latest_build.tag`
|
|
|
|
|
const releasesURL = `https://github.com/${repository}/releases/download`
|
|
|
|
|
|
|
|
|
|
const response = await axios.get(metadataURL)
|
|
|
|
|
const tag = response.data.trim()
|
|
|
|
|
return `${releasesURL}/${tag}/${ruby}-${platform}.tar.gz`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 451:
|
|
|
|
|
/***/ (function(__unusedmodule, __webpack_exports__, __webpack_require__) {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
__webpack_require__.r(__webpack_exports__);
|
|
|
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getVersions", function() { return getVersions; });
|
|
|
|
|
function getVersions(platform) {
|
|
|
|
|
const versions = {
|
|
|
|
|
"ruby": [
|
|
|
|
|
"2.3.0", "2.3.1", "2.3.2", "2.3.3", "2.3.4", "2.3.5", "2.3.6", "2.3.7", "2.3.8",
|
|
|
|
|
"2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.4.4", "2.4.5", "2.4.6", "2.4.7", "2.4.9",
|
|
|
|
|
"2.5.0", "2.5.1", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.6", "2.5.7",
|
|
|
|
|
"2.6.0", "2.6.1", "2.6.2", "2.6.3", "2.6.4", "2.6.5",
|
|
|
|
|
"2.7.0",
|
|
|
|
|
"head"
|
|
|
|
|
],
|
|
|
|
|
"jruby": [
|
|
|
|
|
"9.2.9.0"
|
|
|
|
|
],
|
|
|
|
|
"truffleruby": [
|
|
|
|
|
"19.3.0", "19.3.1",
|
|
|
|
|
"head"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (platform === 'ubuntu-18.04') {
|
|
|
|
|
versions['rubinius'] = [
|
|
|
|
|
"4.13"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return versions
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -5086,6 +5162,43 @@ function getState(name) {
|
|
|
|
|
exports.getState = getState;
|
|
|
|
|
//# sourceMappingURL=core.js.map
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 471:
|
|
|
|
|
/***/ (function(__unusedmodule, __webpack_exports__, __webpack_require__) {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
__webpack_require__.r(__webpack_exports__);
|
|
|
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "versions", function() { return versions; });
|
|
|
|
|
const versions = {
|
|
|
|
|
"2.3.0": "https://dl.bintray.com/oneclick/rubyinstaller/ruby-2.3.0-x64-mingw32.7z",
|
|
|
|
|
"2.3.1": "https://dl.bintray.com/oneclick/rubyinstaller/ruby-2.3.1-x64-mingw32.7z",
|
|
|
|
|
"2.3.3": "https://dl.bintray.com/oneclick/rubyinstaller/ruby-2.3.3-x64-mingw32.7z",
|
|
|
|
|
"2.4.1": "https://github.com/oneclick/rubyinstaller2/releases/download/2.4.1-2/rubyinstaller-2.4.1-2-x64.7z",
|
|
|
|
|
"2.4.2": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.4.2-2/rubyinstaller-2.4.2-2-x64.7z",
|
|
|
|
|
"2.4.3": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.4.3-2/rubyinstaller-2.4.3-2-x64.7z",
|
|
|
|
|
"2.4.4": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.4.4-2/rubyinstaller-2.4.4-2-x64.7z",
|
|
|
|
|
"2.4.5": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.4.5-1/rubyinstaller-2.4.5-1-x64.7z",
|
|
|
|
|
"2.4.6": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.4.6-1/rubyinstaller-2.4.6-1-x64.7z",
|
|
|
|
|
"2.4.7": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.4.7-1/rubyinstaller-2.4.7-1-x64.7z",
|
|
|
|
|
"2.4.9": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.4.9-1/rubyinstaller-2.4.9-1-x64.7z",
|
|
|
|
|
"2.5.0": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.5.0-2/rubyinstaller-2.5.0-2-x64.7z",
|
|
|
|
|
"2.5.1": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.5.1-2/rubyinstaller-2.5.1-2-x64.7z",
|
|
|
|
|
"2.5.3": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.5.3-1/rubyinstaller-2.5.3-1-x64.7z",
|
|
|
|
|
"2.5.5": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.5.5-1/rubyinstaller-2.5.5-1-x64.7z",
|
|
|
|
|
"2.5.6": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.5.6-1/rubyinstaller-2.5.6-1-x64.7z",
|
|
|
|
|
"2.5.7": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.5.7-1/rubyinstaller-2.5.7-1-x64.7z",
|
|
|
|
|
"2.6.0": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.0-1/rubyinstaller-2.6.0-1-x64.7z",
|
|
|
|
|
"2.6.1": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.1-1/rubyinstaller-2.6.1-1-x64.7z",
|
|
|
|
|
"2.6.2": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.2-1/rubyinstaller-2.6.2-1-x64.7z",
|
|
|
|
|
"2.6.3": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.3-1/rubyinstaller-2.6.3-1-x64.7z",
|
|
|
|
|
"2.6.4": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.4-1/rubyinstaller-2.6.4-1-x64.7z",
|
|
|
|
|
"2.6.5": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.5-1/rubyinstaller-2.6.5-1-x64.7z",
|
|
|
|
|
"2.7.0": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.7.0-1/rubyinstaller-2.7.0-1-x64.7z",
|
|
|
|
|
"head": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-head/rubyinstaller-head-x64.7z"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 494:
|
|
|
|
@@ -5145,13 +5258,12 @@ function setContentTypeIfUnset(headers, value) {
|
|
|
|
|
|
|
|
|
|
function getDefaultAdapter() {
|
|
|
|
|
var adapter;
|
|
|
|
|
// Only Node.JS has a process variable that is of [[Class]] process
|
|
|
|
|
if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {
|
|
|
|
|
// For node use HTTP adapter
|
|
|
|
|
adapter = __webpack_require__(670);
|
|
|
|
|
} else if (typeof XMLHttpRequest !== 'undefined') {
|
|
|
|
|
if (typeof XMLHttpRequest !== 'undefined') {
|
|
|
|
|
// For browsers use XHR adapter
|
|
|
|
|
adapter = __webpack_require__(219);
|
|
|
|
|
} else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {
|
|
|
|
|
// For node use HTTP adapter
|
|
|
|
|
adapter = __webpack_require__(670);
|
|
|
|
|
}
|
|
|
|
|
return adapter;
|
|
|
|
|
}
|
|
|
|
@@ -5673,39 +5785,6 @@ function _evaluateVersions(versions, versionSpec) {
|
|
|
|
|
}
|
|
|
|
|
//# sourceMappingURL=tool-cache.js.map
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 538:
|
|
|
|
|
/***/ (function(__unusedmodule, __webpack_exports__, __webpack_require__) {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
__webpack_require__.r(__webpack_exports__);
|
|
|
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "versions", function() { return versions; });
|
|
|
|
|
const versions = {
|
|
|
|
|
"2.4.1": "https://github.com/oneclick/rubyinstaller2/releases/download/2.4.1-2/rubyinstaller-2.4.1-2-x64.7z",
|
|
|
|
|
"2.4.2": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.4.2-2/rubyinstaller-2.4.2-2-x64.7z",
|
|
|
|
|
"2.4.3": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.4.3-2/rubyinstaller-2.4.3-2-x64.7z",
|
|
|
|
|
"2.4.4": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.4.4-2/rubyinstaller-2.4.4-2-x64.7z",
|
|
|
|
|
"2.4.5": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.4.5-1/rubyinstaller-2.4.5-1-x64.7z",
|
|
|
|
|
"2.4.6": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.4.6-1/rubyinstaller-2.4.6-1-x64.7z",
|
|
|
|
|
"2.4.7": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.4.7-1/rubyinstaller-2.4.7-1-x64.7z",
|
|
|
|
|
"2.4.9": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.4.9-1/rubyinstaller-2.4.9-1-x64.7z",
|
|
|
|
|
"2.5.0": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.5.0-2/rubyinstaller-2.5.0-2-x64.7z",
|
|
|
|
|
"2.5.1": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.5.1-2/rubyinstaller-2.5.1-2-x64.7z",
|
|
|
|
|
"2.5.3": "https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.5.3-1/rubyinstaller-2.5.3-1-x64.7z",
|
|
|
|
|
"2.5.5": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.5.5-1/rubyinstaller-2.5.5-1-x64.7z",
|
|
|
|
|
"2.5.6": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.5.6-1/rubyinstaller-2.5.6-1-x64.7z",
|
|
|
|
|
"2.5.7": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.5.7-1/rubyinstaller-2.5.7-1-x64.7z",
|
|
|
|
|
"2.6.0": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.0-1/rubyinstaller-2.6.0-1-x64.7z",
|
|
|
|
|
"2.6.1": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.1-1/rubyinstaller-2.6.1-1-x64.7z",
|
|
|
|
|
"2.6.2": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.2-1/rubyinstaller-2.6.2-1-x64.7z",
|
|
|
|
|
"2.6.3": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.3-1/rubyinstaller-2.6.3-1-x64.7z",
|
|
|
|
|
"2.6.4": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.4-1/rubyinstaller-2.6.4-1-x64.7z",
|
|
|
|
|
"2.6.5": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.5-1/rubyinstaller-2.6.5-1-x64.7z",
|
|
|
|
|
"2.7.0": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.7.0-1/rubyinstaller-2.7.0-1-x64.7z"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 549:
|
|
|
|
@@ -6566,6 +6645,7 @@ module.exports = require("util");
|
|
|
|
|
|
|
|
|
|
var utils = __webpack_require__(35);
|
|
|
|
|
var settle = __webpack_require__(564);
|
|
|
|
|
var buildFullPath = __webpack_require__(960);
|
|
|
|
|
var buildURL = __webpack_require__(133);
|
|
|
|
|
var http = __webpack_require__(605);
|
|
|
|
|
var https = __webpack_require__(211);
|
|
|
|
@@ -6582,13 +6662,10 @@ var isHttps = /https:?/;
|
|
|
|
|
/*eslint consistent-return:0*/
|
|
|
|
|
module.exports = function httpAdapter(config) {
|
|
|
|
|
return new Promise(function dispatchHttpRequest(resolvePromise, rejectPromise) {
|
|
|
|
|
var timer;
|
|
|
|
|
var resolve = function resolve(value) {
|
|
|
|
|
clearTimeout(timer);
|
|
|
|
|
resolvePromise(value);
|
|
|
|
|
};
|
|
|
|
|
var reject = function reject(value) {
|
|
|
|
|
clearTimeout(timer);
|
|
|
|
|
rejectPromise(value);
|
|
|
|
|
};
|
|
|
|
|
var data = config.data;
|
|
|
|
@@ -6628,7 +6705,8 @@ module.exports = function httpAdapter(config) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Parse url
|
|
|
|
|
var parsed = url.parse(config.url);
|
|
|
|
|
var fullPath = buildFullPath(config.baseURL, config.url);
|
|
|
|
|
var parsed = url.parse(fullPath);
|
|
|
|
|
var protocol = parsed.protocol || 'http:';
|
|
|
|
|
|
|
|
|
|
if (!auth && parsed.auth) {
|
|
|
|
@@ -6650,6 +6728,7 @@ module.exports = function httpAdapter(config) {
|
|
|
|
|
method: config.method.toUpperCase(),
|
|
|
|
|
headers: headers,
|
|
|
|
|
agent: agent,
|
|
|
|
|
agents: { http: config.httpAgent, https: config.httpsAgent },
|
|
|
|
|
auth: auth
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@@ -6682,8 +6761,7 @@ module.exports = function httpAdapter(config) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (proxyElement[0] === '.' &&
|
|
|
|
|
parsed.hostname.substr(parsed.hostname.length - proxyElement.length) === proxyElement &&
|
|
|
|
|
proxyElement.match(/\./g).length === parsed.hostname.match(/\./g).length) {
|
|
|
|
|
parsed.hostname.substr(parsed.hostname.length - proxyElement.length) === proxyElement) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -6811,10 +6889,15 @@ module.exports = function httpAdapter(config) {
|
|
|
|
|
|
|
|
|
|
// Handle request timeout
|
|
|
|
|
if (config.timeout) {
|
|
|
|
|
timer = setTimeout(function handleRequestTimeout() {
|
|
|
|
|
// Sometime, the response will be very slow, and does not respond, the connect event will be block by event loop system.
|
|
|
|
|
// And timer callback will be fired, and abort() will be invoked before connection, then get "socket hang up" and code ECONNRESET.
|
|
|
|
|
// At this time, if we have a large number of request, nodejs will hang up some socket on background. and the number will up and up.
|
|
|
|
|
// And then these socket which be hang up will devoring CPU little by little.
|
|
|
|
|
// ClientRequest.setTimeout will be fired on the specify milliseconds, and can make sure that abort() will be fired after connect.
|
|
|
|
|
req.setTimeout(config.timeout, function handleRequestTimeout() {
|
|
|
|
|
req.abort();
|
|
|
|
|
reject(createError('timeout of ' + config.timeout + 'ms exceeded', config, 'ECONNABORTED', req));
|
|
|
|
|
}, config.timeout);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (config.cancelToken) {
|
|
|
|
@@ -7619,7 +7702,15 @@ Axios.prototype.request = function request(config) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
config = mergeConfig(this.defaults, config);
|
|
|
|
|
config.method = config.method ? config.method.toLowerCase() : 'get';
|
|
|
|
|
|
|
|
|
|
// Set config.method
|
|
|
|
|
if (config.method) {
|
|
|
|
|
config.method = config.method.toLowerCase();
|
|
|
|
|
} else if (this.defaults.method) {
|
|
|
|
|
config.method = this.defaults.method.toLowerCase();
|
|
|
|
|
} else {
|
|
|
|
|
config.method = 'get';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Hook up interceptors middleware
|
|
|
|
|
var chain = [dispatchRequest, undefined];
|
|
|
|
@@ -7677,24 +7768,6 @@ module.exports = Axios;
|
|
|
|
|
|
|
|
|
|
module.exports = require("stream");
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 812:
|
|
|
|
|
/***/ (function(module) {
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* Determine if an object is a Buffer
|
|
|
|
|
*
|
|
|
|
|
* @author Feross Aboukhadijeh <https://feross.org>
|
|
|
|
|
* @license MIT
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
module.exports = function isBuffer (obj) {
|
|
|
|
|
return obj != null && obj.constructor != null &&
|
|
|
|
|
typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 825:
|
|
|
|
@@ -7718,13 +7791,23 @@ module.exports = function mergeConfig(config1, config2) {
|
|
|
|
|
config2 = config2 || {};
|
|
|
|
|
var config = {};
|
|
|
|
|
|
|
|
|
|
utils.forEach(['url', 'method', 'params', 'data'], function valueFromConfig2(prop) {
|
|
|
|
|
var valueFromConfig2Keys = ['url', 'method', 'params', 'data'];
|
|
|
|
|
var mergeDeepPropertiesKeys = ['headers', 'auth', 'proxy'];
|
|
|
|
|
var defaultToConfig2Keys = [
|
|
|
|
|
'baseURL', 'url', 'transformRequest', 'transformResponse', 'paramsSerializer',
|
|
|
|
|
'timeout', 'withCredentials', 'adapter', 'responseType', 'xsrfCookieName',
|
|
|
|
|
'xsrfHeaderName', 'onUploadProgress', 'onDownloadProgress',
|
|
|
|
|
'maxContentLength', 'validateStatus', 'maxRedirects', 'httpAgent',
|
|
|
|
|
'httpsAgent', 'cancelToken', 'socketPath'
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
utils.forEach(valueFromConfig2Keys, function valueFromConfig2(prop) {
|
|
|
|
|
if (typeof config2[prop] !== 'undefined') {
|
|
|
|
|
config[prop] = config2[prop];
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
utils.forEach(['headers', 'auth', 'proxy'], function mergeDeepProperties(prop) {
|
|
|
|
|
utils.forEach(mergeDeepPropertiesKeys, function mergeDeepProperties(prop) {
|
|
|
|
|
if (utils.isObject(config2[prop])) {
|
|
|
|
|
config[prop] = utils.deepMerge(config1[prop], config2[prop]);
|
|
|
|
|
} else if (typeof config2[prop] !== 'undefined') {
|
|
|
|
@@ -7736,13 +7819,25 @@ module.exports = function mergeConfig(config1, config2) {
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
utils.forEach([
|
|
|
|
|
'baseURL', 'transformRequest', 'transformResponse', 'paramsSerializer',
|
|
|
|
|
'timeout', 'withCredentials', 'adapter', 'responseType', 'xsrfCookieName',
|
|
|
|
|
'xsrfHeaderName', 'onUploadProgress', 'onDownloadProgress', 'maxContentLength',
|
|
|
|
|
'validateStatus', 'maxRedirects', 'httpAgent', 'httpsAgent', 'cancelToken',
|
|
|
|
|
'socketPath'
|
|
|
|
|
], function defaultToConfig2(prop) {
|
|
|
|
|
utils.forEach(defaultToConfig2Keys, function defaultToConfig2(prop) {
|
|
|
|
|
if (typeof config2[prop] !== 'undefined') {
|
|
|
|
|
config[prop] = config2[prop];
|
|
|
|
|
} else if (typeof config1[prop] !== 'undefined') {
|
|
|
|
|
config[prop] = config1[prop];
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var axiosKeys = valueFromConfig2Keys
|
|
|
|
|
.concat(mergeDeepPropertiesKeys)
|
|
|
|
|
.concat(defaultToConfig2Keys);
|
|
|
|
|
|
|
|
|
|
var otherKeys = Object
|
|
|
|
|
.keys(config2)
|
|
|
|
|
.filter(function filterAxiosKeys(key) {
|
|
|
|
|
return axiosKeys.indexOf(key) === -1;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
utils.forEach(otherKeys, function otherKeysDefaultToConfig2(prop) {
|
|
|
|
|
if (typeof config2[prop] !== 'undefined') {
|
|
|
|
|
config[prop] = config2[prop];
|
|
|
|
|
} else if (typeof config1[prop] !== 'undefined') {
|
|
|
|
@@ -7770,9 +7865,9 @@ const fs = __webpack_require__(747)
|
|
|
|
|
const core = __webpack_require__(470)
|
|
|
|
|
const exec = __webpack_require__(986)
|
|
|
|
|
const tc = __webpack_require__(533)
|
|
|
|
|
const rubyInstallerVersions = __webpack_require__(538).versions
|
|
|
|
|
const rubyInstallerVersions = __webpack_require__(471).versions
|
|
|
|
|
|
|
|
|
|
async function getAvailableVersions(engine) {
|
|
|
|
|
function getAvailableVersions(platform, engine) {
|
|
|
|
|
if (engine === 'ruby') {
|
|
|
|
|
return Object.keys(rubyInstallerVersions)
|
|
|
|
|
} else {
|
|
|
|
@@ -7790,14 +7885,21 @@ async function install(platform, ruby) {
|
|
|
|
|
}
|
|
|
|
|
const base = url.slice(url.lastIndexOf('/') + 1, url.length - '.7z'.length)
|
|
|
|
|
|
|
|
|
|
const downloadPath = await tc.downloadTool(url)
|
|
|
|
|
await exec.exec(`7z x ${downloadPath} -xr!${base}\\share\\doc -oC:\\`)
|
|
|
|
|
const rubyPrefix = `C:\\${base}`
|
|
|
|
|
// Extract to SSD, see https://github.com/eregon/use-ruby-action/pull/14
|
|
|
|
|
const drive = (process.env['GITHUB_WORKSPACE'] || 'C')[0]
|
|
|
|
|
|
|
|
|
|
const msys2 = await linkMSYS2()
|
|
|
|
|
const downloadPath = await tc.downloadTool(url)
|
|
|
|
|
await exec.exec(`7z x ${downloadPath} -xr!${base}\\share\\doc -o${drive}:\\`)
|
|
|
|
|
const rubyPrefix = `${drive}:\\${base}`
|
|
|
|
|
|
|
|
|
|
const [hostedRuby, msys2] = await linkMSYS2()
|
|
|
|
|
const newPath = setupPath(msys2, rubyPrefix)
|
|
|
|
|
core.exportVariable('PATH', newPath)
|
|
|
|
|
|
|
|
|
|
if (version.startsWith('2.3')) {
|
|
|
|
|
core.exportVariable('SSL_CERT_FILE', `${hostedRuby}\\ssl\\cert.pem`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!fs.existsSync(`${rubyPrefix}\\bin\\bundle.cmd`)) {
|
|
|
|
|
await exec.exec(`${rubyPrefix}\\bin\\gem install bundler -v "~> 1" --no-document`)
|
|
|
|
|
}
|
|
|
|
@@ -7817,7 +7919,7 @@ async function linkMSYS2() {
|
|
|
|
|
const hostedMSYS2 = `${latestHostedRuby}\\msys64`
|
|
|
|
|
const msys2 = 'C:\\msys64'
|
|
|
|
|
await exec.exec(`cmd /c mklink /D ${msys2} ${hostedMSYS2}`)
|
|
|
|
|
return msys2
|
|
|
|
|
return [latestHostedRuby, msys2]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setupPath(msys2, rubyPrefix) {
|
|
|
|
@@ -8765,8 +8867,6 @@ var utils = __webpack_require__(35);
|
|
|
|
|
var transformData = __webpack_require__(589);
|
|
|
|
|
var isCancel = __webpack_require__(732);
|
|
|
|
|
var defaults = __webpack_require__(529);
|
|
|
|
|
var isAbsoluteURL = __webpack_require__(590);
|
|
|
|
|
var combineURLs = __webpack_require__(887);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Throws a `Cancel` if cancellation has been requested.
|
|
|
|
@@ -8786,11 +8886,6 @@ function throwIfCancellationRequested(config) {
|
|
|
|
|
module.exports = function dispatchRequest(config) {
|
|
|
|
|
throwIfCancellationRequested(config);
|
|
|
|
|
|
|
|
|
|
// Support baseURL config
|
|
|
|
|
if (config.baseURL && !isAbsoluteURL(config.url)) {
|
|
|
|
|
config.url = combineURLs(config.baseURL, config.url);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Ensure headers exist
|
|
|
|
|
config.headers = config.headers || {};
|
|
|
|
|
|
|
|
|
@@ -8805,7 +8900,7 @@ module.exports = function dispatchRequest(config) {
|
|
|
|
|
config.headers = utils.merge(
|
|
|
|
|
config.headers.common || {},
|
|
|
|
|
config.headers[config.method] || {},
|
|
|
|
|
config.headers || {}
|
|
|
|
|
config.headers
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
utils.forEach(
|
|
|
|
@@ -8847,6 +8942,34 @@ module.exports = function dispatchRequest(config) {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 960:
|
|
|
|
|
/***/ (function(module, __unusedexports, __webpack_require__) {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var isAbsoluteURL = __webpack_require__(590);
|
|
|
|
|
var combineURLs = __webpack_require__(887);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates a new URL by combining the baseURL with the requestedURL,
|
|
|
|
|
* only when the requestedURL is not already an absolute URL.
|
|
|
|
|
* If the requestURL is absolute, this function returns the requestedURL untouched.
|
|
|
|
|
*
|
|
|
|
|
* @param {string} baseURL The base URL
|
|
|
|
|
* @param {string} requestedURL Absolute or relative URL to combine
|
|
|
|
|
* @returns {string} The combined full path
|
|
|
|
|
*/
|
|
|
|
|
module.exports = function buildFullPath(baseURL, requestedURL) {
|
|
|
|
|
if (baseURL && !isAbsoluteURL(requestedURL)) {
|
|
|
|
|
return combineURLs(baseURL, requestedURL);
|
|
|
|
|
}
|
|
|
|
|
return requestedURL;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 972:
|
|
|
|
|