Tutorials


Add Bootstrap 4 to your Ruby on Rails 6 application
Run the following command from your application directory (if you don't have yarn, install it):yarn add [email protected] jquery popper.jsYou can check that the libraries have been installed properly by checking the package.json file (listed under t...

Ola Bini: Programming Language Synchronicity: Ruby Metaprogramming techniques
Ruby allows you to create and modify classes and modules dynamically. You can do almost anything you would like on any class or module that isn't frozen. This is very useful in certain places. The Struct class is probably the best example, where.







RuboCoping with legacy: Bring your Ruby code up to Standard
You will hardly find a Ruby developer who hasn’t heard about RuboCop, the Ruby linter and formatter. And still, it is not that hard to find a project where code style is not enforced. Usually, these are large, mature codebases, often successful on...