You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2012/09/17 17:00:13 UTC

svn commit: r1386646 - /incubator/cordova/site/bin/gen.rb

Author: agrieve
Date: Mon Sep 17 15:00:12 2012
New Revision: 1386646

URL: http://svn.apache.org/viewvc?rev=1386646&view=rev
Log:
require('Fileutils.rb') -> require('fileutils')

on behalf of cmarcelk@gmail.com


Modified:
    incubator/cordova/site/bin/gen.rb

Modified: incubator/cordova/site/bin/gen.rb
URL: http://svn.apache.org/viewvc/incubator/cordova/site/bin/gen.rb?rev=1386646&r1=1386645&r2=1386646&view=diff
==============================================================================
--- incubator/cordova/site/bin/gen.rb (original)
+++ incubator/cordova/site/bin/gen.rb Mon Sep 17 15:00:12 2012
@@ -3,7 +3,7 @@ require 'mustache'
 require 'rubygems'
 require 'json'
 require 'ftools'
-require 'Fileutils.rb'
+require 'fileutils'
 
 class TemplateIndex < Mustache
   self.template_file = File.dirname( __FILE__ ) + '/../www/template.html'