forked from jage/rmysqldump
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
22 lines (21 loc) · 757 Bytes
/
Rakefile
File metadata and controls
22 lines (21 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rubygems'
require 'rake'
require 'rake/testtask'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "rmysqldump"
gemspec.summary = "Dump MySQL databases"
gemspec.description = "Dumping MySQL databases on the Starkast servers"
gemspec.email = "johan@duh.se"
gemspec.homepage = "http://github.com/Starkast/rmysqldump"
gemspec.authors = ["Johan Eckerström"]
gemspec.files = FileList["rmysqldump.conf", "bin/rmysqldump", "lib/rmysqldump.rb"]
gemspec.add_dependency("mysql", ["> 0.0.0"])
gemspec.has_rdoc = false
gemspec.bindir = 'bin'
gemspec.executables = ["rmysqldump"]
end
rescue LoadError
$stderr.puts "Jeweler not available. Install it with: sudo gem install jeweler"
end