himg 0.0.6-aarch64-linux
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.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +20 -0
- data/.ruby-version +1 -0
- data/Appraisals +40 -0
- data/CHANGELOG.md +50 -0
- data/LICENSE-APACHE.txt +203 -0
- data/LICENSE-MIT.txt +21 -0
- data/README.md +173 -0
- data/Rakefile +26 -0
- data/Steepfile +19 -0
- data/ext/himg/examples/assets/github_profile.html +119 -0
- data/ext/himg/examples/assets/github_profile_offline.html +86 -0
- data/ext/himg/output/.gitkeep +0 -0
- data/gemfiles/plain_ruby.gemfile +5 -0
- data/gemfiles/plain_ruby.gemfile.lock +181 -0
- data/gemfiles/rails_6.gemfile +11 -0
- data/gemfiles/rails_6.gemfile.lock +320 -0
- data/gemfiles/rails_7_0.gemfile +11 -0
- data/gemfiles/rails_7_0.gemfile.lock +318 -0
- data/gemfiles/rails_7_1.gemfile +8 -0
- data/gemfiles/rails_7_1.gemfile.lock +334 -0
- data/gemfiles/rails_7_2.gemfile +8 -0
- data/gemfiles/rails_7_2.gemfile.lock +329 -0
- data/gemfiles/rails_8.gemfile +8 -0
- data/gemfiles/rails_8.gemfile.lock +329 -0
- data/lib/himg/3.2/himg.so +0 -0
- data/lib/himg/3.4/himg.so +0 -0
- data/lib/himg/base_url.rb +21 -0
- data/lib/himg/cli.rb +64 -0
- data/lib/himg/railtie/controller_config.rb +31 -0
- data/lib/himg/railtie/template_handler.rb +32 -0
- data/lib/himg/railtie.rb +49 -0
- data/lib/himg/version.rb +5 -0
- data/lib/himg.rb +26 -0
- data/readme_hero.svg +54 -0
- data/sig/himg.rbs +16 -0
- metadata +211 -0
@@ -0,0 +1,119 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head><style type="text/css">.turbo-progress-bar {
|
4
|
+
position: fixed;
|
5
|
+
display: block;
|
6
|
+
top: 0;
|
7
|
+
left: 0;
|
8
|
+
height: 3px;
|
9
|
+
background: #0076ff;
|
10
|
+
z-index: 2147483647;
|
11
|
+
transition:
|
12
|
+
width 300ms ease-out,
|
13
|
+
opacity 150ms 150ms ease-in;
|
14
|
+
transform: translate3d(0, 0, 0);
|
15
|
+
}
|
16
|
+
</style>
|
17
|
+
<meta charset="utf-8">
|
18
|
+
|
19
|
+
|
20
|
+
<link rel="stylesheet" href="https://github.githubassets.com/assets/light-0cfd1fd8509e.css">
|
21
|
+
<link data-color-theme="dark" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark-d782f59290e2.css">
|
22
|
+
<link data-color-theme="dark_dimmed" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_dimmed-f9fbc4b99a77.css">
|
23
|
+
<link data-color-theme="dark_high_contrast" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_high_contrast-cff1c9b27b1a.css">
|
24
|
+
<link data-color-theme="dark_colorblind" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_colorblind-70097f75aec1.css">
|
25
|
+
<link data-color-theme="light_colorblind" rel="stylesheet" data-href="https://github.githubassets.com/assets/light_colorblind-c2f0d49bdcd9.css">
|
26
|
+
<link data-color-theme="light_high_contrast" rel="stylesheet" data-href="https://github.githubassets.com/assets/light_high_contrast-4747d7bc0bc4.css">
|
27
|
+
<link data-color-theme="light_tritanopia" rel="stylesheet" data-href="https://github.githubassets.com/assets/light_tritanopia-d3f6a61c91c8.css">
|
28
|
+
<link data-color-theme="dark_tritanopia" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_tritanopia-a188d53f44bb.css">
|
29
|
+
|
30
|
+
<link rel="stylesheet" href="https://github.githubassets.com/assets/primer-primitives-953961b66e63.css">
|
31
|
+
<link rel="stylesheet" href="https://github.githubassets.com/assets/primer-4430d3c2c150.css">
|
32
|
+
<link rel="stylesheet" href="https://github.githubassets.com/assets/global-1d3440e946dd.css">
|
33
|
+
<link rel="stylesheet" href="https://github.githubassets.com/assets/github-e72829f5538b.css">
|
34
|
+
<link rel="stylesheet" href="https://github.githubassets.com/assets/staff-0aa284f91bc2.css">
|
35
|
+
<link rel="stylesheet" href="https://github.githubassets.com/assets/devtools-ed3c56d5f6b2.css">
|
36
|
+
<link rel="stylesheet" href="https://github.githubassets.com/assets/profile-a657309cdf66.css">
|
37
|
+
<link rel="stylesheet" href="https://github.githubassets.com/assets/insights-c5cddd751d33.css">
|
38
|
+
|
39
|
+
<title>nicoburns (Nico Burns)</title>
|
40
|
+
|
41
|
+
<meta name="viewport" content="width=device-width">
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
<meta name="description" content="nicoburns has 79 repositories available. Follow their code on GitHub.">
|
46
|
+
|
47
|
+
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
|
48
|
+
|
49
|
+
<meta name="hostname" content="github.com">
|
50
|
+
|
51
|
+
<meta name="expected-hostname" content="github.com">
|
52
|
+
<link rel="mask-icon" href="https://github.githubassets.com/assets/pinned-octocat-093da3e6fa40.svg" color="#000000">
|
53
|
+
<link rel="alternate icon" class="js-site-favicon" type="image/png" href="https://github.githubassets.com/favicons/favicon.png">
|
54
|
+
<link rel="icon" class="js-site-favicon" type="image/svg+xml" href="https://github.githubassets.com/favicons/favicon.svg" data-base-href="https://github.githubassets.com/favicons/favicon">
|
55
|
+
|
56
|
+
<meta name="theme-color" content="#1e2327">
|
57
|
+
<meta name="color-scheme" content="light dark">
|
58
|
+
|
59
|
+
</head>
|
60
|
+
<body>
|
61
|
+
<div class="Box d-flex p-3 width-full public source">
|
62
|
+
<div class="pinned-item-list-item-content">
|
63
|
+
<div class="d-flex width-full position-relative">
|
64
|
+
<div class="flex-1">
|
65
|
+
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo mr-1 color-fg-muted">
|
66
|
+
<path d="M2 2.5A2.5 2.5 0 0 1 4.5 0h8.75a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-8a1 1 0 0 0-.714 1.7.75.75 0 1 1-1.072 1.05A2.495 2.495 0 0 1 2 11.5Zm10.5-1h-8a1 1 0 0 0-1 1v6.708A2.486 2.486 0 0 1 4.5 9h8ZM5 12.25a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.25a.25.25 0 0 1-.4.2l-1.45-1.087a.249.249 0 0 0-.3 0L5.4 15.7a.25.25 0 0 1-.4-.2Z"></path>
|
67
|
+
</svg>
|
68
|
+
<span data-view-component="true" class="position-relative"><a data-hydro-click="{"event_type":"user_profile.click","payload":{"profile_user_id":1007307,"target":"PINNED_REPO","user_id":1007307,"originating_url":"https://github.com/nicoburns"}}" data-hydro-click-hmac="95bab3b0debdfa7d41ff86f71264a58e15a16e2c317afd1444c387724a44f62d" id="464340188" href="/DioxusLabs/blitz" data-view-component="true" class="Link mr-1 text-bold wb-break-word" aria-labelledby="tooltip-7d61525f-6eaa-4bf0-a1c6-b8ec7d17b15b"><span class="owner text-normal">DioxusLabs/</span><span class="repo">blitz</span></a> <tool-tip id="tooltip-7d61525f-6eaa-4bf0-a1c6-b8ec7d17b15b" for="464340188" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="position-absolute sr-only" aria-hidden="true" role="tooltip" style="--tool-tip-position-top: 1239.265625px; --tool-tip-position-left: 500.75390625px;">DioxusLabs/blitz</tool-tip></span> <span></span><span class="Label Label--secondary v-align-middle mt-1 no-wrap v-align-baseline Label--inline">Public</span>
|
69
|
+
</div>
|
70
|
+
<div>
|
71
|
+
<input type="hidden" name="pinned_items_id_and_type[]" id="pinned-item-reorder-464340188" value="464340188-Repository" autocomplete="off" class="form-control">
|
72
|
+
<span role="button" class="pinned-item-handle js-pinned-item-reorder" aria-label="Drag to reorder">
|
73
|
+
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-grabber">
|
74
|
+
<path d="M10 13a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm0-4a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-4 4a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm5-9a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM7 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM6 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path>
|
75
|
+
</svg>
|
76
|
+
</span>
|
77
|
+
<button data-direction="up" type="button" data-view-component="true" class="show-on-focus sortable-button js-sortable-button Button--secondary Button--small Button right-0"> <span class="Button-content">
|
78
|
+
<span class="Button-label"><svg aria-label="Move blitz up" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-chevron-up">
|
79
|
+
<path d="M3.22 10.53a.749.749 0 0 1 0-1.06l4.25-4.25a.749.749 0 0 1 1.06 0l4.25 4.25a.749.749 0 1 1-1.06 1.06L8 6.811 4.28 10.53a.749.749 0 0 1-1.06 0Z"></path>
|
80
|
+
</svg></span>
|
81
|
+
</span>
|
82
|
+
</button>
|
83
|
+
<button data-direction="down" type="button" data-view-component="true" class="show-on-focus sortable-button js-sortable-button Button--secondary Button--small Button right-0"> <span class="Button-content">
|
84
|
+
<span class="Button-label"><svg aria-label="Move blitz down" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-chevron-down">
|
85
|
+
<path d="M12.78 5.22a.749.749 0 0 1 0 1.06l-4.25 4.25a.749.749 0 0 1-1.06 0L3.22 6.28a.749.749 0 1 1 1.06-1.06L8 8.939l3.72-3.719a.749.749 0 0 1 1.06 0Z"></path>
|
86
|
+
</svg></span>
|
87
|
+
</span>
|
88
|
+
</button>
|
89
|
+
</div>
|
90
|
+
</div>
|
91
|
+
|
92
|
+
|
93
|
+
<p class="pinned-item-desc color-fg-muted text-small mt-2 mb-0">
|
94
|
+
A radically modular HTML/CSS rendering engine
|
95
|
+
</p>
|
96
|
+
|
97
|
+
<p class="mb-0 mt-2 f6 color-fg-muted">
|
98
|
+
<span class="d-inline-block mr-3">
|
99
|
+
<span class="repo-language-color" style="background-color: #dea584"></span>
|
100
|
+
<span itemprop="programmingLanguage">Rust</span>
|
101
|
+
</span>
|
102
|
+
|
103
|
+
<a href="/DioxusLabs/blitz/stargazers" class="pinned-item-meta Link--muted">
|
104
|
+
<svg aria-label="stars" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-star">
|
105
|
+
<path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Zm0 2.445L6.615 5.5a.75.75 0 0 1-.564.41l-3.097.45 2.24 2.184a.75.75 0 0 1 .216.664l-.528 3.084 2.769-1.456a.75.75 0 0 1 .698 0l2.77 1.456-.53-3.084a.75.75 0 0 1 .216-.664l2.24-2.183-3.096-.45a.75.75 0 0 1-.564-.41L8 2.694Z"></path>
|
106
|
+
</svg>
|
107
|
+
2.2k
|
108
|
+
</a>
|
109
|
+
<a href="/DioxusLabs/blitz/forks" class="pinned-item-meta Link--muted">
|
110
|
+
<svg aria-label="forks" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo-forked">
|
111
|
+
<path d="M5 5.372v.878c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-.878a2.25 2.25 0 1 1 1.5 0v.878a2.25 2.25 0 0 1-2.25 2.25h-1.5v2.128a2.251 2.251 0 1 1-1.5 0V8.5h-1.5A2.25 2.25 0 0 1 3.5 6.25v-.878a2.25 2.25 0 1 1 1.5 0ZM5 3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm6.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-3 8.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z"></path>
|
112
|
+
</svg>
|
113
|
+
50
|
114
|
+
</a>
|
115
|
+
</p>
|
116
|
+
</div>
|
117
|
+
</div>
|
118
|
+
</body>
|
119
|
+
</html>
|
@@ -0,0 +1,86 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head><style type="text/css">.turbo-progress-bar {
|
4
|
+
position: fixed;
|
5
|
+
display: block;
|
6
|
+
top: 0;
|
7
|
+
left: 0;
|
8
|
+
height: 3px;
|
9
|
+
background: #0076ff;
|
10
|
+
z-index: 2147483647;
|
11
|
+
transition:
|
12
|
+
width 300ms ease-out,
|
13
|
+
opacity 150ms 150ms ease-in;
|
14
|
+
transform: translate3d(0, 0, 0);
|
15
|
+
}
|
16
|
+
</style>
|
17
|
+
<meta charset="utf-8">
|
18
|
+
<title>nicoburns (Nico Burns)</title>
|
19
|
+
|
20
|
+
<meta name="viewport" content="width=device-width">
|
21
|
+
<meta name="description" content="nicoburns has 79 repositories available. Follow their code on GitHub.">
|
22
|
+
<meta name="hostname" content="github.com">
|
23
|
+
<meta name="expected-hostname" content="github.com">
|
24
|
+
<meta name="theme-color" content="#1e2327">
|
25
|
+
<meta name="color-scheme" content="light dark">
|
26
|
+
</head>
|
27
|
+
<body>
|
28
|
+
<div class="Box d-flex p-3 width-full public source">
|
29
|
+
<div class="pinned-item-list-item-content">
|
30
|
+
<div class="d-flex width-full position-relative">
|
31
|
+
<div class="flex-1">
|
32
|
+
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo mr-1 color-fg-muted">
|
33
|
+
<path d="M2 2.5A2.5 2.5 0 0 1 4.5 0h8.75a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-8a1 1 0 0 0-.714 1.7.75.75 0 1 1-1.072 1.05A2.495 2.495 0 0 1 2 11.5Zm10.5-1h-8a1 1 0 0 0-1 1v6.708A2.486 2.486 0 0 1 4.5 9h8ZM5 12.25a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.25a.25.25 0 0 1-.4.2l-1.45-1.087a.249.249 0 0 0-.3 0L5.4 15.7a.25.25 0 0 1-.4-.2Z"></path>
|
34
|
+
</svg>
|
35
|
+
<span data-view-component="true" class="position-relative"><a data-hydro-click="{"event_type":"user_profile.click","payload":{"profile_user_id":1007307,"target":"PINNED_REPO","user_id":1007307,"originating_url":"https://github.com/nicoburns"}}" data-hydro-click-hmac="95bab3b0debdfa7d41ff86f71264a58e15a16e2c317afd1444c387724a44f62d" id="464340188" href="/DioxusLabs/blitz" data-view-component="true" class="Link mr-1 text-bold wb-break-word" aria-labelledby="tooltip-7d61525f-6eaa-4bf0-a1c6-b8ec7d17b15b"><span class="owner text-normal">DioxusLabs/</span><span class="repo">blitz</span></a> <tool-tip id="tooltip-7d61525f-6eaa-4bf0-a1c6-b8ec7d17b15b" for="464340188" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="position-absolute sr-only" aria-hidden="true" role="tooltip" style="--tool-tip-position-top: 1239.265625px; --tool-tip-position-left: 500.75390625px;">DioxusLabs/blitz</tool-tip></span> <span></span><span class="Label Label--secondary v-align-middle mt-1 no-wrap v-align-baseline Label--inline">Public</span>
|
36
|
+
</div>
|
37
|
+
<div>
|
38
|
+
<input type="hidden" name="pinned_items_id_and_type[]" id="pinned-item-reorder-464340188" value="464340188-Repository" autocomplete="off" class="form-control">
|
39
|
+
<span role="button" class="pinned-item-handle js-pinned-item-reorder" aria-label="Drag to reorder">
|
40
|
+
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-grabber">
|
41
|
+
<path d="M10 13a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm0-4a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-4 4a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm5-9a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM7 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM6 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path>
|
42
|
+
</svg>
|
43
|
+
</span>
|
44
|
+
<button data-direction="up" type="button" data-view-component="true" class="show-on-focus sortable-button js-sortable-button Button--secondary Button--small Button right-0"> <span class="Button-content">
|
45
|
+
<span class="Button-label"><svg aria-label="Move blitz up" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-chevron-up">
|
46
|
+
<path d="M3.22 10.53a.749.749 0 0 1 0-1.06l4.25-4.25a.749.749 0 0 1 1.06 0l4.25 4.25a.749.749 0 1 1-1.06 1.06L8 6.811 4.28 10.53a.749.749 0 0 1-1.06 0Z"></path>
|
47
|
+
</svg></span>
|
48
|
+
</span>
|
49
|
+
</button>
|
50
|
+
<button data-direction="down" type="button" data-view-component="true" class="show-on-focus sortable-button js-sortable-button Button--secondary Button--small Button right-0"> <span class="Button-content">
|
51
|
+
<span class="Button-label"><svg aria-label="Move blitz down" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-chevron-down">
|
52
|
+
<path d="M12.78 5.22a.749.749 0 0 1 0 1.06l-4.25 4.25a.749.749 0 0 1-1.06 0L3.22 6.28a.749.749 0 1 1 1.06-1.06L8 8.939l3.72-3.719a.749.749 0 0 1 1.06 0Z"></path>
|
53
|
+
</svg></span>
|
54
|
+
</span>
|
55
|
+
</button>
|
56
|
+
</div>
|
57
|
+
</div>
|
58
|
+
|
59
|
+
|
60
|
+
<p class="pinned-item-desc color-fg-muted text-small mt-2 mb-0">
|
61
|
+
A radically modular HTML/CSS rendering engine
|
62
|
+
</p>
|
63
|
+
|
64
|
+
<p class="mb-0 mt-2 f6 color-fg-muted">
|
65
|
+
<span class="d-inline-block mr-3">
|
66
|
+
<span class="repo-language-color" style="background-color: #dea584"></span>
|
67
|
+
<span itemprop="programmingLanguage">Rust</span>
|
68
|
+
</span>
|
69
|
+
|
70
|
+
<a href="/DioxusLabs/blitz/stargazers" class="pinned-item-meta Link--muted">
|
71
|
+
<svg aria-label="stars" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-star">
|
72
|
+
<path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Zm0 2.445L6.615 5.5a.75.75 0 0 1-.564.41l-3.097.45 2.24 2.184a.75.75 0 0 1 .216.664l-.528 3.084 2.769-1.456a.75.75 0 0 1 .698 0l2.77 1.456-.53-3.084a.75.75 0 0 1 .216-.664l2.24-2.183-3.096-.45a.75.75 0 0 1-.564-.41L8 2.694Z"></path>
|
73
|
+
</svg>
|
74
|
+
2.2k
|
75
|
+
</a>
|
76
|
+
<a href="/DioxusLabs/blitz/forks" class="pinned-item-meta Link--muted">
|
77
|
+
<svg aria-label="forks" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo-forked">
|
78
|
+
<path d="M5 5.372v.878c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-.878a2.25 2.25 0 1 1 1.5 0v.878a2.25 2.25 0 0 1-2.25 2.25h-1.5v2.128a2.251 2.251 0 1 1-1.5 0V8.5h-1.5A2.25 2.25 0 0 1 3.5 6.25v-.878a2.25 2.25 0 1 1 1.5 0ZM5 3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm6.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-3 8.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z"></path>
|
79
|
+
</svg>
|
80
|
+
50
|
81
|
+
</a>
|
82
|
+
</p>
|
83
|
+
</div>
|
84
|
+
</div>
|
85
|
+
</body>
|
86
|
+
</html>
|
File without changes
|
@@ -0,0 +1,181 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
himg (0.0.5)
|
5
|
+
rb_sys (~> 0.9)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activesupport (8.0.2)
|
11
|
+
base64
|
12
|
+
benchmark (>= 0.3)
|
13
|
+
bigdecimal
|
14
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
15
|
+
connection_pool (>= 2.2.5)
|
16
|
+
drb
|
17
|
+
i18n (>= 1.6, < 2)
|
18
|
+
logger (>= 1.4.2)
|
19
|
+
minitest (>= 5.1)
|
20
|
+
securerandom (>= 0.3)
|
21
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
22
|
+
uri (>= 0.13.1)
|
23
|
+
appraisal (2.5.0)
|
24
|
+
bundler
|
25
|
+
rake
|
26
|
+
thor (>= 0.14.0)
|
27
|
+
ast (2.4.3)
|
28
|
+
base64 (0.2.0)
|
29
|
+
benchmark (0.4.0)
|
30
|
+
bigdecimal (3.1.9)
|
31
|
+
bump (0.10.0)
|
32
|
+
concurrent-ruby (1.3.5)
|
33
|
+
connection_pool (2.5.1)
|
34
|
+
csv (3.3.4)
|
35
|
+
date (3.4.1)
|
36
|
+
debug (1.10.0)
|
37
|
+
irb (~> 1.10)
|
38
|
+
reline (>= 0.3.8)
|
39
|
+
diff-lcs (1.6.1)
|
40
|
+
drb (2.2.1)
|
41
|
+
ffi (1.17.2)
|
42
|
+
ffi (1.17.2-aarch64-linux-gnu)
|
43
|
+
ffi (1.17.2-aarch64-linux-musl)
|
44
|
+
ffi (1.17.2-arm-linux-gnu)
|
45
|
+
ffi (1.17.2-arm-linux-musl)
|
46
|
+
ffi (1.17.2-arm64-darwin)
|
47
|
+
ffi (1.17.2-x86-linux-gnu)
|
48
|
+
ffi (1.17.2-x86-linux-musl)
|
49
|
+
ffi (1.17.2-x86_64-darwin)
|
50
|
+
ffi (1.17.2-x86_64-linux-gnu)
|
51
|
+
ffi (1.17.2-x86_64-linux-musl)
|
52
|
+
fileutils (1.7.3)
|
53
|
+
i18n (1.14.7)
|
54
|
+
concurrent-ruby (~> 1.0)
|
55
|
+
io-console (0.8.0)
|
56
|
+
irb (1.15.2)
|
57
|
+
pp (>= 0.6.0)
|
58
|
+
rdoc (>= 4.0.0)
|
59
|
+
reline (>= 0.4.2)
|
60
|
+
json (2.10.2)
|
61
|
+
language_server-protocol (3.17.0.4)
|
62
|
+
lint_roller (1.1.0)
|
63
|
+
listen (3.9.0)
|
64
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
65
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
66
|
+
logger (1.7.0)
|
67
|
+
minitest (5.25.5)
|
68
|
+
mutex_m (0.3.0)
|
69
|
+
parallel (1.27.0)
|
70
|
+
parser (3.3.8.0)
|
71
|
+
ast (~> 2.4.1)
|
72
|
+
racc
|
73
|
+
pp (0.6.2)
|
74
|
+
prettyprint
|
75
|
+
prettyprint (0.2.0)
|
76
|
+
prism (1.4.0)
|
77
|
+
psych (5.2.3)
|
78
|
+
date
|
79
|
+
stringio
|
80
|
+
racc (1.8.1)
|
81
|
+
rainbow (3.1.1)
|
82
|
+
rake (13.2.1)
|
83
|
+
rake-compiler (1.3.0)
|
84
|
+
rake
|
85
|
+
rake-compiler-dock (1.9.1)
|
86
|
+
rb-fsevent (0.11.2)
|
87
|
+
rb-inotify (0.11.1)
|
88
|
+
ffi (~> 1.0)
|
89
|
+
rb_sys (0.9.111)
|
90
|
+
rake-compiler-dock (= 1.9.1)
|
91
|
+
rbs (3.9.2)
|
92
|
+
logger
|
93
|
+
rdoc (6.13.1)
|
94
|
+
psych (>= 4.0.0)
|
95
|
+
regexp_parser (2.10.0)
|
96
|
+
reline (0.6.1)
|
97
|
+
io-console (~> 0.5)
|
98
|
+
rspec (3.13.0)
|
99
|
+
rspec-core (~> 3.13.0)
|
100
|
+
rspec-expectations (~> 3.13.0)
|
101
|
+
rspec-mocks (~> 3.13.0)
|
102
|
+
rspec-core (3.13.3)
|
103
|
+
rspec-support (~> 3.13.0)
|
104
|
+
rspec-expectations (3.13.3)
|
105
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
106
|
+
rspec-support (~> 3.13.0)
|
107
|
+
rspec-mocks (3.13.2)
|
108
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
109
|
+
rspec-support (~> 3.13.0)
|
110
|
+
rspec-support (3.13.2)
|
111
|
+
rubocop (1.75.2)
|
112
|
+
json (~> 2.3)
|
113
|
+
language_server-protocol (~> 3.17.0.2)
|
114
|
+
lint_roller (~> 1.1.0)
|
115
|
+
parallel (~> 1.10)
|
116
|
+
parser (>= 3.3.0.2)
|
117
|
+
rainbow (>= 2.2.2, < 4.0)
|
118
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
119
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
120
|
+
ruby-progressbar (~> 1.7)
|
121
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
122
|
+
rubocop-ast (1.44.1)
|
123
|
+
parser (>= 3.3.7.2)
|
124
|
+
prism (~> 1.4)
|
125
|
+
ruby-progressbar (1.13.0)
|
126
|
+
securerandom (0.4.1)
|
127
|
+
steep (1.10.0)
|
128
|
+
activesupport (>= 5.1)
|
129
|
+
concurrent-ruby (>= 1.1.10)
|
130
|
+
csv (>= 3.0.9)
|
131
|
+
fileutils (>= 1.1.0)
|
132
|
+
json (>= 2.1.0)
|
133
|
+
language_server-protocol (>= 3.17.0.4, < 4.0)
|
134
|
+
listen (~> 3.0)
|
135
|
+
logger (>= 1.3.0)
|
136
|
+
mutex_m (>= 0.3.0)
|
137
|
+
parser (>= 3.1)
|
138
|
+
rainbow (>= 2.2.2, < 4.0)
|
139
|
+
rbs (~> 3.9)
|
140
|
+
securerandom (>= 0.1)
|
141
|
+
strscan (>= 1.0.0)
|
142
|
+
terminal-table (>= 2, < 5)
|
143
|
+
uri (>= 0.12.0)
|
144
|
+
stringio (3.1.7)
|
145
|
+
strscan (3.1.3)
|
146
|
+
terminal-table (4.0.0)
|
147
|
+
unicode-display_width (>= 1.1.1, < 4)
|
148
|
+
thor (1.3.2)
|
149
|
+
tzinfo (2.0.6)
|
150
|
+
concurrent-ruby (~> 1.0)
|
151
|
+
unicode-display_width (3.1.4)
|
152
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
153
|
+
unicode-emoji (4.0.4)
|
154
|
+
uri (1.0.3)
|
155
|
+
|
156
|
+
PLATFORMS
|
157
|
+
aarch64-linux-gnu
|
158
|
+
aarch64-linux-musl
|
159
|
+
arm-linux-gnu
|
160
|
+
arm-linux-musl
|
161
|
+
arm64-darwin
|
162
|
+
x86-linux-gnu
|
163
|
+
x86-linux-musl
|
164
|
+
x86_64-darwin
|
165
|
+
x86_64-linux-gnu
|
166
|
+
x86_64-linux-musl
|
167
|
+
|
168
|
+
DEPENDENCIES
|
169
|
+
appraisal
|
170
|
+
bump
|
171
|
+
debug
|
172
|
+
himg!
|
173
|
+
irb
|
174
|
+
rake
|
175
|
+
rake-compiler
|
176
|
+
rspec
|
177
|
+
rubocop
|
178
|
+
steep
|
179
|
+
|
180
|
+
BUNDLED WITH
|
181
|
+
2.6.7
|