Skip to content

v2.1.0

Compare
Choose a tag to compare
@huacnlee huacnlee released this 08 Jul 07:24
· 146 commits to main since this release
  • Fix default array separator, remove "space", now only: \n and ,.

  • Add separator option for speical the separator for Array type.

    For example:

    class Setting < RailsSettings::Base
      field :tips, type: :array, separator: /[\n]+/
      field :keywords, type: :array, separator: ","
    end