Ruby Hooks
The hook execute
option can also be provided Ruby code instead of a string. Here’s how it works:
- When the execute option is a String: UFO will shell out and run it as a script.
- When the execute option is a Ruby object: UFO will perform the
call
method on the object or class.
Ruby Class
When the Ruby object is a class with an instance method call
, UFO creates a new instance of the class and runs its call
method. Example:
.ufo/config/hooks/ufo.rb
class ShowEnv
def call(runner)
ENV.each do |key,value|
puts "#{key}: #{value}" if value.is_a?(String)
end
end
end
before("build",
execute: ShowEnv,
)
UFO will do something like this:
ShowEnv.new.call
Ruby Object
When the Ruby object, UFO expects it to have a call
method and will run it. Example:
.ufo/config/hooks/ufo.rb
before("build",
execute: lambda { puts ENV['RAILS_ENV'] }
)
UFO will do something like this:
@hook[:execute].call
Process Context
The context in which the hook runs is worth highlighting. When the execute
option is a String, UFO runs the script in a new child process. This the script is an independent process, and whatever is done to its environment is segregated.
When the execute
option a Ruby object, then UFO runs the hook within the same process. It means the hook can affect the same environment. IE: Setting environment variables.