Sha256: e86537765aef12d5c14bd68ca0db38cfc6431271d1244e43efd9c073eadcec56

Contents?: true

Size: 1.08 KB

Versions: 2

Compression:

Stored size: 1.08 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'

ies = MagnoliaClient::ImportExportSetUp.new
argv = ARGV
argv << "-a"
argv << "export"
ie_array = ies.parse(argv)

t3 = Time.new
ie_array.each {|ie| ie.exec}
t4 = Time.new
puts "export took:"+ (t4 - t3).to_s

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
magnoline-0.4 lib/export.rb
magnoline-0.5 lib/export.rb