rails_base 0.81.0 → 0.81.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e6dfb9b0dfa087ba1c2378c08703360360da41dfc5f676feb29c94a3542cfaf
4
- data.tar.gz: 0bae19f4b8e3b06b42b3b7d91fd407028676034f5cb4c102898848747238d205
3
+ metadata.gz: ad2b9e0329bfb6ecaea13ee52644361d0c3097a0175faeed7bdc6827ac9a58bc
4
+ data.tar.gz: 765826d474cac75927011b92d389c3d789181f2af47350915e787dc197ac74c5
5
5
  SHA512:
6
- metadata.gz: e4c16fdf660ed93e2672208de8b86c0b766f374defb44cd3259ee96441071b8e1821246a766d6b2237c95250c6e3c21c1858eeeeb714079f1993aa13016676fd
7
- data.tar.gz: fe5cd28864e828717ddf81a3fbfc3c0af190e4ca888154ad3af177fc8ca67e2bc9c908e29e6215e7e675533fdc005082a30de09bd27f25f25ad997adede714c5
6
+ metadata.gz: 2f7d2a8717ecc17fb0f0c17da71f63551828f64a76711967fce110266988c9d63eda2f13060a0ef3971d0ebea86c5e8a427c5c2564a39eef2800cb58cb8981c8
7
+ data.tar.gz: de07cf26df1b30341ae5b4d7f0d55c73cbdbee8958a178b47e1569f8e415890cf406f4bc0ebb61ff1c85ff52eddaa1ce5eb6cc2d8fddeab226c7738e3fb02594
@@ -4,9 +4,12 @@
4
4
  <%= text %>
5
5
  </div>
6
6
  <div class="col-md-6">
7
- <% dupped = RailsBase::RequestLink.items.dup %>
7
+ <%
8
+ dupped = RailsBase::RequestLink.items.dup
9
+ %>
10
+
8
11
  <% while(link = dupped.shift) do %>
9
- <%= link_to link.text, link.link, method: :get, class: "btn btn-light float-right" %>
12
+ <%= link_to link.text, link.link, method: :get, class: "btn btn-light float-right", style: "margin-right: 0.5em;" %>
10
13
  <% end %>
11
14
  </div>
12
15
  <button type="button" class="close" data-dismiss="alert" aria-label="Close">
@@ -26,12 +29,19 @@
26
29
  <button type="button" class="close" data-dismiss="alert" aria-label="Close">
27
30
  <span aria-hidden="true">&times;</span>
28
31
  </button>
29
- <% while(link = RailsBase::RequestLink.items.shift) do %>
32
+ <% link = RailsBase::RequestLink.items.shift %>
33
+ <% while(link) do %>
30
34
  <div class="row">
31
35
  <div class="col-12">
32
36
  <%= link_to link.text, link.link, method: :get, class: "btn btn-light btn-block" %>
33
37
  </div>
34
38
  </div>
39
+ <% link = RailsBase::RequestLink.items.shift %>
40
+ <% if link %>
41
+ <div class="row"><div class="col-6 offset-3">
42
+ <hr>
43
+ </div></div>
44
+ <% end %>
35
45
  <% end %>
36
46
  </div>
37
47
 
@@ -1,7 +1,7 @@
1
1
  module RailsBase
2
2
  MAJOR = "0"
3
3
  MINOR = "81"
4
- PATCH = "0"
4
+ PATCH = "1"
5
5
  VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}"
6
6
 
7
7
  def self.print_version
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_base
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.81.0
4
+ version: 0.81.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Taylor