myg 2.3.1 → 2.3.2

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: cad2081fe4f5c8ab78077e2dbf956573a214a693fafd4d0d69703734dc20e152
4
- data.tar.gz: eca00bc40fc58c2141377ea95eac560b20d4b9cfb2b5aa155a7f3c83bbf1bebb
3
+ metadata.gz: 659173bf49a85aa8f6809b99ee21ce2bb02d38f40ee3e8b5fd5adf99bd076c4e
4
+ data.tar.gz: 5bdd0f771f0e3971dee5e85b618b4cdd4172f73d27e44b9a17a6f074f1766206
5
5
  SHA512:
6
- metadata.gz: a53de203b6a6434a13bb743d611fb1a0900726c1ad6c096f6954e24cbde806887872d95167414844cf8606f44f9b9644fd66e7068de1203167864b28cbe43aa1
7
- data.tar.gz: 3c3daa3dc612e311647c59aaa965f7d7b7c505e43a1dc98bf5d2be5e55ac830035f5b813d17c0c53ca9f70cc202470c8a63837450b3e7c75740e39a5472c738d
6
+ metadata.gz: 289a5ca1fbfc822cbfd0e1dbe2c3fcb55c9a56c077ea281e61485587a00613abb7a45d08876c9e63e98878a3ee8501d911e27e9a7ed530afefd16cd6d7976c7d
7
+ data.tar.gz: 14d4d2c69cd6df82a8bbde5590ced7e720bc4754309f9408660229478c386b2e771240669af122a44a0d0f5e34f8ab41fd61173380e05a341e69c2d3409fb1a7
data/CHANGELOG.md CHANGED
@@ -4,6 +4,16 @@
4
4
 
5
5
  * nothing yet
6
6
 
7
+ ### 2.3.2 - 2018/02/25
8
+
9
+ * bugfixes
10
+ * fixed `form-field` component
11
+
12
+ ### 2.3.1 - 2018/02/25
13
+
14
+ * bugfixes
15
+ * fixed `cannot load such file -- material-components-web`
16
+
7
17
  ### 2.3.0 - 2018/02/25
8
18
 
9
19
  * features
@@ -22,7 +22,7 @@
22
22
  <% unless options[:label].is_a? Array %>
23
23
  <%= component 'myg/label', options[:label_html].merge(label_html) do %><%= options[:label].html_safe %><% end %>
24
24
  <% else %>
25
- <%= content_tag 'div', options[:label_wrapper_html].merge(label_wrapper_html) %>
25
+ <%= content_tag 'div', options[:label_wrapper_html].merge(label_wrapper_html) do %>
26
26
  <% options[:label].each_with_index do |label, index| %>
27
27
  <%= component 'myg/label', options[:label_html].merge((index == 0 ? label_html : label_secondary_html)) do %><%= label.html_safe %><% end %>
28
28
  <% end %>
@@ -34,7 +34,7 @@
34
34
  <% unless options[:inline_label].is_a? Array %>
35
35
  <%= component 'myg/label', options[:label_html].merge(label_html) do %><%= options[:inline_label] %><% end %>
36
36
  <% else %>
37
- <%= content_tag 'div', options[:label_wrapper_html].merge(label_wrapper_html) %>
37
+ <%= content_tag 'div', options[:label_wrapper_html].merge(label_wrapper_html) do %>
38
38
  <% options[:inline_label].each_with_index do |label, index| %>
39
39
  <%= component 'myg/label', options[:label_html].merge((index == 0 ? label_html : label_secondary_html)) do %><%= label.html_safe %><% end %>
40
40
  <% end %>
data/lib/myg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Myg
2
2
 
3
- VERSION = '2.3.1'
3
+ VERSION = '2.3.2'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: myg
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.1
4
+ version: 2.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Hübotter