Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Instead of writing a method in Ruby, you might as well write an entire class for the task. That's called the method object pattern and helps to reduce complexity.
This gem helps you to do that, like so:
class SaySometing
include Calls
# Input
option :text
# Output
def call
puts text
end
end
SaySometihng.call(text: 'Hi there!') # => 'Hi there!'
# Add this to your Gemfile
gem 'calls'
If you only have one mandatory, obvious argument, this is what your implementation most likely would look like:
class CalculateTax
include Calls
param :product
def call
product.price * 0.1
end
end
bike = Bike.new(price: 50)
CalculateTax.call(bike) # => 5
If you prefer to use named keywords, use this instead:
class CalculateTax
include Calls
option :product
def call
product.price * 0.1
end
end
bike = Bike.new(price: 50)
CalculateTax.call(product: bike) # => 5
You can also use both params and options. They are all mandatory.
class CalculateTax
include Calls
param :product
option :dutyfree
def call
return 0 if dutyfree
product.price * 0.1
end
end
bike = Bike.new(price: 50)
CalculateTax.call(bike, dutyfree: true) # => 0
You can make options optional by defining a default value in a proc:
class CalculateTax
include Calls
param :product
option :dutyfree, default: -> { false }
def call
return 0 if dutyfree
product.price * 0.1
end
end
bike = Bike.new(price: 50)
CalculateTax.call(bike) # => 5
That's it!
A minimal implementation of the method object pattern would probably look like the following. This is sometimes also referred to as "service class".
This is what deadlyicon/calls originally used (that's where the gem name comes from).
class SaySometing
def self.call(*args, &block)
new.call(*args, &block)
end
def call(text)
puts text
end
end
Basically everything passed to MyClass.call(...)
would be passed on to MyClass.new.call(...)
.
Even better still, it should be passed on to MyClass.new(...).call
so that your implementation becomes cleaner:
class SaySometing
def self.call(*args, &block)
new(*args, &block).call
end
def initialize(text:)
@text = text
end
def call
puts @text
end
end
People implemented that, but in doing so reinvented the wheel. Because now you not only have the method object pattern (i.e. call
), now you also have to deal with initialization (i.e. new
).
That's where the popular dry-initializer gem comes in. It is a battle-tested way to initialize objects with mandatory and optional attributes.
The calls
gem (you're looking at it right now), combines both the method object pattern and dry initialization. The team, who initially came up with using dry-initializer
, published the initial code version under the name method_object.
params
cannot be optional (or have default values). This is because there can be several params in a row, which leads to confusion when they are optional.MIT License, see LICENSE.md
FAQs
Unknown package
We found that calls demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.