Sha256: 2972352200b2b5fc0b341e75cdaf1d7d1e0db51c89cc033f43120bf437e7faea

Contents?: true

Size: 278 Bytes

Versions: 3

Compression:

Stored size: 278 Bytes

Contents

# ActiveRecord::Migration['5.0'] syntax is not supported prior to Rails 5.0
# This snippet supports it on Rails 4.2
unless ActiveRecord::Migration.respond_to?(:[])
  class ActiveRecord::Migration
    class << self
      def [](_version)
        self
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rspec-sqlimit-0.0.5 spec/dummy/lib/dummy/compatibility.rb
rspec-sqlimit-0.0.4 spec/dummy/lib/dummy/compatibility.rb
rspec-sqlimit-0.0.3 spec/dummy/lib/dummy/compatibility.rb