calculable_attrs 0.0.2 → 0.0.3

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
  SHA1:
3
- metadata.gz: 29b013d46b1eda78f5b0032bb59662a40ea920fc
4
- data.tar.gz: 4410bf96fc63ce202ecfb1e40084078adddc9565
3
+ metadata.gz: 887402e058e4bc543208395b37ad7dbd5e0af021
4
+ data.tar.gz: 19407cef804ab024d57763594207900aea24fbb2
5
5
  SHA512:
6
- metadata.gz: d3c8a9d3e4893577e94cdd16157f92b7ec841da83eff1f773fb7e661412ea18a44a7238c281f4000cd54cb16f068f9c29f04635a5129a68ceb91ca25bf2d350e
7
- data.tar.gz: 50e135f1ce8bbfff3171781e038987b265b90623e6d97602ffd0b505f0182e65cfab67094b517217ec876e689531f72d02867a25f4b0044eb46901b46b7f38d7
6
+ metadata.gz: dac73b54dd6eedaefcc0e90bf483e9f93d583d8738334d6b7885a1fcb02d02326e4ae6bf210ea3d6b7129d57b717b684b2042a0421218fb1092207be138f591f
7
+ data.tar.gz: b6acadcff18bd5dc2e9c6e291cd00c279e8605e6249c38a4a91e68578d957d1a64fb9e8a40a3d69438179e336e2b3590f2ebb0c3903d255c41eec9a379b69516
@@ -1,3 +1,3 @@
1
1
  module CalculableAttrs
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calculable_attrs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Sharkov
@@ -81,8 +81,8 @@ dependencies:
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  description: |2
84
- Imagine you an Account model which has many transactions.
85
- calculable_attrs gem allows you to define Account#blalace and SUM(transactions.amount) directly in your Account model.
84
+ Imagine you have an Account model which has many transactions.
85
+ calculable_attrs gem allows you to define Account#balance as SUM(transactions.amount) directly in your Account model.
86
86
  And solves n+1 problem for you in an elegant way.
87
87
  email:
88
88
  - dmitry.sharkov@gmail.com