Sha256: 2e2e2c9f9a3b37f6adc7ef01c35fcb19f173ec2e96f39cedb351e92cdd45f2f0
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 KB
Contents
#!/usr/bin/env ruby # Copyright (c) 2008 James Coglan # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. require 'rubygems' gem 'svn2git' require 'svn2git' url = ARGV.shift options = ARGV.inject({}) do |memo, arg| parts = arg.split('=') memo[parts.first.to_sym] = parts.last memo end migration = Svn2Git::Migration.new(url, options) migration.run!
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nirvdrum-svn2git-1.1.1 | bin/svn2git |
nirvdrum-svn2git-1.2.0 | bin/svn2git |