asbru 0.0.3 → 0.0.7

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: cc32cdd060fac8c7239f01e479aaab3f20133ce63127c39253731e034b8d0b89
4
- data.tar.gz: 51a9bdfce5c395d16f3221c27f406665b711bf95cf59672e3dfc39e87b80a680
3
+ metadata.gz: aeb659c7586894cee347b85ddb88c84437a6f0e355051af176e07f33191a5171
4
+ data.tar.gz: 187577433b2cf87d1e0c54c295e1c815db1d9729a9536671d0b76f47776a726c
5
5
  SHA512:
6
- metadata.gz: c71bde33b206e9af7aa6d2e2eb0db00da604cbdf592f8a282489b55a7336dd179e4b8297c2237f042e4e5ac2696602ea65d4b1b8f142767eaa1bebe097c2e407
7
- data.tar.gz: 3fde55dacd880bcd701777f5c5723e98bb929bddba43e632e8caa139f68ed10b03b8c221eedc00493321c2df05da3b21f51e924c01d461904e08c14d7f6eb3bc
6
+ metadata.gz: fb0804165ccad3401cb34dce86650703e81eea1da6c32c944029c8b55a915f11233282d285b3ed81dbc713ee19cc4a4e8bc412a661210210843de0661e528f5a
7
+ data.tar.gz: 8c6b8ff326ee00768f773b7b3189026d531d75b00e359a6a96be08f2b235a4d0b460ff55696f501c9c1b0fcedefa754f8d633d4d0d98ba50919eec4482b3aa6f
data/lib/asbru/cml.rb CHANGED
@@ -54,13 +54,13 @@ module Asbru
54
54
  end
55
55
 
56
56
  def hr color: 'stable-500'
57
- C.send ("#{component_prefix}_divider",
57
+ C.send "#{component_prefix}_divider",
58
58
  color: color,
59
59
  height: 1
60
60
  end
61
61
 
62
62
  def vertical_spacer height
63
- C.send ("#{component_prefix}_divider",
63
+ C.send "#{component_prefix}_divider",
64
64
  color: :transparent,
65
65
  height: height
66
66
  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].merge(options[:custom_data]) if options[:custom_data]
21
- Asbru::Components::Savage.send "#{Asbru.config.form_builder_prefix}_button",
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
- component_prefix
24
25
  end
25
26
 
26
27
  def asbru_link_to(text, url, **options)
data/lib/asbru/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Asbru
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.7'
3
3
  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.3
4
+ version: 0.0.7
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-05-06 00:00:00.000000000 Z
11
+ date: 2021-07-13 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.1.2
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.