ShadowBelmolve-formtastic 0.1.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.
- data/MIT-LICENSE +20 -0
- data/README.textile +363 -0
- data/Rakefile +58 -0
- data/lib/formtastic.rb +1325 -0
- data/lib/justin_french/formtastic.rb +10 -0
- data/lib/locale/en.yml +8 -0
- data/rails/init.rb +3 -0
- data/spec/formtastic_spec.rb +2571 -0
- data/spec/spec.opts +2 -0
- data/spec/test_helper.rb +14 -0
- metadata +63 -0
@@ -0,0 +1,10 @@
|
|
1
|
+
module JustinFrench
|
2
|
+
module Formtastic
|
3
|
+
class SemanticFormBuilder < ::Formtastic::SemanticFormBuilder
|
4
|
+
def initialize(*args)
|
5
|
+
::ActiveSupport::Deprecation.warn("JustinFrench::Formtastic::SemanticFormBuilder is deprecated. User Formtastic::SemanticFormBuilder instead", caller)
|
6
|
+
super
|
7
|
+
end
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
data/lib/locale/en.yml
ADDED
data/rails/init.rb
ADDED