# File lib/cgikit/project/command.rb, line 206 def execute(opts) begin @opt.parse!(opts) rescue StandardError => e show_usage(USAGE + "\n" + e.message ) end ja = @ja rubypath = @rubypath || default_ruby_path() apppath = opts.shift show_usage(USAGE) unless apppath project = CGIKit::Project::Project.new(apppath) project.japanese = ja if ja project.ruby_path = rubypath if rubypath project.write end