- Published
- Author
- Mohammad hussainSystem Analyst
pagy_array This method is the same as the generic pagy method, but specialized for an Array.Code
require 'pagy/extras/array'
@pagy, @items = pagy_array(an_array)#CU6U0R822 #ruby
At Codemancers, we believe every day is an opportunity to grow. This section is where our team shares bite-sized discoveries, technical breakthroughs and fascinating nuggets of wisdom we've stumbled upon in our work.
pagy_array This method is the same as the generic pagy method, but specialized for an Array.require 'pagy/extras/array'
@pagy, @items = pagy_array(an_array)each_with_object is an enumerable method in Ruby that allows you to iterate over a collection while building up an object (like an array or hash). Unlike map, which creates a new array, each_with_object lets you modify an existing object in a single pass.collection.each_with_object(initial_object) do |item, object|
# Modify the object inside the block
endcollection: The array or enumerable you're iterating over.initial_object: The object that will be modified (e.g., {} for a hash or [] for an array).item: The current element in the iteration.object: The object that accumulates the results.each_with_object with a Hashnumbers = [1, 2, 3, 4, 5]
squares = numbers.each_with_object({}) do |num, hash|
hash[num] = num**2
end
puts squares
# Output: {1=>1, 2=>4, 3=>9, 4=>16, 5=>25}each_with_object?{} before the loop.collection_select when you need to populate a dropdown with a collection of ActiveRecord objects. It is built on top of select and provides a convenient way to display object attributes instead of a simple array of strings.select is used for manually defining options, typically from an array of strings or key-value pairs.collection_select is specifically designed for selecting records from an ActiveRecord collection, making it useful when working with database associations.lib/tasks directory..rake file in lib/tasks/ touch lib/tasks/custom_tasks.rakenamespace :custom do
desc "Say hello from a custom rake task"
task :hello do
puts "Hello from custom Rake task!"
end
endbin/rake custom:hello:environment if your task interacts with the database or modelsinverse_of option in ActiveRecord helps Rails recognize bidirectional associations in memory, reducing redundant database queries.class Employee < ApplicationRecord
belongs_to :department, foreign_key: 'department_code', primary_key: 'code', inverse_of: :employees
end
class Department < ApplicationRecord
has_many :employees, foreign_key: 'department_code', primary_key: 'code', inverse_of: :department
endinverse_of?inverse_of, Rails may reload the association unnecessarily:employee = Employee.first
department = employee.department # Triggers a SQL query
department.employees.include?(employee) # Without `inverse_of`, this could trigger another queryinverse_of, Rails avoids the extra query because it knows department.employees already includes employeedry-validation contracts, values is a hash containing all the parameters being validated. When defining rule blocks, you can access specific parameters using hash-like syntax.class MyContract < Dry::Validation::Contract
params do
required(:category).filled(:string)
end
rule(:category) do
key.failure("is not allowed") unless values[:category] == "approved_value"
end
endvalues holds all input parameters.values[:key] to access specific parameters inside rule blocks.payload = {
id: 123,
name: "Sample Item",
status: "processed",
timestamp:
Time.now.to_i
}
Karafka.producer.produce_sync(
topic: "your_topic_name",
payload: payload.to_json
)produce_sync ensures the message is sent before proceeding.topic specifies the Kafka topic where the message will be published.payload should be serialized into JSON or another supported format.Paris is the capital of France, known for the Eiffel Tower.Paris is the capital of France, known for the Eiffel Tower.Showing 8 to 10 of 82 results
Codemancers can bring your vision to life and help you achieve your goals