#Ruby #Rails https://www.driftingruby.com/episodes/rails-api-active-model-serializer?utm_source=ruby-flow&utm_medium=social&utm_campaign=ruby-flow
Drifting Ruby
Episode 50 - Rails API - Active Model Serializer
Using ActiveModel::Serializer, learn how to create the JSON responses for your Rails API application. ASM is a great object oriented approach to building a JSON API.
#Ruby https://jaszczurowski.com/on-requests-processing-with-puma-and-unicorn-yet-another-introduction-for-newcomers/
Damian Jaszczurowski
On requests processing with Puma and Unicorn. Yet another introduction for newcomers.
These two are two mostly used application servers for ruby apps. How similar and how different are they? In the past unicorn was the most popular, nowadays puma is the leader. Code used for tests c…
#Ruby #Jekyll https://webdesign.tutsplus.com/tutorials/how-to-create-and-publish-a-jekyll-theme-gem--cms-27475
Web Design Envato Tuts+
How to Create and Publish a Jekyll Theme Gem
One of Jekyll’s noteworthy new features is the ability create official themes in the form of Ruby gems. These themes can be installed by a Jekyll user to style their static blog or website with...
#Ruby #WebDevelopment https://www.sitepoint.com/rack-app-a-performant-and-pragmatic-web-microframework/?utm_source=rubyweekly&utm_medium=email
SitePoint
Rack-App: A Performant and Pragmatic Web Microframework
David Bush introduces Rack-App, a web microframework in Ruby that has a single dependency, can handle thousands of endpoints, and is among the fastest around.
#Ruby #DevToolset https://www.rubyflow.com/p/cvi0a1-jsonapi-rb-efficiently-produce-and-consume-json-api-documents
Rubyflow
jsonapi-rb – Efficiently produce and consume JSON API documents. - RubyFlow
jsonapi-rb is a ruby library for producing and consuming JSON API documents. It is not tied to any framework (but comes with Rails and Hanami integrations in separate gems), favors clarity and efficiency.
#Ruby #Testing https://medium.freecodecamp.com/how-to-dry-out-your-rspec-tests-using-shared-examples-d5cc5d33fd76#.4my8gx7w5
freeCodeCamp
How to DRY out your RSpec Tests using Shared Examples
“Give me six hours to chop down a tree and I will spend the first four sharpening the axe.” — Abraham Lincoln
#Ruby How write a image downloader in Ruby in a bunch of lines: https://www.rubyguides.com/2017/10/build-an-image-downloader/
RubyGuides
Build an Image Downloader in Ruby
Build an Image Downloader in Ruby Watch this video to learn how to build an image dowloader program step-by-step using Ruby, Nokogiri & RestClient! Starting a new project & not sure where to start? Write down a plan! The
#Security #Ruby #Rails https://dev.to/philnash/better-passwords-in-ruby-applications-with-the-pwned-passwords-api-4o9f
DEV Community
Better passwords in Ruby applications with the Pwned Passwords API
The Pwned Passwords API can tell you if a password has been seen in a data breach before. Use it in your Ruby application to encourage better passwords.
#Ruby #Rails https://www.digitalocean.com/community/tutorials/how-to-build-a-ruby-on-rails-application
Digitalocean
How To Build a Ruby on Rails Application | DigitalOcean
Rails is a web application framework written in Ruby. It takes an opinionated approach to application development, assuming that set conventions will best se…