Skip to content

Commit b0393af

Browse files
committed
Add a stub module for Notifications.
1 parent 342783c commit b0393af

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

lib/jujube/components.rb

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
require_relative "components/wrappers"
77
require_relative "components/builders"
88
require_relative "components/publishers"
9+
require_relative "components/notifications"
910

1011
module Jujube
1112
# Helper methods for creating jenkins-job-builder components.
@@ -17,5 +18,6 @@ module Components
1718
include Wrappers
1819
include Builders
1920
include Publishers
21+
include Notifications
2022
end
2123
end
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module Jujube
2+
module Components
3+
4+
# Helper methods for creating notification components.
5+
module Notifications
6+
7+
# None defined yet
8+
9+
end
10+
end
11+
end

0 commit comments

Comments
 (0)