lib/bebox/commands/general_commands.rb in bebox-0.1.3 vs lib/bebox/commands/general_commands.rb in bebox-0.1.4
- old
+ new
@@ -5,17 +5,17 @@
base.load_commands
end
def load_commands
# Project creation phase command
- desc 'Create a new bebox project through a simple wizard'
+ desc _('cli.project.new.desc')
arg_name '[project_name]'
command :new do |project_command|
project_command.action do |global_options,options,args|
if args.count > 0
Bebox::ProjectWizard.new.create_new_project("bebox-#{args.first}")
else
- help_now!(error('You did not supply a project name'))
+ help_now!(error(_('cli.project.new.name_arg_missing')))
end
end
end
end
end
\ No newline at end of file