spec_views 3.3.1 → 3.4.0
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d6be6b1290f526d5601ea7896dfd29bda9913888f4620b752504d6e2931ba6fa
|
4
|
+
data.tar.gz: 9d6c11ddb9c2ff9b0898f9c887a07823555732e714341680feb8dba4ecb9e020
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a120d0d9d5b5810dbc6978c191ca378118a8554eb9aaa0e391afc41605b7652292205545a74402a85ddecce82faf235aaa6195e5513bc24f3509710520928c9
|
7
|
+
data.tar.gz: ec0abff6c3d017ced148a464001bc58f9730314c8d4334122f22d29c42ec0fe61f09ea97fbb12f2fc38b2b9a543c4198f4f91167b9274c77da5aecafca6c690d
|
@@ -82,8 +82,15 @@ module SpecViews
|
|
82
82
|
redirect_to action: :index
|
83
83
|
end
|
84
84
|
|
85
|
+
def reject_all
|
86
|
+
directories.each do |dir|
|
87
|
+
dir.remove_challenger if dir.challenger?
|
88
|
+
end
|
89
|
+
redirect_to action: :index
|
90
|
+
end
|
91
|
+
|
85
92
|
def reject
|
86
|
-
|
93
|
+
directory.remove_challenger
|
87
94
|
redirect_to action: :index, challenger: :next
|
88
95
|
end
|
89
96
|
|
@@ -27,7 +27,7 @@ module SpecViews
|
|
27
27
|
end
|
28
28
|
|
29
29
|
def controller_name
|
30
|
-
splitted_description.first.gsub(/Controller(_.*)$/, 'Controller').gsub(/Controller$/, '')
|
30
|
+
splitted_description.first.gsub(/Controller(_.*)$/, 'Controller').gsub(/Controller$/, '')
|
31
31
|
end
|
32
32
|
|
33
33
|
def method
|
@@ -38,13 +38,12 @@
|
|
38
38
|
<div class="footer">
|
39
39
|
<div class="info"></div>
|
40
40
|
<div class="actions">
|
41
|
-
<% if @directories.any?(&:challenger?) %>
|
42
|
-
<%= link_to 'Batch Diff', url_for(action: :batch), class: 'diff btn' %>
|
43
|
-
<% end %>
|
44
41
|
<% if @directories.any?{ |dir| dir.last_run < @latest_run } %>
|
45
42
|
<%= button_to 'Remove Outdated', url_for(action: :destroy_outdated), method: :delete, class: 'reject' %>
|
46
43
|
<% end %>
|
47
44
|
<% if @directories.any?(&:challenger?) %>
|
45
|
+
<%= link_to 'Batch Diff', url_for(action: :batch), class: 'diff btn' %>
|
46
|
+
<%= button_to 'Reject All', url_for(action: :reject_all), method: :post, class: 'reject' %>
|
48
47
|
<%= button_to 'Accept All', url_for(action: :accept_all), method: :post, class: 'accept' %>
|
49
48
|
<% end %>
|
50
49
|
</div>
|
data/config/routes.rb
CHANGED
data/lib/spec_views/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spec_views
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sebastian Gaul
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: diff-lcs
|