svn2git 1.3.2 → 1.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog.markdown +10 -4
- data/VERSION.yml +2 -1
- data/lib/svn2git/migration.rb +1 -1
- data/svn2git.gemspec +2 -2
- metadata +3 -3
data/ChangeLog.markdown
CHANGED
@@ -1,19 +1,25 @@
|
|
1
|
+
# 1.3.3 - 2010-03-31
|
2
|
+
|
3
|
+
Thanks to Jeff Ramnani (jramnani) for finding a problem with with the --excludes tag and providing a patch.
|
4
|
+
|
5
|
+
* Fix error when using '--exclude' option.
|
6
|
+
|
1
7
|
# 1.3.2 - 2010-03-12
|
2
8
|
|
3
|
-
Thanks to rajit for finding a problem with quoting in tag comments that were causing issues with svn2git's internal
|
9
|
+
Thanks to Rajit Singh (rajit) for finding a problem with quoting in tag comments that were causing issues with svn2git's internal
|
4
10
|
quoting and providing a patch.
|
5
11
|
|
6
|
-
* Deal cleanly with any single quotes found in tag comments so that the 'git tag' commands run correctly
|
12
|
+
* Deal cleanly with any single quotes found in tag comments so that the 'git tag' commands run correctly.
|
7
13
|
|
8
14
|
# 1.3.1 - 2009-06-09
|
9
15
|
|
10
|
-
Thanks to iteman for finding a problem with the tagging process and providing a patch.
|
16
|
+
Thanks to KUBO Atsuhiro (iteman) for finding a problem with the tagging process and providing a patch.
|
11
17
|
|
12
18
|
* Fixed a problem with creating actual git tags when the SVN tags path was named anything other than 'tags.'
|
13
19
|
|
14
20
|
# 1.3.0 - 2009-06-09
|
15
21
|
|
16
|
-
Many thanks to mss for the patches making up most of this release.
|
22
|
+
Many thanks to Malte S. Stretz (mss) for the patches making up most of this release.
|
17
23
|
|
18
24
|
* Fixed a problem where tags didn't get the original date and time.
|
19
25
|
* New switch --exclude which can be used to specify a PCRE pattern to exclude paths from the import.
|
data/VERSION.yml
CHANGED
data/lib/svn2git/migration.rb
CHANGED
@@ -142,7 +142,7 @@ module Svn2Git
|
|
142
142
|
regex << "#{branches}[/][^/]+[/]" unless branches.nil?
|
143
143
|
end
|
144
144
|
regex = '^(?:' + regex.join('|') + ')(?:' + exclude.join('|') + ')'
|
145
|
-
cmd += "'--ignore-paths=#{regex}'"
|
145
|
+
cmd += " '--ignore-paths=#{regex}'"
|
146
146
|
end
|
147
147
|
run_command(cmd)
|
148
148
|
|
data/svn2git.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{svn2git}
|
8
|
-
s.version = "1.3.
|
8
|
+
s.version = "1.3.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["James Coglan", "Kevin Menard"]
|
12
|
-
s.date = %q{2010-03-
|
12
|
+
s.date = %q{2010-03-31}
|
13
13
|
s.default_executable = %q{svn2git}
|
14
14
|
s.email = %q{nirvdrum@gmail.com}
|
15
15
|
s.executables = ["svn2git"]
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 3
|
8
|
-
-
|
9
|
-
version: 1.3.
|
8
|
+
- 3
|
9
|
+
version: 1.3.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- James Coglan
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-03-
|
18
|
+
date: 2010-03-31 00:00:00 -04:00
|
19
19
|
default_executable: svn2git
|
20
20
|
dependencies: []
|
21
21
|
|