-
-
Save cowboyd/2159112 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'jenkins/plugin/behavior' | |
module Jenkins | |
# | |
# Defines the equivalent of `hudson.Extension` | |
# | |
module Extension | |
extend Plugin::Behavior | |
module ClassMethods | |
def ordinal(n = nil) | |
end | |
end | |
module InstanceMethods | |
end | |
end | |
class Foo | |
include Extension | |
ordinal 3 | |
end | |
class Bar | |
include Extension | |
ordinal 5 | |
end | |
puts Bar.ordinal | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment