foreman_hosts 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,19 @@
|
|
1
|
+
module ForemanHosts
|
2
|
+
module HostExtensions
|
3
|
+
extend ActiveSupport::Concern
|
4
|
+
|
5
|
+
included do
|
6
|
+
# execute callbacks
|
7
|
+
end
|
8
|
+
|
9
|
+
# create or overwrite instance methods...
|
10
|
+
def instance_method_name
|
11
|
+
end
|
12
|
+
|
13
|
+
module ClassMethods
|
14
|
+
# create or overwrite class methods...
|
15
|
+
def class_method_name
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_hosts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -100,6 +100,7 @@ files:
|
|
100
100
|
- app/controllers/foreman_hosts/syhostmodels_controller.rb
|
101
101
|
- app/controllers/foreman_hosts/hosts_controller.rb
|
102
102
|
- app/helpers/concerns/foreman_hosts/hosts_helper_extensions.rb
|
103
|
+
- app/models/concerns/foreman_hosts/hosts_extensions.rb
|
103
104
|
- app/models/foreman_hosts/syhostmodeldetail.rb
|
104
105
|
- app/models/foreman_hosts/syhostmodel.rb
|
105
106
|
- bin/foreman-hosts
|