foreman_dhcp_browser 0.0.8 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +5 -2
- data/Rakefile +1 -1
- data/app/controllers/dhcp_controller.rb +2 -2
- data/app/models/dhcp_entries.rb +1 -1
- data/app/models/foreman_dhcp_browser/concerns/net_record_extension.rb +1 -1
- data/app/views/dhcp/index.html.erb +2 -2
- data/app/views/dhcp/show.html.erb +1 -1
- data/lib/foreman_dhcp_browser/engine.rb +12 -7
- data/lib/foreman_dhcp_browser/version.rb +2 -2
- data/lib/foreman_dhcp_browser.rb +1 -1
- data/lib/tasks/foreman_dhcp_browser.rake +21 -0
- metadata +6 -9
- data/app/helpers/dhcp_helper.rb +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 02ae35213d36cf1c734f151070ddb46a4f25ef5659510a8c0f92b38281155fa8
|
4
|
+
data.tar.gz: aa1e85ddbf55feaa4594708c87b566e45ce2e02e0360940cd81b5d948a872fa9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3dacdf1b797aa0d31ebce5e8cd6750f16cd5eaaba97887fef56b11b937f6b7a211d4d8f9d194272e0017da330a09f81501b71d3f3c029b0e3e7cb2ffa57c767
|
7
|
+
data.tar.gz: 4f1c67b029c07f0da80d1a9195fca0c2f5c7efdc58e771ceff5713940aaa8b1bb7d19badbbbd65ab0710efdd8fcc32949ccc39b0bdfa454898750229e700fcee
|
data/README.md
CHANGED
@@ -6,13 +6,16 @@ smart proxy.
|
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
9
|
+
The foreman_dhcp_browser plugin is available both via RPM/DEB.
|
10
|
+
|
11
|
+
eg; yum install tfm-rubygem-foreman_dhcp_browser
|
12
|
+
|
9
13
|
See [How_to_Install_a_Plugin](http://projects.theforeman.org/projects/foreman/wiki/How_to_Install_a_Plugin)
|
10
14
|
for how to install Foreman plugins
|
11
15
|
|
12
|
-
The gem name is "foreman_dhcp_browser".
|
13
|
-
|
14
16
|
## Latest code
|
15
17
|
|
18
|
+
The gem name is "foreman_dhcp_browser".
|
16
19
|
You can get the master branch of the plugin by specifying your Gemfile in this way:
|
17
20
|
|
18
21
|
gem 'foreman_dhcp_browser', :git => "https://github.com/theforeman/foreman_dhcp_browser.git"
|
data/Rakefile
CHANGED
@@ -14,7 +14,7 @@ end
|
|
14
14
|
|
15
15
|
RDoc::Task.new(:rdoc) do |rdoc|
|
16
16
|
rdoc.rdoc_dir = 'rdoc'
|
17
|
-
rdoc.title = '
|
17
|
+
rdoc.title = 'ForemanDHCPBrowser'
|
18
18
|
rdoc.options << '--line-numbers'
|
19
19
|
rdoc.rdoc_files.include('README.rdoc')
|
20
20
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
@@ -1,4 +1,4 @@
|
|
1
|
-
class
|
1
|
+
class DHCPController < ApplicationController
|
2
2
|
before_action :find_proxy
|
3
3
|
before_action :find_record, only: %i[show edit update destroy]
|
4
4
|
|
@@ -45,7 +45,7 @@ class DhcpController < ApplicationController
|
|
45
45
|
return not_found if params[:subnet_id].blank?
|
46
46
|
@subnet = ::Subnet.find(params[:subnet_id])
|
47
47
|
return not_found unless @subnet.try(:dhcp?)
|
48
|
-
@entries =
|
48
|
+
@entries = DHCPEntries.new(subnet: @subnet)
|
49
49
|
end
|
50
50
|
|
51
51
|
def find_record
|
data/app/models/dhcp_entries.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<% title "DHCP Reservations for #{@subnet}" %>
|
2
|
-
<% title_actions button_group(link_to_if_authorized _('New DHCP Record'), hash_for_new_subnet_dhcp_path(params[:subnet_id])) %>
|
3
|
-
<table class="
|
2
|
+
<% title_actions button_group(link_to_if_authorized _('New DHCP Record'), hash_for_new_subnet_dhcp_path(params[:subnet_id]), :class => 'btn btn-primary') %>
|
3
|
+
<table class="<%= table_css_classes 'table-condensed' %>" data-table="inline">
|
4
4
|
<thead>
|
5
5
|
<th>Name</th>
|
6
6
|
<th>IP</th>
|
@@ -1,16 +1,21 @@
|
|
1
1
|
require 'deface'
|
2
|
-
module
|
2
|
+
module ForemanDHCPBrowser
|
3
3
|
class Engine < ::Rails::Engine
|
4
|
-
|
5
|
-
|
4
|
+
engine_name 'foreman_dhcp_browser'
|
5
|
+
|
6
|
+
initializer 'foreman_dhcp_browser.register_plugin', before: :finisher_hook do |app|
|
7
|
+
app.reloader.to_prepare do
|
8
|
+
Foreman::Plugin.register :foreman_dhcp_browser do
|
9
|
+
requires_foreman '>= 3.14.0'
|
10
|
+
end
|
6
11
|
end
|
7
12
|
end
|
8
13
|
|
9
14
|
config.to_prepare do
|
10
|
-
::Net::Record.
|
11
|
-
::Net::Record.
|
12
|
-
::Net::Record.
|
13
|
-
::Net::Record.
|
15
|
+
::Net::Record.include ::ActiveModel::AttributeMethods
|
16
|
+
::Net::Record.include ::ActiveModel::Conversion
|
17
|
+
::Net::Record.extend ::ActiveModel::Naming
|
18
|
+
::Net::Record.include ForemanDHCPBrowser::Concerns::NetRecordExtension
|
14
19
|
end
|
15
20
|
end
|
16
21
|
end
|
@@ -1,3 +1,3 @@
|
|
1
|
-
module
|
2
|
-
VERSION = '0.
|
1
|
+
module ForemanDHCPBrowser
|
2
|
+
VERSION = '0.1.1'.freeze
|
3
3
|
end
|
data/lib/foreman_dhcp_browser.rb
CHANGED
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'rake/testtask'
|
2
|
+
|
3
|
+
# Tests
|
4
|
+
namespace :test do
|
5
|
+
desc 'Test ForemanDHCPBrowser'
|
6
|
+
Rake::TestTask.new(:foreman_dhcp_browser) do |t|
|
7
|
+
test_dir = File.expand_path('../../test', __dir__)
|
8
|
+
t.libs << 'test'
|
9
|
+
t.libs << test_dir
|
10
|
+
t.pattern = "#{test_dir}/**/*_test.rb"
|
11
|
+
t.verbose = true
|
12
|
+
t.warning = false
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
Rake::Task[:test].enhance ['test:foreman_dhcp_browser']
|
17
|
+
|
18
|
+
load 'tasks/jenkins.rake'
|
19
|
+
if Rake::Task.task_defined?(:'jenkins:unit')
|
20
|
+
Rake::Task['jenkins:unit'].enhance ['test:foreman_dhcp_browser']
|
21
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_dhcp_browser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ohad Levy
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-24 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: deface
|
@@ -35,7 +34,6 @@ files:
|
|
35
34
|
- README.md
|
36
35
|
- Rakefile
|
37
36
|
- app/controllers/dhcp_controller.rb
|
38
|
-
- app/helpers/dhcp_helper.rb
|
39
37
|
- app/models/dhcp_entries.rb
|
40
38
|
- app/models/foreman_dhcp_browser/concerns/net_record_extension.rb
|
41
39
|
- app/overrides/add_link_to_dhcp_entries.rb
|
@@ -48,10 +46,11 @@ files:
|
|
48
46
|
- lib/foreman_dhcp_browser.rb
|
49
47
|
- lib/foreman_dhcp_browser/engine.rb
|
50
48
|
- lib/foreman_dhcp_browser/version.rb
|
49
|
+
- lib/tasks/foreman_dhcp_browser.rake
|
51
50
|
homepage: https://github.com/theforeman/foreman_dhcp_browser
|
52
|
-
licenses:
|
51
|
+
licenses:
|
52
|
+
- GPL-3.0
|
53
53
|
metadata: {}
|
54
|
-
post_install_message:
|
55
54
|
rdoc_options: []
|
56
55
|
require_paths:
|
57
56
|
- lib
|
@@ -66,9 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
65
|
- !ruby/object:Gem::Version
|
67
66
|
version: '0'
|
68
67
|
requirements: []
|
69
|
-
|
70
|
-
rubygems_version: 2.6.8
|
71
|
-
signing_key:
|
68
|
+
rubygems_version: 3.6.2
|
72
69
|
specification_version: 4
|
73
70
|
summary: DHCP browser plugin for Foreman
|
74
71
|
test_files: []
|
data/app/helpers/dhcp_helper.rb
DELETED