Sha256: 56170f8ff6e523e968ec6d10e20e6617fc7c479bd62246c80145dae9da9237fe

Contents?: true

Size: 321 Bytes

Versions: 11

Compression:

Stored size: 321 Bytes

Contents

module Calabash
  # @!visibility private
  module Patch
    require 'calabash/patch/array'

    # @!visibility private
    def self.apply_patches!
      modules = Patch.constants(false)

      modules.each do |constant|
        Calabash.const_get(constant).send(:include, const_get(constant))
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
calabash-2.0.0.pre11 lib/calabash/patch.rb
calabash-2.0.0.pre10 lib/calabash/patch.rb
calabash-2.0.0.pre9 lib/calabash/patch.rb
calabash-2.0.0.prelegacy4 lib/calabash/patch.rb
calabash-2.0.0.prelegacy3 lib/calabash/patch.rb
calabash-2.0.0.prelegacy2 lib/calabash/patch.rb
calabash-2.0.0.prelegacy lib/calabash/patch.rb
calabash-2.0.0.pre6 lib/calabash/patch.rb
calabash-2.0.0.pre5 lib/calabash/patch.rb
calabash-2.0.0.pre4 lib/calabash/patch.rb
calabash-2.0.0.pre3 lib/calabash/patch.rb