add bin/svi and lib/svi/cli.rb
This commit is contained in:
parent
432bd7458e
commit
5cedd30df6
7
bin/svi
Executable file
7
bin/svi
Executable file
@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env ruby
|
||||
|
||||
require "svi"
|
||||
|
||||
args = ARGV.dup
|
||||
|
||||
exit(Svi::Cli.run(args))
|
@ -1,3 +1,4 @@
|
||||
require_relative "svi/cli"
|
||||
require_relative "svi/svn_runner"
|
||||
require_relative "svi/version"
|
||||
|
||||
|
9
lib/svi/cli.rb
Normal file
9
lib/svi/cli.rb
Normal file
@ -0,0 +1,9 @@
|
||||
module Svi
|
||||
module Cli
|
||||
class << self
|
||||
def run(args)
|
||||
0
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
x
Reference in New Issue
Block a user