Sha256: 5f9c16c4a7a14a005b48eba5be01890871c782acfb7ea91038b8896c18139493
Contents?: true
Size: 617 Bytes
Versions: 34
Compression:
Stored size: 617 Bytes
Contents
module Scaffolding mattr_accessor :database, default: :postgresql def self.mysql? database == :mysql end def self.valid_attribute_type?(type) [ "boolean", "buttons", "cloudinary_image", "color_picker", "date_and_time_field", "date_field", "email_field", "emoji_field", "file_field", "options", "password_field", "phone_field", "super_select", "text_area", "text_field", "trix_editor" ].include?(type.gsub(/{.*}/, "")) # Pop off curly brackets such as `super_select{class_name=Membership}` end end
Version data entries
34 entries across 34 versions & 1 rubygems