Sha256: 9f3059ff9f70102e0607f2f1cc749ae7b72813342363791145b682b20da068e7

Contents?: true

Size: 481 Bytes

Versions: 6

Compression:

Stored size: 481 Bytes

Contents

require "pg_comment/version"
require 'active_support/all'

module PgComment
  extend ActiveSupport::Autoload
  autoload :Adapter
  autoload :SchemaDumper

  module ConnectionAdapters
    extend ActiveSupport::Autoload

    autoload_under 'abstract' do
      autoload :SchemaDefinitions
      autoload :SchemaStatements
    end
  end

  module Migration
    autoload :CommandRecorder, 'pg_comment/migration/command_recorder'
  end
end

require 'pg_comment/engine' if defined?(Rails)

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pg_comment-0.2.1 lib/pg_comment.rb
pg_comment-0.2.0 lib/pg_comment.rb
pg_comment-0.1.2 lib/pg_comment.rb
pg_comment-0.1.1 lib/pg_comment.rb
pg_comment-0.1.0 lib/pg_comment.rb
pg_comment-0.0.5 lib/pg_comment.rb