forked from nirvdrum/svn2git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
31 lines (27 loc) · 780 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
31
require 'rake'
require 'rake/testtask'
require 'rubygems/package_task'
begin
require 'jeweler'
Jeweler::Tasks.new do |spec|
spec.name = "svn2git"
spec.summary = "A tool for migrating svn projects to git"
spec.authors = ["James Coglan", "Kevin Menard"]
spec.homepage = "https://github.com/nirvdrum/svn2git"
spec.email = "[email protected]"
spec.license = 'MIT'
spec.add_development_dependency 'minitest'
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end
desc 'Test the rubber plugin.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end
desc 'Default: run unit tests.'
task :default => :test