problems running the latest ronin

6 views
Skip to first unread message

chris

unread,
Feb 21, 2012, 1:34:01 PM2/21/12
to ronin
Hi:

I'm following the instructions on the ronin website for the quick-
install and am running into problems:


c:\d\projects>vark --version
Aardvark version 0.4

c:\d\projects>vark -f http://ronin-web.org/init.vark init ronin_app
Buildfile: c:\d\projects\http:\ronin-web.org\init.vark
Specified vark buildfile c:\d\projects\http:\ronin-web.org\init.vark
doesn't exist
at gw.vark.AardvarkProgram.parse(AardvarkProgram.java:61)
at gw.vark.AardvarkProgram.parseWithTimer(AardvarkProgram.java:
36)
at gw.vark.Aardvark.run(Aardvark.java:132)
at gw.lang.Gosu.start(Gosu.java:87)
at gw.lang.launch.GosuLauncher.run(GosuLauncher.java:116)
at gw.lang.launch.GosuLauncher.main(GosuLauncher.java:46)

c:\d\projects>


The link to Aardvark on the quick-install page takes you to the
Aardvark home page and the default aardvark.zip/tgz files are the
0.3.3 versions. You have to click the [more] link and then get the
0.4.preview file. I only know about this by bugging Carson on
twitter :)

And, with the latest web site refresh I can't find a link to get any
help (eg. this group or the gosu-lang group)

Chris

Gus Prevas

unread,
Feb 21, 2012, 1:35:56 PM2/21/12
to ronin...@googlegroups.com
Hi Chris,

I believe the correct flag is -url rather than -f.  Thanks for catching that, I'll update the site tonight.

Carson Gross

unread,
Feb 21, 2012, 1:37:18 PM2/21/12
to ronin...@googlegroups.com
Yep:

  vark -url 
http://ronin-web.org/init.vark init -name my_app

Releases are hard.  ;)

Cheers,
Carson

chris

unread,
Feb 21, 2012, 1:39:33 PM2/21/12
to ronin
Awesome that worked...sorta...Looks like I can name my project
anything and ronin wants to prefix it with my_ :)

c:\d\projects>vark -url http://ronin-web.org/init.vark init ronin_app
Buildfile: http://ronin-web.org/init.vark
Done parsing Aardvark buildfile in 1829 ms

init:
[get] Getting: http://ronin-web.org/ronin-template.zip
[get] To: C:\Users\cgow\AppData\Local\Temp\ronin-
template10622262518372807
36zip
[unzip] Expanding: C:\Users\cgow\AppData\Local\Temp\ronin-
template1062226251
837280736zip into .\my_ronin_app
[echo] Created a new ronin application at c:\d\projects\.
\my_ronin_app.
[echo] To start your ronin app, cd my_ronin_app; vark server

BUILD FAILED
Target "ronin_app" does not exist in the project "null".

Total time: 1 second

c:\d\projects>dir
Volume in drive C is Windows7_OS
Volume Serial Number is A4E2-BD15

Directory of c:\d\projects

02/21/2012 01:37 PM <DIR> .
02/21/2012 01:37 PM <DIR> ..
02/21/2012 01:37 PM <DIR> my_ronin_app
0 File(s) 0 bytes
6 Dir(s) 206,426,480,640 bytes free

On Feb 21, 1:37 pm, Carson Gross <carsongr...@gmail.com> wrote:
> Yep:
>
>   vark -urlhttp://ronin-web.org/init.varkinit -name my_app
>
> Releases are hard.  ;)
>
> Cheers,
> Carson
>
>
>
>
>
>
>
> On Tue, Feb 21, 2012 at 10:35 AM, Gus Prevas <kpre...@gmail.com> wrote:
> > Hi Chris,
>
> > I believe the correct flag is -url rather than -f.  Thanks for catching
> > that, I'll update the site tonight.
>
> > On Tue, Feb 21, 2012 at 1:34 PM, chris <chris....@gmail.com> wrote:
>
> >> Hi:
>
> >> I'm following the instructions on the ronin website for the quick-
> >> install and am running into problems:
>
> >> c:\d\projects>vark --version
> >> Aardvark version 0.4
>
> >> c:\d\projects>vark -fhttp://ronin-web.org/init.varkinit ronin_app

Gus Prevas

unread,
Feb 21, 2012, 1:40:42 PM2/21/12
to ronin...@googlegroups.com
Aardvark is picking up "ronin_app" as a second target, rather than as an argument to "init".  Carson?  Brian?

Carson Gross

unread,
Feb 21, 2012, 1:43:27 PM2/21/12
to ronin...@googlegroups.com
You need a -name in front of 'ronin_app' I think.

Aardvark is interpreting 

  vark -url http://ronin-web.org/init.vark init ronin_app

As 'run the init task, then run the ronin_app task' IIUC.

Cheers,
Carson

chris

unread,
Feb 21, 2012, 2:00:46 PM2/21/12
to ronin
Ahh ok. The quickstart should be updated to reflect that too.

I'm also not sure what the effect is of leaving the -name parameter
off. I tried to re-create my project with the same name as the
quickstart example and Aardvark was still looking for and creating
my_ronin_app:


c:\d\projects>vark -url http://ronin-web.org/init.vark init my_app
Buildfile: http://ronin-web.org/init.vark
Done parsing Aardvark buildfile in 1923 ms




init:
      [get] Getting: http://ronin-web.org/ronin-template.zip
      [get] To: C:\Users\cgow\AppData\Local\Temp\ronin-
template1361006632697832278zip
    [unzip] Expanding: C:\Users\cgow\AppData\Local\Temp\ronin-
template1361006632697832278zip into .\my_ronin_app
     [echo] Created a new ronin application at c:\d\projects\.
\my_ronin_app.
     [echo]   To start your ronin app, cd my_ronin_app; vark server




BUILD FAILED
Target "my_app" does not exist in the project "null".

That's probably an Aardvark issue more than a Ronin one

Chris
On Feb 21, 1:43 pm, Carson Gross <carsongr...@gmail.com> wrote:
> You need a -name in front of 'ronin_app' I think.
>
> Aardvark is interpreting
>
>   vark -urlhttp://ronin-web.org/init.varkinit ronin_app
>
> As 'run the init task, then run the ronin_app task' IIUC.
>
> Cheers,
> Carson
>
>
>
>
>
>
>
> On Tue, Feb 21, 2012 at 10:40 AM, Gus Prevas <kpre...@gmail.com> wrote:
> > Aardvark is picking up "ronin_app" as a second target, rather than as an
> > argument to "init".  Carson?  Brian?
>
> > On Tue, Feb 21, 2012 at 1:39 PM, chris <chris....@gmail.com> wrote:
>
> >> Awesome that worked...sorta...Looks like I can name my project
> >> anything and ronin wants to prefix it with my_ :)
>
> >> c:\d\projects>vark -urlhttp://ronin-web.org/init.varkinit ronin_app
> >> >   vark -urlhttp://ronin-web.org/init.varkinit-name my_app

Gus Prevas

unread,
Feb 21, 2012, 2:02:36 PM2/21/12
to ronin...@googlegroups.com
my_ronin_app is the default name we use if no name is supplied.   Without "-name", whatever you put after "init" is interpreted as a second target to be executed after "init" finishes, rather than as the name for "init" to use.

chris

unread,
Feb 21, 2012, 2:04:37 PM2/21/12
to ronin
lol. I specified the name my_ronin_app to be different from the
quickstart example :)

Chris
On Feb 21, 2:02 pm, Gus Prevas <kpre...@gmail.com> wrote:
> my_ronin_app is the default name we use if no name is supplied.   Without
> "-name", whatever you put after "init" is interpreted as a second target to
> be executed after "init" finishes, rather than as the name for "init" to
> use.
>
>
>
>
>
>
>
> On Tue, Feb 21, 2012 at 2:00 PM, chris <chris....@gmail.com> wrote:
> > Ahh ok. The quickstart should be updated to reflect that too.
>
> > I'm also not sure what the effect is of leaving the -name parameter
> > off. I tried to re-create my project with the same name as the
> > quickstart example and Aardvark was still looking for and creating
> > my_ronin_app:
>
> > c:\d\projects>vark -urlhttp://ronin-web.org/init.varkinit my_app

Carson Gross

unread,
Feb 21, 2012, 2:08:41 PM2/21/12
to ronin...@googlegroups.com
Such is the pain of being THE VERY FIRST USER of Ronin 0.9.4

Thanks for playing! :)

Cheers,
Carson

chris

unread,
Feb 21, 2012, 2:16:32 PM2/21/12
to ronin
Heh. I think that with the IJ tooling Ronin is at least at "not quite
ready for prime time" awesomeness (http://snl.wikia.com/wiki/
The_Not_Ready_For_Prime_Time_Players)

Chris

Carson Gross

unread,
Feb 21, 2012, 2:24:45 PM2/21/12
to ronin...@googlegroups.com
I work in the IJ rails plugin a lot.  They make a lot of hay out of not quite ready for prime time. ;)

Cheers,
Carson
Reply all
Reply to author
Forward
0 new messages