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/
_whitelogger has joined #opal
elia has quit [Quit: Connection closed for inactivity]
Kilobyte|StupidC has joined #opal
Kilo`byte has quit [Ping timeout: 260 seconds]
fkchang has quit [Ping timeout: 255 seconds]
tuelz has joined #opal
meh` has quit [Ping timeout: 258 seconds]
j_mcnally has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
j_mcnally has joined #opal
j_mcnally has quit [Client Quit]
j_mcnally has joined #opal
<ryanstout> so I’m finally getting around to trying opal 0.7 on volt, I’m getting this though: Uncaught TypeError: undefined is not a function . It’s on https://github.com/opal/opal/blob/0f3b9a27cf49ac7ec265ab7b3a4a2860ac0ce334/opal/corelib/runtime.js#L51 It doesn’t see $const_missing
<ryanstout> am I supposed to load something else in first now?
<ryanstout> on 0.7.0.beta1
<ryanstout> I’m guessing I’m not setting things up right and it’s because the compiler flags aren’t setup right
e_dub has quit [Read error: Connection reset by peer]
e_dub has joined #opal
ryanstout has quit [Quit: ryanstout]
j_mcnally has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
e_dub has quit [Read error: Connection reset by peer]
e_dub has joined #opal
wmnnd has joined #opal
elia has joined #opal
wmnnd has quit [Ping timeout: 272 seconds]
elia has quit [Changing host]
elia has joined #opal
GitHub9 has joined #opal
<GitHub9> [opal] adambeynon pushed 1 new commit to master: http://git.io/JnpqCA
<GitHub9> opal/master 74b1d38 Adam Beynon: module_function support without args to toggle module functions. Fixes #644
GitHub9 has left #opal [#opal]
travis-ci has joined #opal
<travis-ci> opal/opal#2119 (master - 74b1d38 : Adam Beynon): The build passed.
travis-ci has left #opal [#opal]
wmnnd has joined #opal
tuelz has quit [Quit: WeeChat 1.0]
_whitelogger has quit [Ping timeout: 256 seconds]
_whitelogger has joined #opal
GitHub70 has joined #opal
<GitHub70> [opal-jquery] adambeynon pushed 1 new commit to master: http://git.io/9TGCVw
<GitHub70> opal-jquery/master 0f2d82a Adam Beynon: Cleanup HTTP
GitHub70 has left #opal [#opal]
tuelz has joined #opal
mike_ has joined #opal
mike_ is now known as Guest3468
_whitelogger has joined #opal
wmnnd has quit [Read error: Connection reset by peer]
e_dub has quit [Quit: ZZZzzz…]
Zackio has quit [Quit: ZNC - http://znc.in]
e_dub has joined #opal
f-3r has joined #opal
j_mcnally has joined #opal
f-3r has quit [Quit: Leaving.]
f-3r has joined #opal
j_mcnally has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
e_dub has quit [Quit: ZZZzzz…]
e_dub has joined #opal
ryanstout has joined #opal
f-3r has quit [Ping timeout: 272 seconds]
fkchang has joined #opal
<fkchang> adambeynon: u mentioned glue code for haml on front/backend?
elia has quit [Quit: Connection closed for inactivity]
e_dub has quit [Quit: ZZZzzz…]
e_dub has joined #opal
j_mcnally has joined #opal
e_dub has quit [Quit: ZZZzzz…]
Zackio has joined #opal
Zackio has quit [Ping timeout: 250 seconds]
e_dub has joined #opal
fkchang has quit [Ping timeout: 245 seconds]
Zackio has joined #opal
j_mcnally has quit [Ping timeout: 245 seconds]
elia has joined #opal
e_dub has quit [Quit: ZZZzzz…]
GitHub32 has joined #opal
<GitHub32> [opal] adambeynon pushed 1 new commit to master: http://git.io/6PHibA
<GitHub32> opal/master ddb49e3 Adam Beynon: Fix for escaping backrefs inside regexps. Fixes #646.
GitHub32 has left #opal [#opal]
travis-ci has joined #opal
<travis-ci> opal/opal#2120 (master - ddb49e3 : Adam Beynon): The build passed.
travis-ci has left #opal [#opal]
<meh`> adambeynon, why is the function required?
<adambeynon> meh`: the replace string needed to have “$$” inside it, which has a special meaning inside replace strings themselves. No matter how I escaped it, I simply couldnt get it to work without using the function approach
<adambeynon> the replace string needed to be “$$1"
<adambeynon> sorry “$$2"
<adambeynon> I tried all sorts of escaping and it didnt work, but maybe im too tired to think properly :)
<adambeynon> it still needs some work as not all the string#sub specs work using those escapes