meh` changed the topic of #opal to: http://opalrb.org - Ruby runtime and library on top of Javascript | 1.0.0 is near | This channel is logged at https://botbot.me/freenode/opal/
e_dub has joined #opal
e_dub has quit [Ping timeout: 255 seconds]
meh` has quit [Ping timeout: 256 seconds]
e_dub has joined #opal
boberetezeke has joined #opal
shevy has joined #opal
e_dub has quit [Quit: ZZZzzz…]
boberetezeke has quit [Ping timeout: 265 seconds]
GitHub65 has joined #opal
<GitHub65> [opal] elia pushed 2 new commits to master: http://git.io/vfLWz
<GitHub65> opal/master 511565a Vais Salikhov: Kernel#format, Kernel#sprintf, String#% fully compliant with rubyspec
<GitHub65> opal/master 6af46d7 Elia Schito: Merge pull request #805 from vais/format...
GitHub65 has left #opal [#opal]
travis-ci has joined #opal
<travis-ci> opal/opal#2486 (master - 6af46d7 : Elia Schito): The build passed.
travis-ci has left #opal [#opal]
elia_ has joined #opal
meh` has joined #opal
boberetezeke has joined #opal
meh` has quit [Quit: I don't want to live on this planet anymore.]
meh` has joined #opal
boberetezeke has quit [Ping timeout: 256 seconds]
bjmllr has joined #opal
boberetezeke has joined #opal
boberetezeke has quit [Ping timeout: 250 seconds]
boberetezeke has joined #opal
cphrmky has joined #opal
codezomb has joined #opal
elia_ has quit [Quit: Computer has gone to sleep.]
boberetezeke1 has joined #opal
boberetezeke has quit [Ping timeout: 245 seconds]
davispuh has joined #opal
boberetezeke1 has quit [Ping timeout: 245 seconds]
cphrmky has quit [Ping timeout: 264 seconds]
boberetezeke has joined #opal
boberetezeke has quit [Read error: Connection reset by peer]
boberetezeke has joined #opal
boberetezeke has quit [Ping timeout: 264 seconds]
meh` has quit [Ping timeout: 250 seconds]
meh` has joined #opal
fkchang has joined #opal
<fkchang> meh`: ping
<meh`> fkchang, pong
<fkchang> meh`: so if I want to add paggio to a vanilla opal project how do I do it? Just adding paggio to the Gemfile doesn't make it accessible to my opal code (actually using opal-rails)
<meh`> fkchang, since it's a gem
<meh`> you have to load the gem from the Ruby part
<meh`> fkchang, just a sec
<meh`> slow internet, want to give you a link to the source in opal-browser
<meh`> fkchang, keep in mind that's the Ruby side part, as in, it's what's getting ran by the opal compiler side of things
<meh`> not entirely sure how that should be done with opal-rails
<meh`> but adding Opal.use_gem 'paggio' somewhere in the pipeline should be enough
<fkchang> meh`: ok, I'll try and let u know what worked
<meh`> fkchang, usually opal libraries work out of the box because they add that themselves
<meh`> like opal-browser
<meh`> as in, requiring them does the Opal required stuff to be usable by Opal
<meh`> basically line 3
<fkchang> meh`: ok, so making a rails initializer that requires opal and does the Opal.use_gem line
<fkchang> so I can see it now, though a simple example causes causes chrome to lockup (high cpu, non responsive)
<meh`> fkchang, that's weird
<fkchang> h = html do
<fkchang> h1 "hi"
<fkchang> alert h
<fkchang> end
<fkchang>
<meh`> fkchang, might be an #inspect bug
<meh`> or #to_s
<meh`> I'll check later, I have to leave now, sorry
<fkchang> ok, thx