mirror of
https://github.com/jimeh/skyhook.git
synced 2026-02-19 11:06:38 +00:00
11 lines
154 B
Ruby
11 lines
154 B
Ruby
class HasLatestAction < Action
|
|
|
|
def default
|
|
Projects.has_latest?
|
|
end
|
|
|
|
def method_missing(*args)
|
|
Projects.has_latest?(*args)
|
|
end
|
|
|
|
end |