tablesalt 0.10.1 → 0.10.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/tablesalt/dsl/defaults.rb +38 -0
- data/lib/tablesalt/version.rb +1 -1
- data/lib/tablesalt.rb +2 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a7b0424fb3fc3453959d0d62bcb685dbe6fd58b95683cf74b6ce3138fd7ac4d1
|
4
|
+
data.tar.gz: 5937fe4f663ef07913e65d35b0f6d9b256a5fec554eef0c7561b638edc28af7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8729233e2e6b92e8f6fb91231be61806d8809ba6b8cdcf214ea5889bc061b24bdd82715110f0463d49cfe128c1dacc9caca6ad4e8be0955613484caeab8d3033
|
7
|
+
data.tar.gz: 39cce85dbf06863842cf9e6468f849d7729f2badf0baedda8b7c53cb174cd0f79d2eb186f29efe819e9f884dc715cbabc6e7015e620efcb75cedee24f4ea2f54
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Defaults allow for storing values to use when none are specified by the developer.
|
4
|
+
module Tablesalt
|
5
|
+
module Dsl
|
6
|
+
module Defaults
|
7
|
+
extend ActiveSupport::Concern
|
8
|
+
|
9
|
+
included do
|
10
|
+
class_attribute :_defaults, instance_writer: false, default: {}
|
11
|
+
end
|
12
|
+
|
13
|
+
class_methods do
|
14
|
+
def inherited(base)
|
15
|
+
dup = _defaults.dup
|
16
|
+
base._defaults = dup.each { |k, v| dup[k] = v.dup }
|
17
|
+
super
|
18
|
+
end
|
19
|
+
|
20
|
+
private
|
21
|
+
|
22
|
+
def define_default(attribute, static: nil, &block)
|
23
|
+
_defaults[attribute] = Value.new(static: static, &block)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
class Value
|
28
|
+
def initialize(static: nil, &block)
|
29
|
+
@value = (static.nil? && block_given?) ? block : static
|
30
|
+
end
|
31
|
+
|
32
|
+
def value
|
33
|
+
(@value.respond_to?(:call) ? instance_eval(&@value) : @value).dup
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
data/lib/tablesalt/version.rb
CHANGED
data/lib/tablesalt.rb
CHANGED
@@ -1,10 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "active_support"
|
4
|
+
require "active_support/core_ext/class/attribute"
|
4
5
|
require "short_circu_it"
|
5
6
|
|
6
7
|
require "tablesalt/version"
|
7
8
|
|
9
|
+
require "tablesalt/dsl/defaults"
|
8
10
|
require "tablesalt/stringable_object"
|
9
11
|
|
10
12
|
module Tablesalt; end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tablesalt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jordan Minneti
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-05-
|
11
|
+
date: 2019-05-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -49,6 +49,7 @@ files:
|
|
49
49
|
- LICENSE.txt
|
50
50
|
- README.md
|
51
51
|
- lib/tablesalt.rb
|
52
|
+
- lib/tablesalt/dsl/defaults.rb
|
52
53
|
- lib/tablesalt/stringable_object.rb
|
53
54
|
- lib/tablesalt/version.rb
|
54
55
|
homepage: https://github.com/Freshly/spicerack/tree/master/tablesalt
|