Sha256: 0205a12fa760933a5b6a68a8df4f433dacb9c4170ef09ccf620974be722c8e0d
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-postgres-0.7.1.2005.11.24-mswin32 | ruby-postgres.gemspec |