sudo_rails 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +3 -1
- data/app/assets/stylesheets/sudo_rails/application.scss +13 -2
- data/app/controllers/sudo_rails/application_controller.rb +3 -1
- data/app/views/layouts/sudo_rails/application.html.erb +4 -1
- data/app/views/sudo_rails/_flash_alert.html.erb +5 -0
- data/app/views/sudo_rails/_inject_custom_styles.html.erb +6 -1
- data/config/locales/en.yml +1 -0
- data/lib/sudo_rails/engine.rb +1 -1
- data/lib/sudo_rails/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cde0b8c08400028fee437eac2352ebfeb2676209ef14fc55ce1da3f407a10072
|
4
|
+
data.tar.gz: 5d150b96bc25cc3366d2d498a4883a3e0a75c56b80b400b35f985791eb27aca4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b7fd91b40ad9d1659943ad5ebcb2a160462aa1bc019d1c332a7f36bf82cd7ea404336523c14e4b40d0ee6d6efafb61433407e6d6160e653da40a4673e13d9b0
|
7
|
+
data.tar.gz: f16c2166aea71899e9b7c8f051ee991e9bbe1e17a18366b16db48b55f029f4a76124f5bccbdf4d02626a4526f8f7d620a5bdced0370caaff5e27383567d10181
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Sudo Rails
|
2
2
|
|
3
3
|
[![Gem](https://img.shields.io/gem/v/sudo_rails.svg?style=flat-square)](https://rubygems.org/gems/sudo_rails)
|
4
|
-
[![Build Status](https://travis-ci.
|
4
|
+
[![Build Status](https://travis-ci.com/markets/sudo_rails.svg?branch=master)](https://travis-ci.com/markets/sudo_rails)
|
5
5
|
[![Maintainability](https://api.codeclimate.com/v1/badges/322350adc7ab052beccb/maintainability)](https://codeclimate.com/github/markets/sudo_rails/maintainability)
|
6
6
|
|
7
7
|
> Sudo mode for your Rails controllers
|
@@ -83,6 +83,8 @@ Using the `custom_logo`, `primary_color` and `background_color` options, you can
|
|
83
83
|
|
84
84
|
See some [examples here](support/images/).
|
85
85
|
|
86
|
+
**NOTE** If you are using your own layout, don't forget to render the flash messages in that layout. You can do something like [this](app/views/sudo_rails/_flash_alert.html.erb).
|
87
|
+
|
86
88
|
### Confirmation strategy
|
87
89
|
|
88
90
|
You should define how to validate the password using the `confirm_strategy` option. It must be a `lambda`, which will receive 2 arguments: the controller instance (`context`) and the password from the user.
|
@@ -2,7 +2,7 @@ body {
|
|
2
2
|
text-align: center;
|
3
3
|
font-family: Helvetica, Arial, sans-serif;
|
4
4
|
background-color: #ececec;
|
5
|
-
|
5
|
+
margin: 0 auto;
|
6
6
|
}
|
7
7
|
|
8
8
|
a {
|
@@ -13,6 +13,10 @@ input {
|
|
13
13
|
-webkit-appearance: none;
|
14
14
|
}
|
15
15
|
|
16
|
+
.sudo-container {
|
17
|
+
transform: translateY(25%);
|
18
|
+
}
|
19
|
+
|
16
20
|
.sudo-header {
|
17
21
|
margin: 2em auto;
|
18
22
|
|
@@ -54,4 +58,11 @@ input {
|
|
54
58
|
.sudo-tip {
|
55
59
|
margin-top: 2em;
|
56
60
|
font-size: 14px;
|
57
|
-
}
|
61
|
+
}
|
62
|
+
|
63
|
+
.sudo-alert {
|
64
|
+
background: #000;
|
65
|
+
color: #fff;
|
66
|
+
padding: 10px;
|
67
|
+
font-weight: bold;
|
68
|
+
}
|
@@ -3,8 +3,10 @@ module SudoRails
|
|
3
3
|
before_action :sudo_enabled?
|
4
4
|
|
5
5
|
def confirm
|
6
|
-
if
|
6
|
+
if SudoRails.confirm?(self, params[:password])
|
7
7
|
session[:sudo_session] = Time.zone.now.to_s
|
8
|
+
else
|
9
|
+
flash[:alert] = I18n.t('sudo_rails.invalid_pass')
|
8
10
|
end
|
9
11
|
|
10
12
|
redirect_to params[:target_path]
|
@@ -4,6 +4,11 @@
|
|
4
4
|
background-color: <%= SudoRails.background_color %>;
|
5
5
|
color: <%= SudoRails.color_contrast(SudoRails.background_color) %>;
|
6
6
|
}
|
7
|
+
|
8
|
+
.sudo-alert {
|
9
|
+
background-color: <%= SudoRails.color_contrast(SudoRails.background_color) %>;
|
10
|
+
color: <%= SudoRails.background_color %>;
|
11
|
+
}
|
7
12
|
<% end %>
|
8
13
|
|
9
14
|
<% if SudoRails.primary_color.present? %>
|
@@ -16,4 +21,4 @@
|
|
16
21
|
color: <%= SudoRails.color_contrast(SudoRails.primary_color) %>;
|
17
22
|
}
|
18
23
|
<% end %>
|
19
|
-
</style>
|
24
|
+
</style>
|
data/config/locales/en.yml
CHANGED
data/lib/sudo_rails/engine.rb
CHANGED
data/lib/sudo_rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sudo_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- markets
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-12-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -65,6 +65,7 @@ files:
|
|
65
65
|
- app/assets/stylesheets/sudo_rails/application.scss
|
66
66
|
- app/controllers/sudo_rails/application_controller.rb
|
67
67
|
- app/views/layouts/sudo_rails/application.html.erb
|
68
|
+
- app/views/sudo_rails/_flash_alert.html.erb
|
68
69
|
- app/views/sudo_rails/_inject_custom_styles.html.erb
|
69
70
|
- app/views/sudo_rails/confirm_form.html.erb
|
70
71
|
- config/locales/en.yml
|
@@ -94,8 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
95
|
- !ruby/object:Gem::Version
|
95
96
|
version: '0'
|
96
97
|
requirements: []
|
97
|
-
|
98
|
-
rubygems_version: 2.7.6
|
98
|
+
rubygems_version: 3.0.3
|
99
99
|
signing_key:
|
100
100
|
specification_version: 4
|
101
101
|
summary: Sudo mode for Rails
|