Sha256: c32c28514d6b2c070c5d02578e4927bc49e2fe661e19a8bb78aa3e99ab40c87f

Contents?: true

Size: 382 Bytes

Versions: 44

Compression:

Stored size: 382 Bytes

Contents

require 'itamae/handler/base'

module Itamae
  module Handler
    def self.from_type(type)
      first_time = true

      class_name = type.split('_').map(&:capitalize).join
      self.const_get(class_name)
    rescue NameError
      require "itamae/handler/#{type}"

      if first_time
        first_time = false
        retry
      else
        raise
      end
    end
  end
end

Version data entries

44 entries across 44 versions & 2 rubygems

Version Path
itamae-1.14.1 lib/itamae/handler.rb
itamae-1.14.0 lib/itamae/handler.rb
itamae-1.13.1 lib/itamae/handler.rb
itamae-1.13.0 lib/itamae/handler.rb
itamae-1.12.6 lib/itamae/handler.rb
itamae-1.12.5 lib/itamae/handler.rb
itamae-1.12.4 lib/itamae/handler.rb
itamae-1.12.3 lib/itamae/handler.rb
itamae-1.12.2 lib/itamae/handler.rb
itamae-1.12.1 lib/itamae/handler.rb
itamae-1.12.0 lib/itamae/handler.rb
itamae-1.11.2 lib/itamae/handler.rb
itamae-1.11.1 lib/itamae/handler.rb
itamae-1.11.0 lib/itamae/handler.rb
itamae-1.10.10 lib/itamae/handler.rb
itamae-1.10.9 lib/itamae/handler.rb
itamae-1.10.8 lib/itamae/handler.rb
itamae-1.10.7 lib/itamae/handler.rb
itamae-1.10.6 lib/itamae/handler.rb
itamae-1.10.5 lib/itamae/handler.rb