vinistock/sail

View on GitHub
lib/sail/types/string.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Sail
  module Types
    # String
    #
    # The String setting type
    # is the simplest. It only
    # stores a configurable value
    # in the database.
    class String < Type; end
  end
end