Sha256: 003541a0cec9b7170a35da7085421e2379d6af5e7de8d2d18116ee3f0fc51478

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 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, and get an array of commands
#t1 = Time.new
ie_array = ies.parse(ARGV)
#t2 = Time.new
#puts "parse took:"+ (t2 - t1).to_s

# execute the command(s)
t3 = Time.new
ie_array.each {|ie| 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.3 lib/main_client.rb