class Appraisal::Customize
Public Class Methods
heading()
click to toggle source
# File lib/appraisal/customize.rb, line 8 def self.heading @@heading ||= nil end
new(heading: nil, single_quotes: false)
click to toggle source
# File lib/appraisal/customize.rb, line 3 def initialize(heading: nil, single_quotes: false) @@heading = heading @@single_quotes = single_quotes end
single_quotes()
click to toggle source
# File lib/appraisal/customize.rb, line 12 def self.single_quotes @@single_quotes ||= false end