# 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