Sha256: 2e320dc3f626606d4ba547f7825e5a48b260792a7c63a43ca9731399f2861f3a
Contents?: true
Size: 1.09 KB
Versions: 2
Compression:
Stored size: 1.09 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'ruby-pg-extras/version' Gem::Specification.new do |s| s.name = "ruby-pg-extras" s.version = RubyPGExtras::VERSION s.authors = ["pawurb"] s.email = ["contact@pawelurbanek.com"] s.summary = %q{ Ruby PostgreSQL performance database insights } s.description = %q{ Ruby 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/ruby-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 "pg" s.add_dependency "filesize" s.add_dependency "terminal-table" 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 |
---|---|
ruby-pg-extras-3.3.0 | ruby-pg-extras.gemspec |
ruby-pg-extras-3.2.7 | ruby-pg-extras.gemspec |