forked from aya-soft/rbase
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
24 lines (20 loc) · 666 Bytes
/
Copy pathRakefile
File metadata and controls
24 lines (20 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'rake'
require 'rubygems'
task :default => ['gem']
desc 'Create a gem'
task :gem do
spec = Gem::Specification.new do |s|
s.name = 'rbase'
s.version = '0.1.4'
s.summary = 'Library to create/read/write to XBase databases (*.DBF files)'
s.files = Dir.glob('**/*').delete_if { |item| item.include?('.svn') }
s.require_path = 'lib'
s.authors = 'Maxim Kulkin, Leonardo Augusto Pires'
s.email = 'maxim.kulkin@gmail.com, leonardo.pires@gmail.com'
s.homepage = 'http://rbase.rubyforge.com/'
s.rubyforge_project = 'rbase'
s.has_rdoc = true
s.required_ruby_version = '>= 1.8.2'
end
Gem::Builder.new(spec).build
end