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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8a6695df770d40dfaff82ecab8bc78d0c8094be1c1bb5396a3065627394d3b2a
4
- data.tar.gz: 816e133bd3c262c8ca33f77b1d2629e11f3980a14a903111b93d22fb1c7d8f66
3
+ metadata.gz: 2c8e94ec51585b2d83c118eadff000068b305f42e4517a92178ad5c4f6eaa71b
4
+ data.tar.gz: d927ccfdfa4cf67c4ea577ef7fc9683ffd99e7643e9e52d8b3c05138a8f596e9
5
5
  SHA512:
6
- metadata.gz: 0524dceb140d2e07286d2cac1adfde6d4c24a1b4f10b9103cd0509b0475551e263e14e2deb51c530961f8c5092ff06469723373eb1f391aaaaa862a26bbe311c
7
- data.tar.gz: 2ffc3f8ddacc5ce63232670febdb4223f968760ce9da686c20553fd6cfc9b75150b7d2c9cbfffafe2cf865f4745b6a238a61c17ea70343d09085943bbca776a4
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!
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsSettlement
4
- VERSION = "1.3.0"
4
+ VERSION = "1.3.1"
5
5
  end
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.0
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-20 00:00:00.000000000 Z
11
+ date: 2024-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord