-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathRakefile
30 lines (24 loc) · 838 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
26
27
28
29
30
require 'rubygems'
require 'rake'
require 'rake/gempackagetask'
PKG_NAME = 'activerecord-informix-adapter'
PKG_VERSION = "1.1.1"
spec = Gem::Specification.new do |s|
s.name = PKG_NAME
s.summary = 'Informix adapter for Active Record'
s.description = 'Active Record adapter for connecting to an IBM Informix database'
s.version = PKG_VERSION
s.add_dependency 'activerecord', '>= 1.15.4.7707'
s.add_dependency 'ruby-informix', '>= 0.7.3'
s.require_path = 'lib'
s.files = %w(lib/active_record/connection_adapters/informix_adapter.rb)
s.author = 'Gerardo Santana Gomez Garrido'
s.email = '[email protected]'
s.homepage = 'http://rails-informix.rubyforge.org/'
s.rubyforge_project = 'rails-informix'
end
Rake::GemPackageTask.new(spec) do |p|
p.gem_spec = spec
p.need_tar = true
p.need_zip = true
end