This repository has been archived by the owner on May 22, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
status.html.erb
51 lines (49 loc) · 1.54 KB
/
status.html.erb
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
<html>
<head>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="content">
<div class="header">
<h1>Solidus extension compatibility</h1>
<p>
These extensions are maintained by solidus core team and community. They can be found in the
<a href="https://github.com/solidusio">solidusio</a>
and
<a href="https://github.com/solidusio-contrib">solidusio-contrib</a>
github organizations.
These gems regularly have their tests re-run to ensure everything remains compatible.
</p>
<p>
You might also want to check out <a href="http://soliton.nebulab.it/">Soliton</a>, a solidus extension search coutesy of <a href="http://nebulab.it/">Nebulab</a>.
</p>
<p>
One of the goals of Solidus is to have a single extension versions work across several versions of solidus. This is how we're doing:
</p>
</div>
<label for="showOld">Show older versions</label>
<input type="checkbox" id="showOld" />
<table class="statuses">
<thead>
<tr>
<th></th>
<th></th>
<% VERSIONS.each do |version| %>
<th class="version <%= "hide-old" if OLD_VERSIONS.include?(version) %>">
Solidus <%= version %>
</th>
<% end %>
</tr>
</thead>
<tbody>
<% PROJECTS.each do |project| %>
<%= project.render %>
<% end %>
</tbody>
</table>
</div>
<footer>
Last updated <%= Time.now.utc.to_s %>
</footer>
</body>
</html>