material-components-web 1.0.0 → 1.0.1

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: c813f4105edbb6d9b93a0bd4ceb036a8c925e9a8fdae415b314a0edd4cba258e
4
- data.tar.gz: 0d1e08c63f29ec71ffe4b03e7c0f9a7a5acd336c93f7dcf62d26927e1fe939a7
3
+ metadata.gz: 3c3c5ae823cc98e5e872464b88022950ddd8c1550c6ce3c6af417e2f493fab77
4
+ data.tar.gz: c82bf021a2e7fc0b20301c001fffbb69338dd6143c81baf77e1e05da821975b1
5
5
  SHA512:
6
- metadata.gz: f3cd1f992518f1ab302768c29e31a35ef3a25869dddbe7f9fa433bf44b50dc8f1752f1eb2b67f49510979ae2f3da08820aea00221b970b5e9f04bd4d0e2b3f66
7
- data.tar.gz: 0e6efc309318476cdae2d58ea450cd7d8be7a1ca1bb113be6f8c8e8ba3b1b841545e7f4ab567db89412a61baf7184ae31ea95a372109523cb18c956477aed7ae
6
+ metadata.gz: a1b9c1345bcc7998e3b4db1e2b3407a7bea99d73691e35bd87f878803741f8fef1a869558e5e003ee15e1248808a7c92c7997188cc53f568efb027ea629aaab2
7
+ data.tar.gz: 998d33420cc075b2bf68765ee72c03a0bc888cdc6dd925c500816f18860f5cecc77f3c38128895a9cc02d18c5b4259a466ffea24b9fc05893bef4d1def90d824
data/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@
4
4
 
5
5
  * nothing yet
6
6
 
7
+ ### 1.0.1 - 2018/01/08
8
+
9
+ * bugfixes
10
+ * fix `undefined method options for class` in view helpers
11
+
7
12
  ### 1.0.0 - 2018/01/08
8
13
 
9
14
  * initial release
@@ -11,7 +11,7 @@ module MaterialComponentsWeb
11
11
  }
12
12
  defaults.merge! options
13
13
 
14
- render partial: 'material_components_web/mdc_checkbox', locales: { attribute: attribute, options: options }
14
+ render partial: 'material_components_web/mdc_checkbox', locals: { attribute: attribute, options: options }
15
15
  end
16
16
 
17
17
  end
@@ -6,7 +6,7 @@ module MaterialComponentsWeb
6
6
  defaults = {}
7
7
  defaults.merge! options
8
8
 
9
- render partial: 'material_components_web/mdc_form_field', locales: { options: options, block: capture(&block) }
9
+ render partial: 'material_components_web/mdc_form_field', locals: { options: options, block: capture(&block) }
10
10
  end
11
11
 
12
12
  end
@@ -11,7 +11,7 @@ module MaterialComponentsWeb
11
11
  }
12
12
  defaults.merge! options
13
13
 
14
- render partial: 'material_components_web/mdc_radio', locales: { attribute: attribute, value: value, options: options }
14
+ render partial: 'material_components_web/mdc_radio', locals: { attribute: attribute, value: value, options: options }
15
15
  end
16
16
 
17
17
  end
@@ -1,5 +1,5 @@
1
1
  module MaterialComponentsWeb
2
2
 
3
- VERSION = '1.0.0'
3
+ VERSION = '1.0.1'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: material-components-web
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Hübotter