pxs-forms 0.0.7 → 0.0.9

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
  SHA256:
3
- metadata.gz: edda7afaaff2fc1612812c1a7d80ca40b743f2896009299a202271b85f768ae3
4
- data.tar.gz: c97b160fbef84a0f6bc4b9072ebb91e84bef0ac3d6de4f1d43966ae0eaad68ad
3
+ metadata.gz: 78dfbf48f4433764cbda0d245568d7b8b7bbdfb4336e1b2a5ca66e4b8ab5ed88
4
+ data.tar.gz: 5d2c6b57d885e06f0dc61914ee900d32b0923e3e882c43da03126e6066deab63
5
5
  SHA512:
6
- metadata.gz: 81ac6808e7a43f105cbaaff864ddc3ac78533af4d27683572b14ca7dc46ccae277d2cd3641acbbd7ffc80005510c4a1bc4027ee3f06975d31a7f75da14f96e75
7
- data.tar.gz: b46c7812017f1edcbe8a141de913d98654c02c8fbaaa38bbbf9103df245f952414ea5b591e1d29e9c4ff8a343675965c2ca743bcf4b7a9bb062108e3bae9a9f4
6
+ metadata.gz: eab3a2ad0db3e9304743bab95685546cb29c41770545c6d0c69e6da6fbc4953997888736da03956366f5e5e157740856596e29783dcd93ab4f50db5716bdca4d
7
+ data.tar.gz: f301fa6e25eee10066027dfbf7ee72d098844e5ba28aaab205d37cb1f78b14f3c78d7e953f793e60c6b99fca4324e5d76e98f83647eef913b99e2d61145eb1e8
@@ -5,14 +5,11 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
5
5
  # define a model field
6
6
  # the format is deduced from the column type or attribute name
7
7
  def field(attribute, options = {})
8
- puts attribute
9
- puts options.inspect
10
8
  @form_options = options
11
9
 
12
10
  # extract the object type from the attribute
13
11
  object_type = object_type_for_attribute(attribute)
14
12
 
15
- puts object_type.inspect
16
13
  # set the input type depending on the attribute type
17
14
  input_type = case object_type
18
15
  when :date then :string
@@ -20,8 +17,6 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
20
17
  else object_type
21
18
  end
22
19
 
23
- puts input_type.inspect
24
-
25
20
  # if as: :input_type is set, use it to set input type
26
21
  override_input_type = if options[:as]
27
22
  options[:as]
@@ -30,8 +25,6 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
30
25
  :select
31
26
  end
32
27
 
33
- puts override_input_type.inspect
34
-
35
28
  # return result of [input_type]_input method
36
29
  send("#{override_input_type || input_type}_input", attribute, options)
37
30
  end
@@ -79,11 +72,12 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
79
72
  end
80
73
 
81
74
  def boolean_input(attribute, options = {})
75
+ raise 'fuck you piece of shit'
82
76
  field_block(attribute, options) do
83
77
  tag.div(class: "checkbox-field") do
84
78
  safe_join [
85
- check_box(attribute, merge_input_options({class: "checkbox-input"}, options[:input_html])),
86
79
  label(attribute, options[:label], class: "checkbox-label"),
80
+ check_box(attribute, merge_input_options({class: "checkbox-input"}, options[:input_html])),
87
81
  ]
88
82
  end
89
83
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pxs
4
4
  module Forms
5
- VERSION = "0.0.7"
5
+ VERSION = "0.0.9"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pxs-forms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Poubelle
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-25 00:00:00.000000000 Z
11
+ date: 2024-04-12 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: