Ray

Results 11 comments of Ray

@xescuder, i tried your fix and it doesn't work. The url change but no render of the switch route component.

Check example: https://github.com/pragmagic/karax/blob/master/examples/todoapp/todoapp.nim#L120 If you need variables in the routing you'll need to implement something like this: https://github.com/dom96/jester/blob/master/jester/patterns.nim#L15

@itsumura-h i updated the links in my original comment to the corresponding files in those 2 projects. You'll be switching between the hash part of the url on each redraw...

Hello @ysbaddaden, any idea on how to recycle the connections every n minutes or when there's an IO:Timeout Exception?

I love the work you have been doing on the framework. Do you have a roadmap and a release date for the framework?. I'll love to have a view driver...

@bararchy, that's correct, right now i don't have the time for making this changes, but PR are welcomed :).

Hi @samueleaton: @sdogruyol asked for the same functionality for gmail smtp. There's 2 main features to implement, TLS connections (OpenSSL::SSL::Context::Client, https://crystal-lang.org/api/master/OpenSSL/SSL/Context/Client.html ) and Plain Auth (Super simple to implement). if...

Maybe take in consideration this api: http://ruby-doc.org/stdlib-2.0.0/libdoc/net/smtp/rdoc/Net/SMTP.html

See also: https://github.com/crystal-lang/crystal/blob/36b2fc4a677721ef5c7f2a27d6270f72b2999019/src/http/client.cr#L154 here's the code of TLS connection usage.