rollout-ui 0.7.0 → 0.7.1
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 +4 -4
- data/lib/rollout/ui/version.rb +1 -1
- data/lib/rollout/ui/views/features/partials/event_log.slim +11 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f52e6f2464930c297ee97dfa2e73771ef20dc1c345186582c4f211ddc16a9bc
|
4
|
+
data.tar.gz: 72b761a78d4607396ee71860ff9d5f36fd57563fcba018e34ed374fc308dd3d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c9a1eec0c0b71f92458be1f494a99098aa1a7d8bce482c47f45f90de8566dcc2643e97bf2f8bad90c209456dd459e8d462c4edae804e31fc6283bc2f14836f19
|
7
|
+
data.tar.gz: c9e5d5ddaea0f7cb5302d67f7f4b3e709ee63b916a5a2aa7f2b7075af8a3034f2bfca0d00b7cb634082bb5319f03a727d688ab84109d431922edfb9122dee520
|
data/lib/rollout/ui/version.rb
CHANGED
@@ -7,22 +7,22 @@
|
|
7
7
|
.w-8.h-1.bg-gray-300.my-10
|
8
8
|
|
9
9
|
.overflow-auto.scrolling-touch
|
10
|
-
table.text-sm.w-100.text-left.w-full
|
10
|
+
table.text-sm.w-100.text-left.w-full
|
11
11
|
- if show_header
|
12
12
|
thead.font-semibold.text-gray-600.border-b.border-gray-200
|
13
13
|
- if show_feature
|
14
|
-
th.pb-2.pr-3.
|
15
|
-
th.pb-2.pr-3.w-
|
16
|
-
th.pl-2.
|
14
|
+
th.pb-2.pr-3.whitespace-nowrap Feature
|
15
|
+
th.pb-2.pr-3.w-full Action
|
16
|
+
th.pl-2.whitespace-nowrap style="min-width: 160px;"
|
17
17
|
|
18
18
|
tbody.text-gray-600.border-t.border-gray-200
|
19
19
|
- events.each do |event|
|
20
20
|
tr.border-b.border-gray-200
|
21
21
|
- if show_feature
|
22
|
-
td.py-2.
|
22
|
+
td.py-2.pr-3.whitespace-nowrap
|
23
23
|
a.text-blue-600(href=feature_path(event.feature) class='hover:text-blue-700 hover:underline')
|
24
24
|
= event.feature
|
25
|
-
td.py-2.pr-3.
|
25
|
+
td.py-2.pr-3.break-words.w-full
|
26
26
|
- if event.name == "update"
|
27
27
|
- if event.context && event.context[:actor]
|
28
28
|
- if config.defined?(:actor_url)
|
@@ -38,9 +38,12 @@
|
|
38
38
|
- "#{format_change_key(key)} from #{before} to #{after}"
|
39
39
|
|
40
40
|
' changed
|
41
|
-
|
41
|
+
- unless changes.empty?
|
42
|
+
= changes.join(', ')
|
43
|
+
- else
|
44
|
+
' nothing!
|
42
45
|
- else
|
43
46
|
= event.data
|
44
47
|
|
45
|
-
td.py-2.text-right.whitespace-nowrap.pl-3
|
48
|
+
td.py-2.text-right.whitespace-nowrap.pl-3 style="min-width: 160px;"
|
46
49
|
span title=event.created_at.strftime(Rollout::UI.config.timestamp_format) = time_ago(event.created_at)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rollout-ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- FetLife
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rollout
|