lato_users 3.0.0 → 3.0.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: b87e863ea43eda9714f7f1322e2765405ea8dce78ef8782aadff894dbb459d77
4
- data.tar.gz: 2fe7688ff2e8672ccb38e78bb69d69cf73b97f9edb4b33783ea2ae38cb7d5a11
3
+ metadata.gz: e9f9dedaefbe6fb54d4b4ef0d4907843d6ed0ca45296e7016463e630c5563704
4
+ data.tar.gz: 7ee2b21f84d6b4dadc94e0d6fad7c6c8f18f63775007f5fccf4e51460daeb80c
5
5
  SHA512:
6
- metadata.gz: 699e2b36913d0904525a54fb7e424b594a8924e8db9c462b1d6e11ea7ce3cca8fc09d85f4139825584a2838740fb42bd0731f6d1bcaa154be3f156e73e084211
7
- data.tar.gz: 2dca85f420d6ad80e0f5528471c044cd9760ff12e8e11caef54842fd7a2f08eb8769c24669307c1cc0e63d4f93f76393c603fa98f9a309026ccf38fa2afe5d57
6
+ metadata.gz: a17e1c0bd84352b493a3f27a7ea13f9397571167a9cbffb6f944a862a87373c4c9a429a977232b6f254b6c7a7d726a69462593b333cce67a316e2d920991b109
7
+ data.tar.gz: 3db3c791dbf9c8cd2d4ff1457a88954cd0101dcf4b1e37cd70a56e0ad5781e02401139425c5a6b6ca246dfb14cdaf067930ae1591397323b841b6c2e7385a070
data/Rakefile CHANGED
@@ -3,6 +3,4 @@ require "bundler/setup"
3
3
  APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
4
4
  load "rails/tasks/engine.rake"
5
5
 
6
- load "rails/tasks/statistics.rake"
7
-
8
6
  require "bundler/gem_tasks"
@@ -17,13 +17,13 @@
17
17
  <%= button_to I18n.t('lato_users.revoke_verification'), revoke_email_verification_user_path(@user), method: :patch, class: "btn btn-danger btn-sm", form: { data: { turbo_confirm: I18n.t('lato_users.are_you_sure') } } %>
18
18
  </div>
19
19
  <% else %>
20
- <div class="d-flex flex-column flex-md-row align-items-md-center justify-content-between p-3 bg-warning bg-opacity-10 border border-warning rounded">
20
+ <div class="d-flex flex-column flex-md-row align-items-md-center justify-content-between p-3 bg-danger bg-opacity-10 border border-danger rounded">
21
21
  <div class="d-flex align-items-center mb-3 mb-md-0">
22
- <div class="me-3 text-warning">
22
+ <div class="me-3 text-danger">
23
23
  <i class="bi bi-exclamation-triangle-fill fs-4"></i>
24
24
  </div>
25
25
  <div>
26
- <h5 class="fs-6 fw-bold text-warning mb-0"><%= I18n.t('lato_users.email_not_verified') %></h5>
26
+ <h5 class="fs-6 fw-bold text-danger mb-0"><%= I18n.t('lato_users.email_not_verified') %></h5>
27
27
  <small class="text-muted"><%= I18n.t('lato_users.email_verification_required') %></small>
28
28
  </div>
29
29
  </div>
@@ -15,12 +15,12 @@
15
15
  <span class="fw-bold"><%= Lato.config.legal_privacy_policy_version %></span>
16
16
  </p>
17
17
  <% if @user.accepted_privacy_policy_version < Lato.config.legal_privacy_policy_version %>
18
- <div class="d-flex align-items-center p-3 bg-warning bg-opacity-10 border border-warning rounded">
19
- <div class="me-3 text-warning">
18
+ <div class="d-flex align-items-center p-3 bg-danger bg-opacity-10 border border-danger rounded">
19
+ <div class="me-3 text-danger">
20
20
  <i class="bi bi-exclamation-triangle-fill fs-4"></i>
21
21
  </div>
22
22
  <div>
23
- <h5 class="fs-6 fw-bold text-warning mb-0"><%= I18n.t('lato_users.version_outdated') %></h5>
23
+ <h5 class="fs-6 fw-bold text-danger mb-0"><%= I18n.t('lato_users.version_outdated') %></h5>
24
24
  </div>
25
25
  </div>
26
26
  <% else %>
@@ -46,12 +46,12 @@
46
46
  <span class="fw-bold"><%= Lato.config.legal_terms_and_conditions_version %></span>
47
47
  </p>
48
48
  <% if @user.accepted_terms_and_conditions_version < Lato.config.legal_terms_and_conditions_version %>
49
- <div class="d-flex align-items-center p-3 bg-warning bg-opacity-10 border border-warning rounded">
50
- <div class="me-3 text-warning">
49
+ <div class="d-flex align-items-center p-3 bg-danger bg-opacity-10 border border-danger rounded">
50
+ <div class="me-3 text-danger">
51
51
  <i class="bi bi-exclamation-triangle-fill fs-4"></i>
52
52
  </div>
53
53
  <div>
54
- <h5 class="fs-6 fw-bold text-warning mb-0"><%= I18n.t('lato_users.version_outdated') %></h5>
54
+ <h5 class="fs-6 fw-bold text-danger mb-0"><%= I18n.t('lato_users.version_outdated') %></h5>
55
55
  </div>
56
56
  </div>
57
57
  <% else %>
@@ -1,3 +1,3 @@
1
1
  module LatoUsers
2
- VERSION = "3.0.0"
2
+ VERSION = "3.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lato_users
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregorio Galante