ui_bibz 2.0.0.alpha5 → 2.0.0.alpha6
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48834e340f99c3833605fac9c56239478bb7fd7d
|
|
4
|
+
data.tar.gz: a07e1f0f7e530f3e38d03482610a0c5b88a7d909
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41e634c09f2eae61ea7bd6b48f6d4a890ba64a82ed603fa827feb0a9231658ae037858f021d65728ae2cd741975129be98d1e0b435b4f6078c84b85bcd195e0e
|
|
7
|
+
data.tar.gz: 5406607b5d8a25948ce186f8854780fdb1b8f023cf25040e82dffef4f075bb73e29dfdc6c0f47642d05b3c850719fe9d38f234f816875c2505c76ac506de475f
|
data/Gemfile.lock
CHANGED
|
@@ -3,9 +3,8 @@ module CustomInputs
|
|
|
3
3
|
include UiBibz::Ui::Core
|
|
4
4
|
|
|
5
5
|
def input(wrapper_options)
|
|
6
|
-
options = options
|
|
7
|
-
|
|
8
|
-
UiBibz::Ui::Core::DatePickerField.new(attribute_name, input_options, input_html_options).render
|
|
6
|
+
options = @options.merge({ builder: @builder })
|
|
7
|
+
UiBibz::Ui::Core::DatePickerField.new(attribute_name, options, input_html_options).render
|
|
9
8
|
end
|
|
10
9
|
|
|
11
10
|
end
|
|
@@ -3,8 +3,7 @@ module CustomInputs
|
|
|
3
3
|
include UiBibz::Ui::Core
|
|
4
4
|
|
|
5
5
|
def input(wrapper_options)
|
|
6
|
-
options = options
|
|
7
|
-
options = options.merge({ builder: @builder })
|
|
6
|
+
options = @options.merge({ builder: @builder })
|
|
8
7
|
UiBibz::Ui::Core::SurroundField.new(attribute_name, options, input_html_options).render
|
|
9
8
|
end
|
|
10
9
|
|
|
@@ -54,7 +54,7 @@ module UiBibz::Ui::Core
|
|
|
54
54
|
if options[:builder].nil?
|
|
55
55
|
check_box_tag content, value, html_options[:checked], html_options
|
|
56
56
|
else
|
|
57
|
-
options[:builder].check_box(content, html_options
|
|
57
|
+
options[:builder].check_box(content, html_options)
|
|
58
58
|
end
|
|
59
59
|
end
|
|
60
60
|
|
data/lib/ui_bibz/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ui_bibz
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.0.
|
|
4
|
+
version: 2.0.0.alpha6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thooams
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-04-
|
|
11
|
+
date: 2016-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|