aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/erb/fixtures/classes.rb
blob: 03da889941e99356d35ef1e2df6e020b84a934f5 (plain)
1
2
3
4
5
6
7
8
9
module ERBSpecs
  def self.new_erb(input, trim_mode: nil)
    if ruby_version_is "2.6"
      ERB.new(input, trim_mode: trim_mode)
    else
      ERB.new(input, nil, trim_mode)
    end
  end
end