Review for ruby articles
@Alexeex wrote: Hi all! A few months ago I started to publish articles about ruby. At the moment I have published about 15 articles. However, English is not my native language and I would like someone...
View ArticleCibyl, a lightweight curly-bracket language which compiles to Ruby and Crystal
@ecstaticcoder wrote: https://github.com/senselogic/CIBYL // Recursive Fibonacci function def fibonacci( n : Int32 ) { if ( n <= 1 ) { return 1; } else { return fibonacci( n - 1 ) + fibonacci( n -...
View ArticleHas anyone upgraded to MacOS Mojave? Did it break anything in your dev...
@AstonJ wrote: It’s only been out a few days, but interested in hearing how everyone else has got on and whether anything development-wise broke Posts: 4 Participants: 4 Read full topic
View ArticleAnnouncing the release of WebpackerCli
@danielpclark wrote: Announcing the release of WebpackerCli. Bringing the convenience of Rails’ Webpacker to any web framework… even those in other languages. Why? Webpack is a powerful tool which is...
View ArticleSetting up Ruby on Rails Development Environment on Mojave 10.14.2
@kobaltz wrote: Sometimes we have to configure a new development machine, whether it is for ourselves or a friend. We often find that there are some little pieces of our environment that we have...
View ArticleCreate a Beautiful API Documentation with Slate and Host it for Free on Netlify
@AmitPatel-BoTreeCons wrote: Are you looking for solution to have beautiful documentation of your API and hot it for free? Checkout Ruby + Middleman + Slate + Netlify BoTree Technologies – 26 Aug 19...
View Article