From 338b3d97b8cb0f5fca0339514ffdfaf30cc65498 Mon Sep 17 00:00:00 2001 From: elijah Date: Sun, 21 Oct 2012 13:59:57 -0700 Subject: replace command 'init' with 'new-provider' --- lib/leap_cli/commands/init.rb | 24 ------------------------ lib/leap_cli/commands/project.rb | 25 +++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 24 deletions(-) delete mode 100644 lib/leap_cli/commands/init.rb create mode 100644 lib/leap_cli/commands/project.rb (limited to 'lib/leap_cli') diff --git a/lib/leap_cli/commands/init.rb b/lib/leap_cli/commands/init.rb deleted file mode 100644 index de43a45..0000000 --- a/lib/leap_cli/commands/init.rb +++ /dev/null @@ -1,24 +0,0 @@ -module LeapCli - module Commands - desc 'Creates a new provider configuration directory.' - arg_name '' - skips_pre - command :init do |c| - c.action do |global_options,options,args| - directory = args.first - unless directory && directory.any? - help! "Directory name is required." - end - directory = File.expand_path(directory) - if File.exists?(directory) - raise "#{directory} already exists." - end - if agree("Create directory '#{directory}'? ") - LeapCli.init(directory) - else - puts "OK, bye." - end - end - end - end -end \ No newline at end of file diff --git a/lib/leap_cli/commands/project.rb b/lib/leap_cli/commands/project.rb new file mode 100644 index 0000000..8ec9625 --- /dev/null +++ b/lib/leap_cli/commands/project.rb @@ -0,0 +1,25 @@ +module LeapCli + module Commands + + desc 'Creates a new provider directory.' + arg_name '' + skips_pre + command :'new-provider' do |c| + c.action do |global_options,options,args| + directory = args.first + unless directory && directory.any? + help! "Directory name is required." + end + directory = File.expand_path(directory) + if File.exists?(directory) + raise "#{directory} already exists." + end + if agree("Create directory '#{directory}'? ") + LeapCli.init(directory) + else + puts "OK, bye." + end + end + end + end +end \ No newline at end of file -- cgit v1.2.3