Sha256: 100895fca4779248417b1d65736ac617a9acc59995343842bcf0ffca923bcf52

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

require 'rubygems'
require 'date'

SPEC = Gem::Specification.new do |s|
  s.name              = 'ruby-postgres'
  s.rubyforge_project = 'ruby-postgres'
  s.version           = "0.7.1.#{Date.today}".tr('-', '.')
  s.summary           = 'Ruby extension for PostgreSQL database coordination'
  s.author            = 'Yukihiro Matsumoto, Eiji Matsumoto, Noboru Saitou, Dave Lee'
  s.email             = 'davelee.com@gmail.com'
  s.homepage          = 'http://ruby.scripting.ca/postgres/'
  s.requirements      = 'PostgreSQL libpq library and headers'
  s.has_rdoc          = true
  s.require_path      = '.'
  s.autorequire       = 'postgres'

  if File.exists? 'postgres.so' and PLATFORM =~ /mingw|mswin/
    s.platform        = Gem::Platform::WIN32
  else
    s.platform        = Gem::Platform::RUBY
    s.extensions      = 'extconf.rb'
  end

  if File.exists? '_darcs'
    s.files           = Dir.chdir('_darcs/current') { Dir['**/*'] }
  else
    s.files           = Dir['**/*']
  end

end

if $0 == __FILE__
  Gem::manage_gems
  Gem::Builder.new(SPEC).build
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruby-postgres-0.7.1.2005.12.19-mswin32 ruby-postgres.gemspec
ruby-postgres-0.7.1.2005.11.27-mswin32 ruby-postgres.gemspec
ruby-postgres-0.7.1.2005.12.19 ruby-postgres.gemspec
ruby-postgres-0.7.1.2005.11.26 ruby-postgres.gemspec