-
-
Notifications
You must be signed in to change notification settings - Fork 978
/
Copy pathruby.json
52 lines (52 loc) · 2.08 KB
/
ruby.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"version": "3.4.1-1",
"description": "A dynamic programming language with a focus on simplicity and productivity.",
"homepage": "https://rubyinstaller.org",
"license": "BSD-3-Clause",
"notes": "Install MSYS2 via 'scoop install msys2' and then run 'ridk install' to install the toolchain!",
"suggest": {
"MSYS2": "msys2"
},
"architecture": {
"64bit": {
"url": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.4.1-1/rubyinstaller-3.4.1-1-x64.7z",
"hash": "7c32fe445f9a4047fd770ab6862126d69d98c44935bc120b841f93d474711b9a",
"extract_dir": "rubyinstaller-3.4.1-1-x64"
},
"32bit": {
"url": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.4.1-1/rubyinstaller-3.4.1-1-x86.7z",
"hash": "7d8045a8c8d7ebd79d988e09a1fed123c344084ddfe73cffc9abb9fe7aea156c",
"extract_dir": "rubyinstaller-3.4.1-1-x86"
}
},
"post_install": "gem install rake",
"env_add_path": [
"bin",
"gems\\bin"
],
"env_set": {
"GEM_HOME": "$dir\\gems",
"GEM_PATH": "$dir\\gems"
},
"persist": "gems",
"checkver": {
"url": "https://raw.githubusercontent.com/oneclick/rubyinstaller.org-website/master/_data/downloads.yaml",
"regex": "Ruby (\\S+)"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-$version/rubyinstaller-$version-x64.7z",
"extract_dir": "rubyinstaller-$version-x64"
},
"32bit": {
"url": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-$version/rubyinstaller-$version-x86.7z",
"extract_dir": "rubyinstaller-$version-x86"
}
},
"hash": {
"url": "https://raw.githubusercontent.com/oneclick/rubyinstaller.org-website/master/_data/downloads.yaml",
"regex": "(?sm)$basename[^.].*?$sha256"
}
}
}