Sha256: d1a9bbe056686e75c93464032c1d9c71fafa2b5d83ac94d3c23dda7b491303f9
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'rails-pg-extras/version' Gem::Specification.new do |s| s.name = "rails-pg-extras" s.version = RailsPGExtras::VERSION s.authors = ["pawurb"] s.email = ["contact@pawelurbanek.com"] s.summary = %q{ Rails PostgreSQL performance database insights } s.description = %q{ Rails port of Heroku PG Extras. The goal of this project is to provide a powerful insights into PostgreSQL database for Ruby on Rails apps that are not using the default Heroku PostgreSQL plugin. } s.homepage = "http://github.com/pawurb/rails-pg-extras" s.files = `git ls-files`.split("\n") s.test_files = s.files.grep(%r{^(spec)/}) s.require_paths = ["lib"] s.license = "MIT" s.add_dependency "ruby-pg-extras", RailsPGExtras::VERSION s.add_dependency "activerecord" s.add_development_dependency "rake" s.add_development_dependency "rspec" if s.respond_to?(:metadata=) s.metadata = { "rubygems_mfa_required" => "true" } end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rails-pg-extras-3.3.0 | rails-pg-extras.gemspec |
rails-pg-extras-3.2.7 | rails-pg-extras.gemspec |