<franzejr>
Yeah. So, Ruby community use a lot RubyFlow...
Oliphaunte has joined #crystal-lang
Oliphaunte has quit [Remote host closed the connection]
soveran has quit [Remote host closed the connection]
franzejr has quit [Quit: Page closed]
pawnbox has joined #crystal-lang
pawnbox has quit [Ping timeout: 260 seconds]
snsei has quit [Remote host closed the connection]
Oliphaunte has joined #crystal-lang
pilne has joined #crystal-lang
soveran has joined #crystal-lang
soveran has quit [Ping timeout: 276 seconds]
pilne has left #crystal-lang ["Leaving!"]
Raimondii has joined #crystal-lang
pawnbox has joined #crystal-lang
Raimondi has quit [Ping timeout: 240 seconds]
pawnbox has quit [Ping timeout: 244 seconds]
Philpax has joined #crystal-lang
ome has joined #crystal-lang
Raimondii is now known as Raimondi
trapped has quit [Read error: Connection reset by peer]
cyjimmy264 has joined #crystal-lang
soveran has joined #crystal-lang
soveran has quit [Ping timeout: 276 seconds]
pawnbox has joined #crystal-lang
pawnbox has quit [Ping timeout: 260 seconds]
Oliphaunte has quit [Remote host closed the connection]
snsei has joined #crystal-lang
Oliphaunte has joined #crystal-lang
Oliphaunte has quit [Remote host closed the connection]
Oliphaunte has joined #crystal-lang
Oliphaunte has quit [Remote host closed the connection]
soveran has joined #crystal-lang
pawnbox has joined #crystal-lang
soveran has quit [Ping timeout: 276 seconds]
wim_ has joined #crystal-lang
pawnbox has quit [Ping timeout: 250 seconds]
<wim_>
HI, I'm following the 'Getting Started' page for Sidekiq at https://github.com/mperham/sidekiq.cr/wiki/Getting-Started. On compilation, if get the error: "Error opening file '/home/wim/projects/try/crystal/try/sample/libs/sidekiq/sidekiq/../../web/views/dashboard.ecr' with mode 'r': No such file or directory (Errno)". I believe I'm missing a shard, could anyone help me add it?
<wim_>
For anyone taking a looking at the page, I'm trying to run the web.cr demo program.
Oliphaunte has joined #crystal-lang
Oliphaunte has quit [Remote host closed the connection]
Oliphaunte has joined #crystal-lang
Oliphaunte has quit [Remote host closed the connection]
pawnbox has joined #crystal-lang
pawnbox has quit [Ping timeout: 264 seconds]
<BlaXpirit>
wim_, hmm i think it needs to be ran differently, maybe from a different folder
<BlaXpirit>
e.g. cd folder; crystal prog.cr instead of crystal folder/prog.cr
Oliphaunte has joined #crystal-lang
Oliphaunte has quit [Remote host closed the connection]
pawnbox has joined #crystal-lang
Oliphaunte has joined #crystal-lang
pawnbox has quit [Ping timeout: 260 seconds]
Oliphaunte has quit [Remote host closed the connection]
<wim_>
BlaXpirit, I compile from the top folder, but the error comes from a source file lower down. Also, the file 'web/views/dashboard.ecr' is missing.
<BlaXpirit>
wim_, k but for real try what I said
cyjimmy264 has quit [Remote host closed the connection]
Oliphaunte has joined #crystal-lang
mgarciaisaia has joined #crystal-lang
soveran has joined #crystal-lang
soveran has quit [Ping timeout: 244 seconds]
pawnbox has joined #crystal-lang
Oliphaunte has quit [Remote host closed the connection]
pawnbox has quit [Ping timeout: 276 seconds]
mgarciaisaia has quit [Quit: Leaving.]
mgarciaisaia has joined #crystal-lang
mgarciaisaia1 has joined #crystal-lang
mgarciaisaia has quit [Read error: Connection reset by peer]
<wim_>
BlaXpirit, did that, no change. How can I find out which shard '../../web/views/dashboard.ecr' is supposed to be?
<BlaXpirit>
works here. examples$ crystal build web.cr
pawnbox has joined #crystal-lang
mgarciaisaia1 has quit [Read error: Connection reset by peer]
pawnbox has quit [Ping timeout: 250 seconds]
<wim_>
BlaXpirit, the web subdir of sidekiq hasn't been loaded with the shard. Should I download this separately?
<BlaXpirit>
wim_, I think you should git clone instead
<wim_>
Hm. I've been following the 'Getting Started' literally. No mention of this. Perhaps I should report an issue to mperham about this.
<wim_>
OK, will try that.
<BlaXpirit>
wim_, hm weird. well here's what I did: git clone https://github.com/mperham/sidekiq.cr && cd sidekiq.cr && crystal dep && mv libs examples && cd examples && crystal build web.cr
<wim_>
ok thanks.
ome has quit [Quit: Connection closed for inactivity]
snsei has quit [Remote host closed the connection]
<Davy_CC>
I got a error when I'm using Regex#match with a block "'Regex#match' is not expected to be invoked with a block, but a block was given"
<BlaXpirit>
Davy_CC, well no, $` raises now but it was nilable before
soveran has joined #crystal-lang
<BlaXpirit>
this commit shows how it went from $~ : MatchData + having to check for MatchData::EMPTY to $~ : MatchData | Nil but now it seems to be $~ : MatchData again but if you use it it can raise
<BlaXpirit>
and when I wrote $` I meant $~
<Davy_CC>
oops you're right
soveran has quit [Remote host closed the connection]
<Davy_CC>
And it seems that block never supported in the history (I watched the git history of /src/regex.cr)
soveran has joined #crystal-lang
<BlaXpirit>
honestly it almost seems worth implementing an automatic checker of validity of examples in docs
<Davy_CC>
lol
snsei has joined #crystal-lang
snsei has quit [Ping timeout: 244 seconds]
wim_ has quit [Quit: Leaving]
pawnbox has joined #crystal-lang
onionhammer has quit [Read error: Connection reset by peer]
soveran has quit [Remote host closed the connection]
<Davy_CC>
I found some problem that Float64 doesn't have `to_json` method