reform 0.2.5 → 0.2.6
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 +4 -4
- data/CHANGES.md +4 -0
- data/database.sqlite3 +0 -0
- data/lib/reform/form/active_model.rb +1 -1
- data/lib/reform/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0358800d71c3327b87d9d9659d789f67bd2195d
|
|
4
|
+
data.tar.gz: bd6cba76f1f1b7a03b7a7d59599e7342b5bb9641
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0df0530d354cca49618404e00466349af4c91b80021e7af1d69d2fb6302fd49a31727a4264d6628c3cb5c1f22b9f4c43a43e6da42ac1f2f8633659b14ff414c8
|
|
7
|
+
data.tar.gz: 19c46cbabfbf81c5936417e209fdc4528f56a6847d9a541d542ca1fa00f7f0a5064653347dd759d6ffaab3a696d8037e40a007bdec332d97134f22339784f1d1
|
data/CHANGES.md
CHANGED
data/database.sqlite3
CHANGED
|
Binary file
|
|
@@ -60,7 +60,7 @@ module Reform::Form::ActiveModel
|
|
|
60
60
|
# this module is only meant to extend (not include). # DISCUSS: is this a sustainable concept?
|
|
61
61
|
def self.extended(base)
|
|
62
62
|
base.class_eval do
|
|
63
|
-
extend
|
|
63
|
+
extend Uber::InheritableAttribute
|
|
64
64
|
inheritable_attr :model_options
|
|
65
65
|
end
|
|
66
66
|
end
|
data/lib/reform/version.rb
CHANGED