forked from dkubb/axiom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
27 lines (20 loc) · 764 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
# encoding: utf-8
require 'rake'
require File.expand_path('../lib/veritas/version', __FILE__)
begin
gem('jeweler', '~> 1.6.2') if respond_to?(:gem, true)
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = 'veritas'
gem.summary = 'Ruby Relational Algebra'
gem.description = 'Simplifies querying of structured data using relational algebra'
gem.email = 'dan.kubb@gmail.com'
gem.homepage = 'https://github.com/dkubb/veritas'
gem.authors = [ 'Dan Kubb' ]
gem.version = Veritas::VERSION
end
Jeweler::GemcutterTasks.new
FileList['tasks/**/*.rake'].each { |task| import task }
rescue LoadError
puts 'Jeweler (or a dependency) not available. Install it with: gem install jeweler -v 1.6.2'
end