asbru 0.0.5 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/asbru/form_builder.rb +9 -2
- data/lib/asbru/links.rb +5 -4
- data/lib/asbru/version.rb +1 -1
- data/lib/asbru.rb +3 -2
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10f68d4052614b4607afdfc06092f1cca7b1c30bc6c887fb495f4eefc82dfafd
|
4
|
+
data.tar.gz: 7ee326d3b5185d510042f8aaf5453a4351d39feb19a0239c3f98e87e7ac99239
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4202a50c75d6d622f096371ba25bee957c03d3a45482af3183d46716798173f88e3b98f1cb4aa9ccb74a315c0fd11feed697e6968cd3bb9aec9c2e0c9b17c3db
|
7
|
+
data.tar.gz: 2326874f64e8ae9d1baa85c1ee7a7c3afb4e399be70e6849249ecd1c0fd6b21e14ae6296986ff809c975949ccd4c40ff730d4e4ad48bc7d792af0e0983a56024
|
data/lib/asbru/form_builder.rb
CHANGED
@@ -54,10 +54,11 @@ module Asbru
|
|
54
54
|
end
|
55
55
|
|
56
56
|
def render_form_element(attribute, options)
|
57
|
-
new_options = options.
|
57
|
+
new_options = options.reverse_merge(
|
58
58
|
{
|
59
59
|
name: tag_name_for(attribute),
|
60
|
-
errors: errors(attribute)
|
60
|
+
errors: errors(attribute),
|
61
|
+
errorIcon: error_icon
|
61
62
|
}
|
62
63
|
)
|
63
64
|
|
@@ -210,5 +211,11 @@ module Asbru
|
|
210
211
|
)
|
211
212
|
)
|
212
213
|
end
|
214
|
+
|
215
|
+
private
|
216
|
+
|
217
|
+
def error_icon
|
218
|
+
Asbru.config.default_form_error_icon
|
219
|
+
end
|
213
220
|
end
|
214
221
|
end
|
data/lib/asbru/links.rb
CHANGED
@@ -7,9 +7,9 @@ module Asbru
|
|
7
7
|
url,
|
8
8
|
method: nil,
|
9
9
|
link: true,
|
10
|
+
remote: false,
|
10
11
|
confirm: nil,
|
11
12
|
**options)
|
12
|
-
|
13
13
|
options[:text] = text
|
14
14
|
options[:action] = url
|
15
15
|
options[:link] = link
|
@@ -17,10 +17,11 @@ module Asbru
|
|
17
17
|
options[:customData] = {}
|
18
18
|
options[:customData][:'data-method'] = method if method.present?
|
19
19
|
options[:customData][:'data-confirm'] = confirm if confirm.present?
|
20
|
-
options[:customData]
|
21
|
-
|
20
|
+
options[:customData][:'data-remote'] = remote if remote.present?
|
21
|
+
options[:customData].merge!(options[:custom_data]) if options[:custom_data]
|
22
|
+
|
23
|
+
Asbru::Components::Savage.send "#{Asbru.config.component_prefix}_button",
|
22
24
|
**options
|
23
|
-
Asbru.config.component_prefix
|
24
25
|
end
|
25
26
|
|
26
27
|
def asbru_link_to(text, url, **options)
|
data/lib/asbru/version.rb
CHANGED
data/lib/asbru.rb
CHANGED
@@ -3,6 +3,7 @@ require 'dry-configurable'
|
|
3
3
|
|
4
4
|
module Asbru
|
5
5
|
extend Dry::Configurable
|
6
|
-
setting :component_prefix,'app'
|
7
|
-
setting :form_builder_prefix, 'app'
|
6
|
+
setting :component_prefix, default: 'app'
|
7
|
+
setting :form_builder_prefix, default: 'app'
|
8
|
+
setting :default_form_error_icon, default: 'icon-error'
|
8
9
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: asbru
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stev-0
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
55
69
|
description: Creating component based webpages with short hand syntax.
|
56
70
|
email:
|
57
71
|
- skemp@adflow.io
|
@@ -94,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
108
|
- !ruby/object:Gem::Version
|
95
109
|
version: '0'
|
96
110
|
requirements: []
|
97
|
-
rubygems_version: 3.
|
111
|
+
rubygems_version: 3.2.15
|
98
112
|
signing_key:
|
99
113
|
specification_version: 4
|
100
114
|
summary: Asbru is a tool for creating component based webpages.
|