You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -11,28 +13,27 @@ The action's inputs are shown below:
11
13
```yaml
12
14
- uses: MSP-Greg/setup-ruby-pkgs@v1
13
15
with:
14
-
ruby-version:
15
-
bundler:
16
-
apt: # Ubuntu
17
-
brew: # macOS
18
-
mingw: # Windows mingw / mswin
19
-
msys2: # mingw
20
-
mswin: # Windows mswin
21
-
choco: # mswin
22
-
vcpkg: # mswin
16
+
ruby-version: # passed to ruby/setup-ruby
17
+
bundler: # " " " " "
18
+
bundler-cache: # " " " " "
19
+
cache-version: # " " " " "
20
+
rubygems: # " " " " "
21
+
working-directory: # " " " " "
22
+
apt: # Ubuntu
23
+
brew: # macOS
24
+
mingw: # Windows mingw / mswin /ucrt
25
+
msys2: # mingw / mswin /ucrt
26
+
mswin: # Windows mswin
27
+
choco: # mswin
28
+
vcpkg: # mswin
23
29
```
24
30
25
31
## Input Information
26
32
27
-
All inputs are optional.
28
-
29
-
### ruby-version:
30
-
31
-
Installs the Ruby version using the code from [ruby/setup-ruby]. The available versions can be found in its [README](https://github.com/ruby/setup-ruby/blob/master/README.md#supported-versions).
33
+
Information on inputs passed to [ruby/setup-ruby] is contained in its [README] and
34
+
[action.yml] files.
32
35
33
-
### bundler:
34
-
35
-
Installs Bundler using the code from [ruby/setup-ruby].
36
+
All inputs are optional.
36
37
37
38
### apt: (Ubuntu)
38
39
@@ -49,34 +50,29 @@ List of packages to install. Space delimited. Special options are `_update_` an
49
50
50
51
### mingw: (Windows)
51
52
52
-
<dl>
53
-
<dt><b>Ruby 2.4 & later</b></dt>
54
-
<dd>List of MSYS2 MinGW packages to install.
55
-
Space delimited. The package prefix (<code>mingw-w64-x86_64-</code>) is not required.<br/>If <code>_upgrade_</code> is included in the input, all packages needed by the gcc tools are updated.<br/>If <code>openssl</code> is included, an appropriate package will be installed.
56
-
</dd>
57
-
<dt><b>Ruby 2.3 & earlier</b></dt>
58
-
<dd>The following DevKit packages are available:
59
-
<ul>
60
-
<li>libffi-3.2.1</li>
61
-
<li>openssl-1.0.2j</li>
62
-
<li>ragel-6.7</li>
63
-
<li>sqlite-3.7.15.2 (sqlite3)</li>
64
-
<li>zlib-1.2.8</li>
65
-
</ul>
66
-
</dd>
67
-
<dt><b>Ruby mswin</b></dt>
68
-
<dd>If <code>openssl</code> is included, it will be installed for mswin as a convenience.<br/>Likewise, if <code>ragel</code> is included, the MSYS2 ragel package will be installed.
53
+
* **Ruby 2.4 & later**<br/>
54
+
List of MSYS2 MinGW packages to install.<br/>
55
+
Space delimited. The package prefix (`mingw-w64-x86_64-` or `mingw-w64-ucrt-x86_64-`) is not required.<br/>If `_upgrade_` is included in the input, all packages needed by the gcc tools are updated.<br/>If `openssl` is included, an appropriate package will be installed.
56
+
57
+
* **Ruby 2.3 & earlier**<br/>
58
+
The following DevKit packages are available:<br/>
59
+
* libffi-3.2.1
60
+
* openssl-1.0.2j
61
+
* ragel-6.7
62
+
* sqlite-3.7.15.2 (sqlite3)</li>
63
+
* zlib-1.2.8
64
+
65
+
* **Ruby mswin**<br/>
66
+
If `openssl` is included, it will be installed for mswin as a convenience.<br/>Likewise, if `ragel` is included, the MSYS2 ragel package will be installed.
69
67
</dl>
70
68
71
69
### msys2: (Windows)
72
70
73
-
<dl>
74
-
<dt><b>Ruby 2.4 & later</b></dt>
75
-
<dd>List of MSYS2 packages to install. Space delimited. These are command line utilities, and are rarely needed.
76
-
</dd>
77
-
<dt><b>Ruby 2.3 & earlier</b></dt>
78
-
<dd>No action, as no utilities are available for the older MSYS/DevKit.</dd>
79
-
</dl>
71
+
* **Ruby 2.4 & later**<br/>
72
+
List of MSYS2 packages to install. Space delimited. These are command line utilities, and are rarely needed.
73
+
74
+
* **Ruby 2.3 & earlier**<br/
75
+
No action, as no utilities are available for the older MSYS/DevKit.</dd>
0 commit comments