<GitHub171>
[jruby] chrisseaton pushed 2 new commits to truffle-head: http://git.io/vuTtr
<GitHub171>
jruby/truffle-head a6369c7 Chris Seaton: [Truffle] More complete documentation of failing TCK test.
<GitHub171>
jruby/truffle-head c2011c3 Chris Seaton: [Truffle] Fix extra newline.
<GitHub161>
[jruby] chrisseaton pushed 1 new commit to master: http://git.io/vuTti
<GitHub161>
jruby/master 63df8c1 Chris Seaton: [Truffle] Fix extra newline.
ITXpander has joined #jruby
yfeldblum has joined #jruby
pawnbox has quit [Remote host closed the connection]
skade has joined #jruby
pawnbox has joined #jruby
pawnbox has quit [Ping timeout: 250 seconds]
skade has quit [Quit: Computer has gone to sleep.]
skade has joined #jruby
skade has quit [Quit: Computer has gone to sleep.]
pawnbox has joined #jruby
skade has joined #jruby
pawnbox has quit [Ping timeout: 246 seconds]
subbu has joined #jruby
pawnbox has joined #jruby
pawnbox has quit [Ping timeout: 264 seconds]
yfeldblum has quit [Ping timeout: 240 seconds]
skade has quit [Quit: Computer has gone to sleep.]
<chrisseaton>
headius: is there a timeline for 9.0.5.0? We've adopted a new version of the Truffle API which should be API stable and I'm trying to switch to using your releases for demos if possible
<headius>
unlikely until enebo is back
<headius>
which should be within a week I think?
<chrisseaton>
ok thanks
EasyName has joined #jruby
<lopex>
numbers?
<EasyName>
I'm very new to programming and have finished recently learning ruby. Now I really don't understand how i can compile my ruby scripts to a jar app?
<chrisseaton>
EasyName: the normal way to use Ruby isn't to compile your Ruby program to a jar
<chrisseaton>
EasyName: I think there is a way to create a war that just contains the Ruby scripts if you need them
<chrisseaton>
EasyName: is there a specific reason you want a jar file?
<EasyName>
i have no reason for that
<EasyName>
but I also wanted to create software apps with UI if that is even possible?
<chrisseaton>
EasyName: yes there's http://shoesrb.com, or you could use Java interop to use SWT or Swing
<chrisseaton>
EasyName: personally I'd do all GUIs using HTML these days, even if it was just local
<EasyName>
Thanks you very much Chriss, I will look into that!
<chrisseaton>
if you don't need a jar file then you just do jruby my_app.rb, like you would with MRI