Rails Foundation Contributing Member
Ruby on Rails consulting from engineers who work deep in Rails.
Saeloun helps teams modernize Rails applications, improve performance, untangle production issues, and ship product work with a senior Rails and React team in Boston and Pune.
- 595+
- engineering articles
- 2019
- founded in Boston
- Rails
- Foundation member
Latest Rails, React, and engineering articles
Field notes on framework changes, performance, upgrades, testing, and product engineering.
Companies Hiring at RailsConf 2019
List of companies hiring at RailsConf 2019 organised in MinneapolisRuby 2.7 Introduces Enumerable#filter_map
Ruby 2.7 introduces Enumerable#filter_map, combining filter and map into a single, efficient method callRails 6 Deprecates update_attributes Methods
Rails 6 has deprecated update_attributes and update_attributes! in favor of update and update!Rails 6 adds db:prepare rake task
Rails 6 adds db:prepare rake task which creates the database, loads the schema, runs the migrations and initializes with the seed dataRails 6 adds Relation#reselect
Rails 6 add a reselect method to Relation. This is a short-hand for "unscope(:select).select(fields)".Rails 6 Array including & excluding Methods
Rails 6 adds Array#including, Array#excluding, Enumerable#including, Enumerable#excludingRuby 2.7 adds Enumerable#tally
Ruby 2.7 has added Enumerable#tally. It helps to tally occurrences of elements in an Enumerable.Rails 6 Adds Timezone Support to Active Job
Rails 6 preserves timezones in Active Job, automatically restoring the timezone when jobs execute and propagating it to nested jobs.Rails 6 Adds before? and after? to Date/Time
Rails 6 adds before? and after? methods to Date, DateTime, Time, and TimeWithZone.Ruby 2.7 Shorthand Operator for Object#method
Ruby 2.7 adds experimental shorthand operator for Object#method. Allows method object access using :, example File.:basename