Sha256: 92f887ee2b0b20a4499f2faecb5fdf581adb6758ce37810f9bebde377c8ff42c

Contents?: true

Size: 294 Bytes

Versions: 3

Compression:

Stored size: 294 Bytes

Contents

module Appraisal
  class Customize
    def initialize(heading: nil, single_quotes: false)
      @@heading = heading
      @@single_quotes = single_quotes
    end

    def self.heading
      @@heading ||= nil
    end

    def self.single_quotes
      @@single_quotes ||= false
    end
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
honeybadger-5.4.0 vendor/bundle/ruby/3.2.0/gems/appraisal-2.5.0/lib/appraisal/customize.rb
honeybadger-5.3.0 vendor/bundle/ruby/3.2.0/gems/appraisal-2.5.0/lib/appraisal/customize.rb
appraisal-2.5.0 lib/appraisal/customize.rb