lib/generators/templates/formtastic.rb in formtastic-4.0.0.rc1 vs lib/generators/templates/formtastic.rb in formtastic-4.0.0

- old
+ new

@@ -89,19 +89,19 @@ # See http://diveintohtml5.org/forms.html#validation for more info. # Formtastic::FormBuilder.perform_browser_validations = true # By creating custom input class finder, you can change how input classes are looked up. # For example you can make it to search for TextInputFilter instead of TextInput. -# See https://github.com/justinfrench/formtastic/wiki/Custom-Class-Finders +# See https://github.com/formtastic/formtastic/wiki/Custom-Class-Finders # Formtastic::FormBuilder.input_class_finder = Formtastic::InputClassFinder # Define custom namespaces in which to look up your Input classes. Default is # to look up in the global scope and in Formtastic::Inputs. # Formtastic::FormBuilder.input_namespaces = [ ::Object, ::MyInputsModule, ::Formtastic::Inputs ] # By creating custom action class finder, you can change how action classes are looked up. # For example you can make it to search for MyButtonAction instead of ButtonAction. -# See https://github.com/justinfrench/formtastic/wiki/Custom-Class-Finders +# See https://github.com/formtastic/formtastic/wiki/Custom-Class-Finders # Formtastic::FormBuilder.action_class_finder = Formtastic::ActionClassFinder # Define custom namespaces in which to look up your Action classes. Default is # to look up in the global scope and in Formtastic::Actions. # Formtastic::FormBuilder.action_namespaces = [ ::Object, ::MyActionsModule, ::Formtastic::Actions ]