forked from rowland/fb_adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
25 lines (23 loc) · 798 Bytes
/
Rakefile
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
#!/bin/env ruby
require 'rubygems'
require 'rake/gempackagetask'
spec = Gem::Specification.new do |s|
s.author = "Brent Rowland"
s.name = "fb_adapter"
s.version = "0.5.8"
s.date = "2009-02-04"
s.summary = "ActiveRecord Firebird Adapter"
s.requirements = "Firebird library fb"
s.require_path = 'lib'
s.email = "rowland@rowlandresearch.com"
s.homepage = "http://www.rowlandresearch.com/ruby/"
s.rubyforge_project = "fblib"
s.has_rdoc = false
# s.extra_rdoc_files = ['README']
# s.rdoc_options << '--title' << 'Fb -- ActiveRecord Firebird Adapter' << '--main' << 'README' << '-x' << 'test'
s.files = Dir.glob('lib/active_record/connection_adapters/*')
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_tar = false
pkg.need_zip = false
end