lighttroupe/luz-next

View on GitHub
engine/plugins/variable_inputs/minutes-stepped.luz.rb

Summary

Maintainability
A
0 mins
Test Coverage
class VariableInputMinutesStepped < VariableInput
    title                "Minutes Stepped"
    description "The stepped progress of the minute hand of an analog clock showing the current Real-World time."

    categories :special

    def value
        Time.now.min / 60.0
    end
end