rails_settlement 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -2
- data/lib/rails_settlement/version.rb +1 -1
- 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: 2c8e94ec51585b2d83c118eadff000068b305f42e4517a92178ad5c4f6eaa71b
|
4
|
+
data.tar.gz: d927ccfdfa4cf67c4ea577ef7fc9683ffd99e7643e9e52d8b3c05138a8f596e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72504a32b9a063436ed05d73fa9e4f372e4339e63a42edb46f43064dfa8526206be729d203e0b428b2fe656ffa8cdc3387c2ced7772b792506df5f76c193869c
|
7
|
+
data.tar.gz: ed367d3d88d16264714db216cc995e27b83346f4d24d9ecadc744df67b3aa7e92773ee9f3af977f4c778ec449172dee34ca16c1b3850984c50aef54d05bb6418
|
data/README.md
CHANGED
@@ -25,6 +25,12 @@ class UsersController < ApplicationController
|
|
25
25
|
# set_user scope_to: :is_active, only: %i[show] #=> User.is_active.find_by
|
26
26
|
# set_user! scope_to: %i[is_active is_admin] #=> User.is_active.is_admin.find_by
|
27
27
|
|
28
|
+
# You can also set a namespace for the model with the `namespace` option. It can be a string or a symbol.
|
29
|
+
# Suppose you have a model 'Admin::User', you can define:
|
30
|
+
# set_user namespace: :admin, ...
|
31
|
+
# If you have a model that's nested more than once, like 'Admin::Account::User', you can define as:
|
32
|
+
# set_user namespace: 'admin/account', ...
|
33
|
+
|
28
34
|
def show
|
29
35
|
do_something with: user # You also have an attribute reader with the same name available if the object is found. If not, it defaults to nil (unless a bang method is used, in which case an error is raised!)
|
30
36
|
end
|
@@ -47,6 +53,4 @@ end
|
|
47
53
|
|
48
54
|
This approach allows you to use any model instead of a `User`. Just follow the naming convention set_[model_name_in_snake_case]!.
|
49
55
|
|
50
|
-
Note: This implementation does not support STI or any Namespaced models. If you have a solution to make them work, please submit a pull request!
|
51
|
-
|
52
56
|
That's about it!
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_settlement
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tejas
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|