rbcli 0.3.1 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +20 -0
  3. data/Gemfile.lock +63 -63
  4. data/docs/404.html +9 -9
  5. data/docs/advanced/automatic_updates/index.html +30 -30
  6. data/docs/advanced/command_types/index.html +78 -78
  7. data/docs/advanced/distributed_state_locking/index.html +30 -30
  8. data/docs/advanced/hooks/index.html +42 -42
  9. data/docs/advanced/index.html +27 -27
  10. data/docs/advanced/index.xml +12 -50
  11. data/docs/advanced/interactive_commands/index.html +35 -35
  12. data/docs/advanced/logging/index.html +36 -36
  13. data/docs/advanced/remote_execution/index.html +51 -51
  14. data/docs/advanced/state_storage/index.html +34 -34
  15. data/docs/advanced/user_config_files/index.html +30 -30
  16. data/docs/categories/index.html +27 -27
  17. data/docs/categories/index.xml +3 -2
  18. data/docs/development/changelog/index.html +91 -60
  19. data/docs/development/code_of_conduct/index.html +27 -27
  20. data/docs/development/contributing/index.html +40 -40
  21. data/docs/development/index.html +27 -27
  22. data/docs/development/index.xml +6 -16
  23. data/docs/development/license/index.html +26 -26
  24. data/docs/index.html +26 -26
  25. data/docs/index.json +15 -15
  26. data/docs/index.xml +20 -90
  27. data/docs/quick_reference/index.html +54 -54
  28. data/docs/quick_reference/index.xml +3 -2
  29. data/docs/sitemap.xml +0 -1
  30. data/docs/tags/index.html +27 -27
  31. data/docs/tags/index.xml +3 -2
  32. data/docs/tutorial/10-getting_started/index.html +33 -33
  33. data/docs/tutorial/20-project_layout/index.html +55 -55
  34. data/docs/tutorial/30-your_first_command/index.html +90 -90
  35. data/docs/tutorial/40-options_parameters_and_arguments/index.html +167 -167
  36. data/docs/tutorial/50-publishing/index.html +30 -30
  37. data/docs/tutorial/index.html +27 -27
  38. data/docs/tutorial/index.xml +8 -28
  39. data/docs/whoami/index.html +28 -28
  40. data/docs/whoami/index.xml +3 -2
  41. data/docs-src/.hugo_build.lock +0 -0
  42. data/docs-src/content/development/changelog.md +20 -0
  43. data/docs-src/makesite.sh +4 -4
  44. data/exe/rbcli +1 -1
  45. data/lib/rbcli/configuration/configurate.rb +1 -1
  46. data/lib/rbcli/engine/command.rb +1 -1
  47. data/lib/rbcli/engine/load_project.rb +1 -1
  48. data/lib/rbcli/engine/parser.rb +9 -7
  49. data/lib/rbcli/features/userconfig.rb +3 -3
  50. data/lib/rbcli/state_storage/localstate.rb +1 -1
  51. data/lib/rbcli/util/optimist.rb +1063 -0
  52. data/lib/rbcli/version.rb +1 -1
  53. data/lib/rbcli-tool/generators.rb +3 -3
  54. data/lib/rbcli-tool/mdless_fix.rb +1 -1
  55. data/lib/rbcli-tool/project.rb +3 -3
  56. data/lib/rbcli-tool/util.rb +3 -3
  57. data/rbcli.gemspec +16 -14
  58. data/skeletons/micro/executable +6 -1
  59. data/skeletons/mini/executable +6 -1
  60. data/skeletons/project/untitled.gemspec +4 -4
  61. metadata +31 -30
  62. data/lib/rbcli/util/trollop.rb +0 -1050
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b09f31e66da303b96ae807e17c69e324485ad53f8c9fde04ed525f766e9a79b
4
- data.tar.gz: 76002def4a6b65dc5de898ce50e4a1c307999d4170560c7267d89289d3bc4dff
3
+ metadata.gz: 311cc2ee8071d0215510745a5e3556a1df74624ea1ed488bf9c4b533cba7e5ff
4
+ data.tar.gz: c7e956dbffb760f247d23d05550b28f95bfe9af3cee73613f8279e2a407e4959
5
5
  SHA512:
6
- metadata.gz: 660f735a38b1e19d1123a98f48b907a2c3a51a8b181787d5967f98a0e30abe6573bb331aea652630ad65972e979ca4bc0566062308f52a027cc789b7e2eff60c
7
- data.tar.gz: 80f40fc851e6dd94b1422db62590824d0e7cc4151172d4f35ccacebd03f5515cd2c1207520d4bfd9c7535d862c3a6db2fd92caaaf2526e3da160addba5f4d413
6
+ metadata.gz: 8f7520427ae2c8f8966994174fa5942b4b3fa71e52b6a4f1386e3e0188ec991fe69b6bd37798aa44381ad36fd6f7a1551c755b0729755a9676c151be8f70be27
7
+ data.tar.gz: d7dc70b3ebad0ff9978a6a937489902a9ca74a62816f019833abb3e218b3699f898c76a69c3fd32010b6460802a7cabb59b693f62a6625243527aba82880b662
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.3 (April 24, 2024)
4
+
5
+ ### Improvements
6
+ * Tested with Ruby 3.3.0
7
+ * Updated dependencies for Ruby 3.3.0
8
+ * Updated dependnecies for Sekeleton projects
9
+ * Added a `bundler/inline` gemfile on mini and micro skeleton projects to simplify their use
10
+ * Replaced deprecated Trollop gem with its replacement, [ManageIQ/Optimist](https://github.com/ManageIQ/optimist)
11
+
12
+ ### Bugfixes
13
+ * Updated deprecated ERB call for skeleton generation to use new format
14
+
15
+ ## 0.3.2 (October 28, 2023)
16
+
17
+ ### Bugfixes
18
+
19
+ * Replaced several calls to the deprecated `.exists?` method with `.exist?` for compatibility with Ruby 3.2.0
20
+ * Updated dependencies to latest versions
21
+ * Standardized on version locking to the latest Major version of dependencies rather than the latest Minor ones
22
+
3
23
  ## 0.3.1 (October 19, 2021)
4
24
 
5
25
  ### Bugfixes
data/Gemfile.lock CHANGED
@@ -1,92 +1,92 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rbcli (0.3.1)
5
- aws-sdk-dynamodb (~> 1.64)
6
- colorize (~> 0.8)
7
- deep_merge (~> 1.2)
8
- macaddr (~> 1.7)
9
- mdless (~> 1.0)
10
- net-scp (~> 3.0)
11
- net-ssh (~> 6.1)
12
- octokit (~> 4.21)
13
- rufus-scheduler (~> 3.8)
4
+ rbcli (0.3.3)
5
+ aws-sdk-dynamodb (~> 1)
6
+ colorize (~> 1)
7
+ deep_merge (~> 1)
8
+ macaddr (~> 1)
9
+ mdless (~> 2)
10
+ net-scp (~> 4)
11
+ net-ssh (~> 7)
12
+ octokit (~> 8)
13
+ rufus-scheduler (~> 3)
14
14
 
15
15
  GEM
16
16
  remote: https://rubygems.org/
17
17
  specs:
18
- addressable (2.8.0)
19
- public_suffix (>= 2.0.2, < 5.0)
18
+ addressable (2.8.5)
19
+ public_suffix (>= 2.0.2, < 6.0)
20
20
  aws-eventstream (1.2.0)
21
- aws-partitions (1.516.0)
22
- aws-sdk-core (3.121.2)
21
+ aws-partitions (1.843.0)
22
+ aws-sdk-core (3.185.1)
23
23
  aws-eventstream (~> 1, >= 1.0.2)
24
- aws-partitions (~> 1, >= 1.239.0)
24
+ aws-partitions (~> 1, >= 1.651.0)
25
+ aws-sigv4 (~> 1.5)
26
+ jmespath (~> 1, >= 1.6.1)
27
+ aws-sdk-dynamodb (1.96.0)
28
+ aws-sdk-core (~> 3, >= 3.184.0)
25
29
  aws-sigv4 (~> 1.1)
26
- jmespath (~> 1.0)
27
- aws-sdk-dynamodb (1.64.0)
28
- aws-sdk-core (~> 3, >= 3.121.2)
29
- aws-sigv4 (~> 1.1)
30
- aws-sigv4 (1.4.0)
30
+ aws-sigv4 (1.6.1)
31
31
  aws-eventstream (~> 1, >= 1.0.2)
32
- colorize (0.8.1)
33
- concurrent-ruby (1.1.9)
34
- deep_merge (1.2.1)
35
- et-orbi (1.2.5)
32
+ base64 (0.1.1)
33
+ colorize (1.1.0)
34
+ concurrent-ruby (1.2.2)
35
+ deep_merge (1.2.2)
36
+ et-orbi (1.2.7)
36
37
  tzinfo
37
- faraday (1.8.0)
38
- faraday-em_http (~> 1.0)
39
- faraday-em_synchrony (~> 1.0)
40
- faraday-excon (~> 1.1)
41
- faraday-httpclient (~> 1.0.1)
42
- faraday-net_http (~> 1.0)
43
- faraday-net_http_persistent (~> 1.1)
44
- faraday-patron (~> 1.0)
45
- faraday-rack (~> 1.0)
46
- multipart-post (>= 1.2, < 3)
38
+ faraday (2.7.11)
39
+ base64
40
+ faraday-net_http (>= 2.0, < 3.1)
47
41
  ruby2_keywords (>= 0.0.4)
48
- faraday-em_http (1.0.0)
49
- faraday-em_synchrony (1.0.0)
50
- faraday-excon (1.1.0)
51
- faraday-httpclient (1.0.1)
52
- faraday-net_http (1.0.1)
53
- faraday-net_http_persistent (1.2.0)
54
- faraday-patron (1.0.0)
55
- faraday-rack (1.0.0)
56
- fugit (1.5.2)
57
- et-orbi (~> 1.1, >= 1.1.8)
42
+ faraday-net_http (3.0.2)
43
+ fugit (1.9.0)
44
+ et-orbi (~> 1, >= 1.2.7)
58
45
  raabro (~> 1.4)
59
- jmespath (1.4.0)
46
+ jmespath (1.6.2)
60
47
  macaddr (1.7.2)
61
48
  systemu (~> 2.6.5)
62
- mdless (1.0.27)
63
- multipart-post (2.1.1)
64
- net-scp (3.0.0)
65
- net-ssh (>= 2.6.5, < 7.0.0)
66
- net-ssh (6.1.0)
67
- octokit (4.21.0)
68
- faraday (>= 0.9)
69
- sawyer (~> 0.8.0, >= 0.5.3)
70
- public_suffix (4.0.6)
49
+ mdless (2.1.42)
50
+ redcarpet (~> 3.6)
51
+ rouge (~> 4.2)
52
+ tty-screen (~> 0.8)
53
+ tty-spinner (~> 0.8)
54
+ tty-which (~> 0.5)
55
+ net-scp (4.0.0)
56
+ net-ssh (>= 2.6.5, < 8.0.0)
57
+ net-ssh (7.2.0)
58
+ octokit (8.1.0)
59
+ base64
60
+ faraday (>= 1, < 3)
61
+ sawyer (~> 0.9)
62
+ public_suffix (5.0.3)
71
63
  raabro (1.4.0)
72
- rake (13.0.1)
64
+ rake (13.0.6)
65
+ redcarpet (3.6.0)
66
+ rouge (4.2.1)
73
67
  ruby2_keywords (0.0.5)
74
- rufus-scheduler (3.8.0)
68
+ rufus-scheduler (3.9.1)
75
69
  fugit (~> 1.1, >= 1.1.6)
76
- sawyer (0.8.2)
70
+ sawyer (0.9.2)
77
71
  addressable (>= 2.3.5)
78
- faraday (> 0.8, < 2.0)
72
+ faraday (>= 0.17.3, < 3)
79
73
  systemu (2.6.5)
80
- tzinfo (2.0.4)
74
+ tty-cursor (0.7.1)
75
+ tty-screen (0.8.2)
76
+ tty-spinner (0.9.3)
77
+ tty-cursor (~> 0.7)
78
+ tty-which (0.5.0)
79
+ tzinfo (2.0.6)
81
80
  concurrent-ruby (~> 1.0)
82
81
 
83
82
  PLATFORMS
84
- ruby
83
+ arm64-darwin-23
84
+ x86_64-darwin-23
85
85
 
86
86
  DEPENDENCIES
87
- bundler (~> 2.2)
88
- rake (~> 13.0)
87
+ bundler (>= 2)
88
+ rake (>= 13)
89
89
  rbcli!
90
90
 
91
91
  BUNDLED WITH
92
- 2.2.29
92
+ 2.4.21
data/docs/404.html CHANGED
@@ -9,15 +9,15 @@
9
9
  <title>404 Page not found</title>
10
10
 
11
11
 
12
- <link href="/rbcli/css/nucleus.css?1634703589" rel="stylesheet">
13
- <link href="/rbcli/css/fontawesome-all.min.css?1634703589" rel="stylesheet">
14
- <link href="/rbcli/css/hybrid.css?1634703589" rel="stylesheet">
15
- <link href="/rbcli/css/featherlight.min.css?1634703589" rel="stylesheet">
16
- <link href="/rbcli/css/perfect-scrollbar.min.css?1634703589" rel="stylesheet">
17
- <link href="/rbcli/css/theme.css?1634703589" rel="stylesheet">
18
- <link href="/rbcli/css/hugo-theme.css?1634703589" rel="stylesheet">
12
+ <link href="/rbcli/css/nucleus.css?1713907739" rel="stylesheet">
13
+ <link href="/rbcli/css/fontawesome-all.min.css?1713907739" rel="stylesheet">
14
+ <link href="/rbcli/css/hybrid.css?1713907739" rel="stylesheet">
15
+ <link href="/rbcli/css/featherlight.min.css?1713907739" rel="stylesheet">
16
+ <link href="/rbcli/css/perfect-scrollbar.min.css?1713907739" rel="stylesheet">
17
+ <link href="/rbcli/css/theme.css?1713907739" rel="stylesheet">
18
+ <link href="/rbcli/css/hugo-theme.css?1713907739" rel="stylesheet">
19
19
 
20
- <link href="/rbcli/css/theme-blue.css?1634703589" rel="stylesheet">
20
+ <link href="/rbcli/css/theme-blue.css?1713907739" rel="stylesheet">
21
21
 
22
22
  <style>
23
23
  :root #header + #content > #left > #rlblock_left {
@@ -49,7 +49,7 @@
49
49
  <p>Woops. Looks like this page doesn&#39;t exist ¯\_(ツ)_/¯.</p>
50
50
  <p></p>
51
51
  <p><a href='/rbcli/'>Go to homepage</a></p>
52
- <p><img src='/rbcli/images/gopher-404.jpg' style="width:50%" alt="Page not found!"></p>
52
+ <p><img src='/images/gopher-404.jpg' style="width:50%" alt="Page not found!"></p>
53
53
  </div>
54
54
  </div>
55
55
 
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="utf-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <meta name="generator" content="Hugo 0.88.1" />
6
+ <meta name="generator" content="Hugo 0.125.1">
7
7
  <meta name="description" content="">
8
8
 
9
9
 
@@ -12,21 +12,21 @@
12
12
  <title>Automatic Updates :: RBCli Documentation</title>
13
13
 
14
14
 
15
- <link href="/rbcli/css/nucleus.css?1634703589" rel="stylesheet">
16
- <link href="/rbcli/css/fontawesome-all.min.css?1634703589" rel="stylesheet">
17
- <link href="/rbcli/css/hybrid.css?1634703589" rel="stylesheet">
18
- <link href="/rbcli/css/featherlight.min.css?1634703589" rel="stylesheet">
19
- <link href="/rbcli/css/perfect-scrollbar.min.css?1634703589" rel="stylesheet">
20
- <link href="/rbcli/css/auto-complete.css?1634703589" rel="stylesheet">
21
- <link href="/rbcli/css/atom-one-dark-reasonable.css?1634703589" rel="stylesheet">
22
- <link href="/rbcli/css/theme.css?1634703589" rel="stylesheet">
23
- <link href="/rbcli/css/hugo-theme.css?1634703589" rel="stylesheet">
15
+ <link href="/rbcli/css/nucleus.css?1713907739" rel="stylesheet">
16
+ <link href="/rbcli/css/fontawesome-all.min.css?1713907739" rel="stylesheet">
17
+ <link href="/rbcli/css/hybrid.css?1713907739" rel="stylesheet">
18
+ <link href="/rbcli/css/featherlight.min.css?1713907739" rel="stylesheet">
19
+ <link href="/rbcli/css/perfect-scrollbar.min.css?1713907739" rel="stylesheet">
20
+ <link href="/rbcli/css/auto-complete.css?1713907739" rel="stylesheet">
21
+ <link href="/rbcli/css/atom-one-dark-reasonable.css?1713907739" rel="stylesheet">
22
+ <link href="/rbcli/css/theme.css?1713907739" rel="stylesheet">
23
+ <link href="/rbcli/css/hugo-theme.css?1713907739" rel="stylesheet">
24
24
 
25
- <link href="/rbcli/css/theme-blue.css?1634703589" rel="stylesheet">
25
+ <link href="/rbcli/css/theme-blue.css?1713907739" rel="stylesheet">
26
26
 
27
27
 
28
28
 
29
- <script src="/rbcli/js/jquery-3.3.1.min.js?1634703589"></script>
29
+ <script src="/rbcli/js/jquery-3.3.1.min.js?1713907739"></script>
30
30
 
31
31
  <style>
32
32
  :root #header + #content > #left > #rlblock_left{
@@ -55,14 +55,14 @@
55
55
  <span data-search-clear=""><i class="fas fa-times"></i></span>
56
56
  </div>
57
57
 
58
- <script type="text/javascript" src="/rbcli/js/lunr.min.js?1634703589"></script>
59
- <script type="text/javascript" src="/rbcli/js/auto-complete.js?1634703589"></script>
58
+ <script type="text/javascript" src="/rbcli/js/lunr.min.js?1713907739"></script>
59
+ <script type="text/javascript" src="/rbcli/js/auto-complete.js?1713907739"></script>
60
60
  <script type="text/javascript">
61
61
 
62
62
  var baseurl = "https:\/\/akhoury6.github.io\/rbcli\/";
63
63
 
64
64
  </script>
65
- <script type="text/javascript" src="/rbcli/js/search.js?1634703589"></script>
65
+ <script type="text/javascript" src="/rbcli/js/search.js?1713907739"></script>
66
66
 
67
67
 
68
68
  </div>
@@ -709,16 +709,16 @@
709
709
  <h2 id="github-update-check">GitHub Update Check</h2>
710
710
  <p>The GitHub update check works best when paired with GitHub&rsquo;s best practices on releases, where new releases are tagged on master with the format <strong>vX.X.X</strong>. See <a href="https://help.github.com/articles/creating-releases/">Github&rsquo;s release documentation</a> to learn more.</p>
711
711
  <p>RBCli will check your github repo&rsquo;s tags and compare that version number with one specified in your application at <code>config/version.rb</code>.</p>
712
- <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-ruby" data-lang="ruby">autoupdate <span style="color:#e6db74">github_repo</span>: <span style="color:#e6db74">&#39;&lt;your_user&gt;/&lt;your_repo&gt;&#39;</span>, <span style="color:#e6db74">access_token</span>: <span style="color:#66d9ef">nil</span>, <span style="color:#e6db74">enterprise_hostname</span>: <span style="color:#66d9ef">nil</span>, <span style="color:#e6db74">force_update</span>: <span style="color:#66d9ef">false</span>, <span style="color:#e6db74">message</span>: <span style="color:#66d9ef">nil</span>
713
- </code></pre></div><p>The <code>github_repo</code> should point to the repo using the <code>user/repo</code> syntax.</p>
712
+ <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-ruby" data-lang="ruby"><span style="display:flex;"><span>autoupdate <span style="color:#e6db74">github_repo</span>: <span style="color:#e6db74">&#39;&lt;your_user&gt;/&lt;your_repo&gt;&#39;</span>, <span style="color:#e6db74">access_token</span>: <span style="color:#66d9ef">nil</span>, <span style="color:#e6db74">enterprise_hostname</span>: <span style="color:#66d9ef">nil</span>, <span style="color:#e6db74">force_update</span>: <span style="color:#66d9ef">false</span>, <span style="color:#e6db74">message</span>: <span style="color:#66d9ef">nil</span>
713
+ </span></span></code></pre></div><p>The <code>github_repo</code> should point to the repo using the <code>user/repo</code> syntax.</p>
714
714
  <p>The <code>access_token</code> can be overridden by the user via their config file, so it can be left as <code>nil</code> if you enable <a href="/rbcli/advanced/user_config_files/">Userspace Configuration</a>. The token is not needed at all if using a public repo. For instructions on generating a new access token, see <a href="https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/">here</a>.</p>
715
715
  <p>The <code>enterprise_hostname</code> setting allows you to point RBCli at a local GitHub Enterprise server.</p>
716
716
  <p>Setting <code>force_update: true</code> will halt execution if an update is available, forcing the user to update.</p>
717
717
  <p>The <code>message</code> parameter allows setting a custom message that will be displayed when an update is available. Leaving it as <code>nil</code> will use the default message provided by RBCli.</p>
718
718
  <h2 id="rubygemsorg-update-check">Rubygems.org Update Check</h2>
719
719
  <p>The Rubygems update check will check if there is a new published version of the gem on Rubygems.org. The latest published version is compared to the version number you configured RBCli with.</p>
720
- <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-ruby" data-lang="ruby">autoupdate <span style="color:#e6db74">gem</span>: <span style="color:#e6db74">&#39;&lt;your_gem&gt;&#39;</span>, <span style="color:#e6db74">force_update</span>: <span style="color:#66d9ef">false</span>, <span style="color:#e6db74">message</span>: <span style="color:#66d9ef">nil</span>
721
- </code></pre></div><p>The <code>gem</code> parameter should simply state the name of the gem.</p>
720
+ <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-ruby" data-lang="ruby"><span style="display:flex;"><span>autoupdate <span style="color:#e6db74">gem</span>: <span style="color:#e6db74">&#39;&lt;your_gem&gt;&#39;</span>, <span style="color:#e6db74">force_update</span>: <span style="color:#66d9ef">false</span>, <span style="color:#e6db74">message</span>: <span style="color:#66d9ef">nil</span>
721
+ </span></span></code></pre></div><p>The <code>gem</code> parameter should simply state the name of the gem.</p>
722
722
  <p>Setting <code>force_update: true</code> will halt execution if an update is available, forcing the user to update.</p>
723
723
  <p>The <code>message</code> parameter allows setting a custom message that will be displayed when an update is available. Leaving it as <code>nil</code> will use the default message provided by RBCli.</p>
724
724
 
@@ -1151,19 +1151,19 @@
1151
1151
  <div style="left: -1000px; overflow: scroll; position: absolute; top: -1000px; border: none; box-sizing: content-box; height: 200px; margin: 0px; padding: 0px; width: 200px;">
1152
1152
  <div style="border: none; box-sizing: content-box; height: 200px; margin: 0px; padding: 0px; width: 200px;"></div>
1153
1153
  </div>
1154
- <script src="/rbcli/js/clipboard.min.js?1634703589"></script>
1155
- <script src="/rbcli/js/perfect-scrollbar.min.js?1634703589"></script>
1156
- <script src="/rbcli/js/perfect-scrollbar.jquery.min.js?1634703589"></script>
1157
- <script src="/rbcli/js/jquery.sticky.js?1634703589"></script>
1158
- <script src="/rbcli/js/featherlight.min.js?1634703589"></script>
1159
- <script src="/rbcli/js/highlight.pack.js?1634703589"></script>
1154
+ <script src="/rbcli/js/clipboard.min.js?1713907739"></script>
1155
+ <script src="/rbcli/js/perfect-scrollbar.min.js?1713907739"></script>
1156
+ <script src="/rbcli/js/perfect-scrollbar.jquery.min.js?1713907739"></script>
1157
+ <script src="/rbcli/js/jquery.sticky.js?1713907739"></script>
1158
+ <script src="/rbcli/js/featherlight.min.js?1713907739"></script>
1159
+ <script src="/rbcli/js/highlight.pack.js?1713907739"></script>
1160
1160
  <script>hljs.initHighlightingOnLoad();</script>
1161
- <script src="/rbcli/js/modernizr.custom-3.6.0.js?1634703589"></script>
1162
- <script src="/rbcli/js/learn.js?1634703589"></script>
1163
- <script src="/rbcli/js/hugo-learn.js?1634703589"></script>
1161
+ <script src="/rbcli/js/modernizr.custom-3.6.0.js?1713907739"></script>
1162
+ <script src="/rbcli/js/learn.js?1713907739"></script>
1163
+ <script src="/rbcli/js/hugo-learn.js?1713907739"></script>
1164
1164
 
1165
- <link href="/rbcli/mermaid/mermaid.css?1634703589" rel="stylesheet" />
1166
- <script src="/rbcli/mermaid/mermaid.js?1634703589"></script>
1165
+ <link href="/rbcli/mermaid/mermaid.css?1713907739" rel="stylesheet" />
1166
+ <script src="/rbcli/mermaid/mermaid.js?1713907739"></script>
1167
1167
  <script>
1168
1168
  mermaid.initialize({ startOnLoad: true });
1169
1169
  </script>