Sha256: e0169ba319bb1c8d3ddc1e14d744d56f17255934c6051f3ede0dcf31a522b138

Contents?: true

Size: 890 Bytes

Versions: 1

Compression:

Stored size: 890 Bytes

Contents

# coding: utf-8

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
  spec.name          = "ar_preconnect"
  spec.version       = "0.1.0"
  spec.authors       = ["Michael van Rooijen"]
  spec.email         = ["michael@vanrooijen.io"]

  spec.summary       = %q{Adds the `preconnect!` method to `ActiveRecord::ConnectionAdapters::ConnectionPool`.}
  spec.description   = spec.summary + " With it you can eagerly connect all connection pool connections to the database, rather than lazily."
  spec.homepage      = "https://github.com/meskyanichi/ar_preconnect"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ar_preconnect-0.1.0 ar_preconnect.gemspec