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/
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
boberetezeke has joined #opal
elia has quit [Quit: Computer has gone to sleep.]
boberetezeke has quit [Ping timeout: 250 seconds]
cpup has quit [Read error: Connection reset by peer]
cpup has joined #opal
cpup has quit [Ping timeout: 250 seconds]
cpup has joined #opal
cpup has quit [Read error: Connection reset by peer]
cpup has joined #opal
cpup has quit [Ping timeout: 264 seconds]
boberetezeke has joined #opal
cpup has joined #opal
boberetezeke has quit [Ping timeout: 250 seconds]
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
cpup has quit [Ping timeout: 250 seconds]
cpup has joined #opal
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
boberetezeke has joined #opal
boberetezeke has quit [Ping timeout: 264 seconds]
cpup has quit [Ping timeout: 244 seconds]
meh` has quit [Ping timeout: 256 seconds]
cpup has joined #opal
cpup has quit [Read error: Connection reset by peer]
cpup has joined #opal
denysonique has quit [Ping timeout: 245 seconds]
denysonique has joined #opal
boberetezeke has joined #opal
boberetezeke1 has joined #opal
boberetezeke has quit [Ping timeout: 264 seconds]
cpup has quit [Ping timeout: 255 seconds]
boberetezeke1 has quit [Ping timeout: 245 seconds]
cpup has joined #opal
cpup has quit [Quit: No Ping reply in 180 seconds.]
cpup has joined #opal
cpup has quit [Ping timeout: 245 seconds]
cpup has joined #opal
cpup has quit [Ping timeout: 264 seconds]
cpup has joined #opal
boberetezeke has joined #opal
boberetezeke has quit [Ping timeout: 245 seconds]
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
cpup has quit [Ping timeout: 245 seconds]
cpup has joined #opal
denysonique has quit [Ping timeout: 264 seconds]
cpup has quit [Ping timeout: 250 seconds]
cpup has joined #opal
boberetezeke has joined #opal
boberetezeke has quit [Ping timeout: 246 seconds]
denysonique has joined #opal
denysonique has joined #opal
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
cpup has quit [Ping timeout: 265 seconds]
cpup has joined #opal
boberetezeke has joined #opal
boberetezeke has quit [Ping timeout: 246 seconds]
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
cpup has quit [Ping timeout: 250 seconds]
cantonic has joined #opal
cpup has joined #opal
cpup has quit [Ping timeout: 240 seconds]
cpup has joined #opal
boberetezeke has joined #opal
boberetezeke has quit [Ping timeout: 256 seconds]
s2013 has joined #opal
s2013 has left #opal ["Leaving"]
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
cpup has quit [Ping timeout: 264 seconds]
cpup has joined #opal
boberetezeke has joined #opal
cantonic has quit [Quit: cantonic]
cpup has quit [Ping timeout: 244 seconds]
boberetezeke has quit [Ping timeout: 256 seconds]
cantonic has joined #opal
cantonic has quit [Client Quit]
cpup has joined #opal
cantonic has joined #opal
cpup has quit [Ping timeout: 264 seconds]
cpup has joined #opal
elia has joined #opal
cpup has quit [Ping timeout: 245 seconds]
cpup has joined #opal
GitHub104 has joined #opal
<GitHub104> [opal-rspec] elia pushed 1 new commit to master: http://git.io/beXU
<GitHub104> opal-rspec/master 5a8617f Elia Schito: Upgrade to the newly released Opal 0.7
GitHub104 has left #opal [#opal]
GitHub10 has joined #opal
<GitHub10> [opal-rspec] elia pushed 1 new commit to master: http://git.io/beXV
GitHub10 has left #opal [#opal]
<GitHub10> opal-rspec/master d0c3acb Elia Schito: Bump version
<GitHub42> [opal-rspec] elia tagged v0.4.0 at 9d689d2: http://git.io/beXr
GitHub42 has joined #opal
GitHub42 has left #opal [#opal]
travis-ci has joined #opal
<travis-ci> opal/opal-rspec#28 (master - 5a8617f : Elia Schito): The build passed.
travis-ci has left #opal [#opal]
travis-ci has joined #opal
<travis-ci> opal/opal-rspec#30 (v0.4.0 - d0c3acb : Elia Schito): The build passed.
travis-ci has left #opal [#opal]
boberetezeke has joined #opal
travis-ci has joined #opal
<travis-ci> opal/opal-rspec#29 (master - d0c3acb : Elia Schito): The build passed.
travis-ci has left #opal [#opal]
boberetezeke has quit [Ping timeout: 240 seconds]
denysonique has quit [Ping timeout: 264 seconds]
cpup has quit [Ping timeout: 244 seconds]
denysonique has joined #opal
cpup has joined #opal
jlebrech has joined #opal
<jlebrech> anyone create a gem with opal that run in both client and server? it needs to know if it's on the client or server.
<jlebrech> thinking of building a dal which provides you with a js object
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
boberetezeke has joined #opal
cpup has quit [Ping timeout: 250 seconds]
boberetezeke has quit [Ping timeout: 240 seconds]
cpup has joined #opal
cpup has quit [Ping timeout: 256 seconds]
<adambeynon> jlebrech: to distinguish between server/client, I just use `if RUBY_ENGINE == ‘opal’`
<jlebrech> i want it to require an orm if on server but communicate to it's twin via http if js
<jlebrech> if that makes sense
meh` has joined #opal
cpup has joined #opal
cpup has quit [Ping timeout: 245 seconds]
cpup has joined #opal
<adambeynon> jlebrech: yeah, I see. a simple if statement should work then. The nice thing about using RUBY_ENGINE is that the opal compiler will skip any code inside a failing if/else block, so any server specific code wont get compiled for the client
boberetezeke has joined #opal
boberetezeke has quit [Ping timeout: 265 seconds]
<jlebrech> adambeynon: and then an opal script can be accessed with js?
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
<adambeynon> jlebrech: yeap
jlebrech has quit [Remote host closed the connection]
cpup has quit [Ping timeout: 265 seconds]
cpup has joined #opal
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
boberetezeke has joined #opal
jlebrech has joined #opal
<jlebrech> limechat keeps disconnecting
<jlebrech> my reason for what i'm trying to do is because i find the client/server code is more and more tightly coupled, yet framework from both ends put up barriers
<jlebrech> http/cors/crud/route/controller/model
<jlebrech> crud = rest
boberetezeke has quit [Ping timeout: 265 seconds]
elia has quit [Ping timeout: 245 seconds]
elia has joined #opal
cpup has quit [Ping timeout: 245 seconds]
cpup has joined #opal
davispuh has joined #opal
cpup has quit [Ping timeout: 244 seconds]
cpup has joined #opal
boberetezeke has joined #opal
cpup has quit [Ping timeout: 256 seconds]
boberetezeke has quit [Ping timeout: 245 seconds]
cpup has joined #opal
elia has quit [Ping timeout: 264 seconds]
cpup has quit [Ping timeout: 256 seconds]
e_dub has quit [Quit: e_dub]
cpup has joined #opal
elia has joined #opal
cantonic has quit [Read error: Connection reset by peer]
cpup has quit [Ping timeout: 264 seconds]
cpup has joined #opal
Kilo`byte has quit [Ping timeout: 265 seconds]
Kilo`byte has joined #opal
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
e_dub has joined #opal
boberetezeke has joined #opal
cpup has quit [Ping timeout: 245 seconds]
cpup has joined #opal
f-3r has joined #opal
cpup has quit [Ping timeout: 256 seconds]
boberetezeke has quit [Read error: Connection reset by peer]
cpup has joined #opal
cpup has quit [Ping timeout: 240 seconds]
davispuh has quit [Remote host closed the connection]
cpup has joined #opal
denysonique has quit [Ping timeout: 264 seconds]
cpup has quit [Ping timeout: 246 seconds]
DrShoggoth has joined #opal
cpup has joined #opal
denysonique has joined #opal
denysonique has joined #opal
cpup has quit [Read error: Connection reset by peer]
cpup has joined #opal
cpup has quit [Ping timeout: 255 seconds]
cpup has joined #opal
elia has quit [Ping timeout: 245 seconds]
shlee322 has quit [Ping timeout: 272 seconds]
shlee322 has joined #opal
jlebrech has quit []
cpup has quit [Ping timeout: 250 seconds]
cpup has joined #opal
e_dub has quit [Quit: e_dub]
cpup has quit [Ping timeout: 256 seconds]
boberetezeke has joined #opal
cpup has joined #opal
cpup has quit [Ping timeout: 246 seconds]
DrShoggoth has quit [Remote host closed the connection]
cpup has joined #opal
denysonique has quit [Ping timeout: 252 seconds]
denysonique has joined #opal
cpup has quit [Ping timeout: 256 seconds]
e_dub has joined #opal
cpup has joined #opal
boberetezeke has quit [Ping timeout: 256 seconds]
cpup has quit [Ping timeout: 264 seconds]
cpup has joined #opal
davispuh has joined #opal
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
e_dub has quit [Quit: e_dub]
e_dub has joined #opal
cpup has quit [Ping timeout: 256 seconds]
davispuh has quit [Remote host closed the connection]
davispuh has joined #opal
cpup has joined #opal
davispuh has quit [Remote host closed the connection]
f-3r has quit [Remote host closed the connection]
cpup has quit [Ping timeout: 252 seconds]
cpup has joined #opal
cpup has quit [Quit: No Ping reply in 180 seconds.]
cpup has joined #opal
cpup has quit [Ping timeout: 252 seconds]
DrShoggoth has joined #opal
cpup has joined #opal
elia has joined #opal
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
cpup has quit [Ping timeout: 256 seconds]
cpup has joined #opal
cpup has quit [Ping timeout: 245 seconds]
cpup has joined #opal
cpup has quit [Ping timeout: 264 seconds]
cpup has joined #opal
<elia> adambeynon, meh`, Zackio, e_dub, ceej, boberetezeke-clo, krainboltgreene, wasnotrice, all
<meh`> ?
<elia> can you check / proof read this article for 0.7? https://gist.github.com/elia/d10694ed71884cd52553
<elia> meh`, I'm not that fast at typing :P
<meh`> overhauled in for Opal 0.7
<meh`> wait, can I just fork this?
<meh`> no
<elia> hit raw and repast should work
GitHub87 has joined #opal
<GitHub87> [opalrb.org] elia created draf-07-post (+1 new commit): http://git.io/bk3n
<GitHub87> opalrb.org/draf-07-post 9b9b164 Elia Schito: draft 0.7 relase
GitHub87 has left #opal [#opal]
GitHub147 has joined #opal
GitHub147 has left #opal [#opal]
<GitHub147> [opalrb.org] elia opened pull request #10: draft 0.7 relase (master...draf-07-post) http://git.io/bk3C
<elia> meh`, the PR above should be better for collaboration
<meh`> coo
<meh`> l
<elia> also I managed to write draf and relase in the same line :(
cpup has quit [Ping timeout: 256 seconds]
<adambeynon> elia: looking good to me :D nice overview
<meh`> just a lot of grammatical errors :P
elia has quit [Quit: Computer has gone to sleep.]
elia has joined #opal
<elia> meh`, heh, I know, fix at will :D
<elia> adambeynon, meh` maybe it's time to release opal-jquery and browser too (this morning I released opal-rspec)
<elia> and I'm going to release opal-rails no
<elia> now
GitHub93 has joined #opal
<GitHub93> [opalrb.org] elia pushed 1 new commit to draf-07-post: http://git.io/bkn1
<GitHub93> opalrb.org/draf-07-post f89bf3d Elia Schito: The missing ⌘S
GitHub93 has left #opal [#opal]
<elia> adambeynon, meh` lol I just realized that I didn't hit cmd-s before saving and committing,
<elia> most (some) errors should be gone, and links working
GitHub138 has joined #opal
<GitHub138> [opalrb.org] elia pushed 1 new commit to draf-07-post: http://git.io/bkcp
<GitHub138> opalrb.org/draf-07-post 28e2791 Elia Schito: link syntax
GitHub138 has left #opal [#opal]
cpup has joined #opal
GitHub131 has joined #opal
<GitHub131> [opal-rails] elia pushed 2 new commits to master: http://git.io/bkl2
<GitHub131> opal-rails/master a3a828e Elia Schito: Update dependencies
<GitHub131> opal-rails/master f6e91b3 Elia Schito: Bump version to 0.7
GitHub131 has left #opal [#opal]
GitHub162 has joined #opal
GitHub162 has left #opal [#opal]
<GitHub162> [opal-rails] elia tagged v0.7.0 at 3870b9f: http://git.io/bkla
cpup has quit [Ping timeout: 250 seconds]
travis-ci has joined #opal
<travis-ci> opal/opal-rails#124 (master - f6e91b3 : Elia Schito): The build passed.
travis-ci has left #opal [#opal]
cpup has joined #opal
<e_dub> hey guys! fantastic work.
denysonique has quit [Ping timeout: 245 seconds]
cpup has quit [Ping timeout: 265 seconds]
GitHub161 has joined #opal
<GitHub161> [opalrb.org] elia pushed 2 new commits to draf-07-post: http://git.io/bk2M
<GitHub161> opalrb.org/draf-07-post cf3774f Elia Schito: Put the try button back into the pre element
<GitHub161> opalrb.org/draf-07-post 7b23655 Elia Schito: Make the try opal link store stuff in location.search...
GitHub161 has left #opal [#opal]
<elia> e_dub, thanks, you read the article? anything I got wrong with the english language? :)
cpup has joined #opal
<elia> (I mean, thanks!)
<e_dub> yeah it looked good
<e_dub> lots of very cool changes too
<elia> yeah :D
GitHub110 has joined #opal
GitHub110 has left #opal [#opal]
<GitHub110> [opalrb.org] elia closed pull request #10: draft 0.7 relase (master...draf-07-post) http://git.io/bk3C
GitHub18 has joined #opal
<GitHub18> [opalrb.org] elia pushed 1 new commit to master: http://git.io/bkVI
<GitHub18> opalrb.org/master 75c5625 Elia Schito: Merge pull request #10 from opal/draf-07-post...
GitHub18 has left #opal [#opal]
denysonique has joined #opal
cpup has quit [Ping timeout: 265 seconds]
cpup has joined #opal
cpup has quit [Quit: No Ping reply in 180 seconds.]
cpup has joined #opal
e_dub has quit [Quit: e_dub]
cpup has quit [Ping timeout: 264 seconds]
cpup has joined #opal