Sha256: 19a317640758717d1a4dbd6314a1bbb41abdc256480903d3fac5c18919df757a
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 KB
Contents
# 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
magnoline-0.1 | lib/main_client.rb |