RequireJS plugin (order.js)

http://requirejs.org/

Recientemente descargué require.js 2.0 y obtengo un error en mi consola:

Uncaught TypeError: Object function (){var g=ga.call(arguments,0),e;if(f&&v(e=g[g.length-1]))e.__requireJsBuild=!0;g.push(d);return b.apply(null,g)} has no method 'nameToUrl'

¿El plugin order.js sigue siendo soportado por requirejs? No veo su documentación en el sitio web.

Cuando intento eliminar el archivo, el script se rompe.

En mi archivo de índice, incluí el script requirejs en la sección principal:

<!DOCTYPE html>
<html>
    <head>
        <title>
            My Mobile Application
        </title>
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
        <link rel="stylesheet" href="public/css/style.css" />
        <script data-main="scripts/main.js" src="scripts/require.js"></script>
    </head>
    <body></body>
</html>

Luego en mi archivo main.js:

requirejs.config({
    //By default load any module IDs from js/lib
    baseUrl: 'js/lib',
    //except, if the module ID starts with "app",
    //load it from the js/app directory. paths
    //config is relative to the baseUrl, and
    //never includes a ".js" extension since
    //the paths config could be for a directory.
    paths: {
        app: '../app',
        assets: '../assets',
        views: '../app/views',
        templates: '../app/templates',
        collections: '../app/collections',
        models: '../app/models'
    }
});

// Start the main app logic.
requirejs([
    'jquery/jquery',
    'assets/jqm.config',
    'jquery/mobile',
    'text'
]);

require([
    'app'
    ],
    function( App ){
        $(document).ready( function(){
            App.initialize();
        });
    }
);

Me ocupo de que App.initialize no tenga ningún error y lo que está haciendo App.initialize es una simple ubicación geográfica. El requirejs simplemente pide order.js, y cuando coloco el código está teniendo el mismo error que se mencionó anteriormente.

¡Gracias!

Respuestas a la pregunta(2)

Su respuesta a la pregunta