ar_virtual_field 0.2.0 → 0.4.0

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: 4bc36de74baf180585250fba41a3455b659c685f46b9f76df2473002a03e72eb
4
- data.tar.gz: 04fda5b2429c32f18cee4b162395e901be8c33932d6dab2ab477770c9841013b
3
+ metadata.gz: 96ceb9c69afbfc00eb75bc1691516f8ad7c3cb2aea3a4e51bd2fc9beac2bbd81
4
+ data.tar.gz: d124facbe4f4ca52e3eb2272c057883e5805db4219466f34792347d36d99257e
5
5
  SHA512:
6
- metadata.gz: c9c275c2f918cd913e20b8d4b2b4fdddf4c07af3dab633498b17c2062ea26c0daafa320b5a0f5927bed140c5db9fed2f0a7c19b1ffa5ef61f61bf557416b6723
7
- data.tar.gz: 595e261467947fbd77ec055dcb80300ce61de28107928083731c66f02e34eb93f31395114d8d8686cd3f31b031ba316dca0e042bcf1d283224dde3040687d110
6
+ metadata.gz: 11b6d4800d29f4ffbae7db65c65919d77aa55550ee05b29567aa4d8a58bc3da68bbb3f49d2b4d1f59f03a42979ad5b7693629c7f12902a78e5558a5ed4123eab
7
+ data.tar.gz: 1e2f0e7fdb8e74a606ad6859ff8d3cd7703f94ea551a4f65ae80290e0185bc87dc17b1e59d2eee2298c560aeace5c1bf38053cd7b4a260dad6383c7b7173c113
data/README.md CHANGED
@@ -29,9 +29,9 @@ virtual_field :virtual_attribute,
29
29
  Parameters:
30
30
  - `name`: The name of the virtual field.
31
31
  - `scope`: A lambda defining a scope that fetches the virtual field value (optional).
32
- - `select`: SQL selection logic (can be a string or a lambda returning an SQL string) to define how the field is computed.
32
+ - `select`: SQL selection logic (can be a `string | arel_node` or a lambda returning an SQL `string | arel_node`) to define how the field is computed.
33
33
  - `get`: A method to retrieve the value of the virtual field when the field isn't fetched via SQL.
34
- - `default`: A default value for the virtual field if the result is nil.
34
+ - `default`: A default value for the virtual field if the result is nil (optional).
35
35
 
36
36
  Example:
37
37
 
@@ -60,6 +60,16 @@ User.with_total_orders.where(total_orders: 5)
60
60
 
61
61
  This will include the total_orders virtual field in the SQL query and allow filtering by it.
62
62
 
63
+ ### Also it can be used without scope:
64
+
65
+ ```ruby
66
+ class User < ApplicationRecord
67
+ virtual_field :fullname,
68
+ select: -> { "name || surname" },
69
+ get: -> { "#{name}#{surname}" }
70
+ end
71
+ ```
72
+
63
73
  ## Development
64
74
 
65
75
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ArVirtualField
4
- VERSION = "0.2.0"
4
+ VERSION = "0.4.0"
5
5
  end
@@ -11,7 +11,7 @@ module ArVirtualField
11
11
  end
12
12
  end
13
13
 
14
- def virtual_field(name, scope:, select: nil, get:, default:)
14
+ def virtual_field(name, scope: nil, select:, get:, default: nil)
15
15
  name = name.to_s
16
16
  current_class = self
17
17
  unwrap_arel_expression = -> (exp) { exp.is_a?(Arel::Nodes::NodeExpression) ? exp : Arel.sql(exp) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ar_virtual_field
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Egorov