Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
foreman_uuid_boot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LiU IT - Infrastructure
foreman_uuid_boot
Compare revisions
269fbb416355c4775f4965a1724431bf8b8e7c4f to 90a26fb8eff0c03a0ab7751c80b1e0b39915a1ae
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ITI/foreman_uuid_boot
Select target project
No results found
90a26fb8eff0c03a0ab7751c80b1e0b39915a1ae
Select Git revision
Branches
master
Tags
v0.1.0
v0.1.1
v0.2.0
v0.3.0
v0.4.0
v0.4.1
v0.4.2
v0.4.3
v0.4.4
v0.5.0
Swap
Target
ITI/foreman_uuid_boot
Select target project
ITI/foreman_uuid_boot
1 result
269fbb416355c4775f4965a1724431bf8b8e7c4f
Select Git revision
Branches
master
Tags
v0.1.0
v0.1.1
v0.2.0
v0.3.0
v0.4.0
v0.4.1
v0.4.2
v0.4.3
v0.4.4
v0.5.0
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Populate facet fields before main field population
· d9cc141d
Alexander Olofsson
authored
1 year ago
Verified
d9cc141d
Use some modern ruby-isms for rake/gemspec
· 90a26fb8
Alexander Olofsson
authored
1 year ago
Verified
90a26fb8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Rakefile
+8
-5
8 additions, 5 deletions
Rakefile
app/models/concerns/foreman_uuid_boot/host_discovered_extensions.rb
+2
-1
2 additions, 1 deletion
.../concerns/foreman_uuid_boot/host_discovered_extensions.rb
foreman_uuid_boot.gemspec
+1
-3
1 addition, 3 deletions
foreman_uuid_boot.gemspec
with
11 additions
and
9 deletions
Rakefile
View file @
90a26fb8
require
"bundler/gem_tasks"
require
"rake/testtask"
#!/usr/bin/env rake
# frozen_string_literal: true
require
'bundler/gem_tasks'
require
'rake/testtask'
Rake
::
TestTask
.
new
(
:test
)
do
|
t
|
t
.
libs
<<
"
test
"
t
.
libs
<<
"
lib
"
t
.
libs
<<
'
test
'
t
.
libs
<<
'
lib
'
t
.
test_files
=
FileList
[
'test/**/*_test.rb'
]
end
task
:
default
=>
:test
task
default
:
:test
This diff is collapsed.
Click to expand it.
app/models/concerns/foreman_uuid_boot/host_discovered_extensions.rb
View file @
90a26fb8
...
...
@@ -3,8 +3,9 @@
module
ForemanUuidBoot
module
HostDiscoveredExtensions
def
populate_fields_from_facts
(
parser
,
type
,
source_proxy
)
super
populate_facet_fields
(
parser
,
type
,
source_proxy
)
super
(
parser
,
type
,
source_proxy
)
end
end
end
This diff is collapsed.
Click to expand it.
foreman_uuid_boot.gemspec
View file @
90a26fb8
# frozen_string_literal: true
lib
=
File
.
expand_path
(
'lib'
,
__dir__
)
$LOAD_PATH
.
unshift
(
lib
)
unless
$LOAD_PATH
.
include?
(
lib
)
require
'foreman_uuid_boot/version'
require_relative
'foreman_uuid_boot/version'
Gem
::
Specification
.
new
do
|
spec
|
spec
.
name
=
'foreman_uuid_boot'
...
...
This diff is collapsed.
Click to expand it.