# Magnoline, Command line tool for the magnolia CMS #Copyright (C) 2007 Nicolas Modrzyk # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # #This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # # Nicolas Modrzyk hellonico at gmail dot com # require 'magnolia_i_e' # # Main method: using --help on the command line gives the example usages # Create command line parser ies = MagnoliaClient::ImportExportSetUp.new # parse the parameters t1 = Time.new ie = ies.parse(ARGV) t2 = Time.new puts "parse took:"+ (t2 - t1).to_s # execute the command t3 = Time.new ie.exec t4 = Time.new puts "exec took:"+ (t4 - t3).to_s