<crystal-gh>
[crystal] asterite pushed 1 new commit to master: http://git.io/vm1Nb
<crystal-gh>
crystal/master 98ba387 Ary Borenszweig: Fixed #946: better error message when doing `a = 1 if a` (using a variable before it's declared in a suffix if)
lokulin has joined #crystal-lang
<crystal-gh>
[crystal] asterite pushed 2 new commits to master: http://git.io/vm1jy
<crystal-gh>
crystal/master c37849a Ary Borenszweig: Fixed #991: give error when trying to use instance variable inside enum type
<crystal-gh>
crystal/master 9061f84 Ary Borenszweig: Added spec for when trying to use instance variable inside primitive type
<crystal-gh>
[crystal] asterite pushed 1 new commit to master: http://git.io/vmMeX
<crystal-gh>
crystal/master 21ce1f1 Ary Borenszweig: Fixed #870: correct Return#to_s when exp is an Expressions
ponga has quit [Quit: Connection closed for inactivity]
willl has joined #crystal-lang
luislavena has quit [Remote host closed the connection]
sailorswift has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
havenwood has quit [Ping timeout: 264 seconds]
luislavena has joined #crystal-lang
luislavena has quit [Ping timeout: 256 seconds]
havenwood has joined #crystal-lang
luislavena has joined #crystal-lang
luislavena has quit [Remote host closed the connection]
sailorswift has joined #crystal-lang
<crystal-gh>
[crystal] davydovanton opened pull request #1002: Update documentation for Symbol struct (master...doc-symbol) http://git.io/vmMpM
havenwood has quit [Ping timeout: 240 seconds]
flaviu has quit [Read error: Connection reset by peer]
flaviu has joined #crystal-lang
NeverDie has joined #crystal-lang
havenwood has joined #crystal-lang
blue_deref has quit [Quit: bbn]
mrx1 has joined #crystal-lang
sailorswift has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
luislavena has joined #crystal-lang
luislavena has quit [Ping timeout: 260 seconds]
<crystal-gh>
[crystal] bjmllr opened pull request #1003: if doesn't change the types of methods (gh-pages...if-met) http://git.io/vmDgq
<vifino>
If I have function x expecting a block, in which I want to pass the block x expects to function y, how would I do that?
BlaXpirit has quit [Quit: Konversation]
<jhass>
vifino: def x(&block); y(&block); end; if the signature matches (you need to specify it in the method definition too, &block : Foo -> Bar), else just def x; y { yield } end