sprsquish (owner)

Revisions

gist: 61861 Download_button fork
public
Public Clone URL: git://gist.github.com/61861.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
module JustinFrench
  module Formtastic
    class SemanticFormBuilder < JustinFrench::Formtastic::SemanticFormBuilder
      def initialize(*args)
        ::ActiveSupport::Deprecation.warn("JustinFrench::Formtastic::SemanticFormBuilder is depreciated. User Formtastic::SemanticFormBuilder instead", caller)
        super
      end
    end
  end
end