Sha256: 6a93d67dcb2d34e0218b6f3d48bfc2c39a8a8177394c385bffdab4f1b343c8c1
Contents?: true
Size: 301 Bytes
Versions: 27
Compression:
Stored size: 301 Bytes
Contents
# frozen_string_literal: true # Support migration version syntax in rails 4 ActiveSupport.on_load(:active_record) do unless ActiveRecord::Migration.respond_to?(:[]) ActiveRecord::Migration.define_singleton_method(:[]) do |version| self if version.to_s.starts_with?('4') end end end
Version data entries
27 entries across 27 versions & 3 rubygems