forked from nirvdrum/svn2git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
45 lines (42 loc) · 1.16 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
require 'rake'
require 'rake/gempackagetask'
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://www.negativetwenty.net/redmine/projects/svn2git"
spec.email = "[email protected]"
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
#
# spec = Gem::Specification.new do |spec|
#
# spec.version = "1.1.0"
# spec.platform = Gem::Platform::RUBY
#
#
# spec.require_path = "lib"
# spec.files = FileList["lib/**/*"].to_a
# spec.autorequire = "lib/svn2git.rb"
# spec.bindir = "bin"
# spec.executables = ["svn2git"]
# spec.default_executable = "svn2git"
#
#
#
#
# spec.test_files = FileList["test/**/*"].to_a
# spec.has_rdoc = true
# spec.extra_rdoc_files = ["README"]
# spec.rdoc_options << "--main" << "README" << '--line-numbers' << '--inline-source'
# end
#
# Rake::GemPackageTask.new(spec) do |pkg|
# pkg.need_tar = true
# end
#