forked from rowland/fb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fb.gemspec
30 lines (28 loc) · 959 Bytes
/
fb.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/env ruby
require 'rubygems'
spec = Gem::Specification.new do |s|
s.name = "fb"
s.version = "0.6"
s.date = "2009-05-03"
s.summary = "Firebird and Interbase driver"
s.requirements = "Firebird client library fbclient.dll"
s.require_path = '.'
s.email = "[email protected]"
s.homepage = "http://github.com/wishdev/fb/tree/master"
s.rubyforge_project = "fblib"
s.test_file = "test/FbTestSuite.rb"
s.has_rdoc = true
s.extra_rdoc_files = ['README']
s.rdoc_options << '--title' << 'Fb -- Ruby Firebird Extension' << '--main' << 'README' << '-x' << 'test'
s.files = ['extconf.rb', 'fb.c', 'keywords.c', 'keywords.h', 'README'] + Dir.glob("test/*")
s.platform = case PLATFORM
when /win32/ then Gem::Platform::WIN32
else
Gem::Platform::RUBY
end
s.extensions = ['extconf.rb'] if s.platform == Gem::Platform::RUBY
end
if __FILE__ == $0
Gem.manage_gems
Gem::Builder.new(spec).build
end