foreman_dhcp_browser 0.0.8 → 0.1.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 472bfadb4dcc78e34f7f9a09e2d90042aceb7ca1
4
- data.tar.gz: 03cf35804684e3ef9493cd59164f0aae36c07683
2
+ SHA256:
3
+ metadata.gz: 02ae35213d36cf1c734f151070ddb46a4f25ef5659510a8c0f92b38281155fa8
4
+ data.tar.gz: aa1e85ddbf55feaa4594708c87b566e45ce2e02e0360940cd81b5d948a872fa9
5
5
  SHA512:
6
- metadata.gz: 77aedddc41e01118954f6ae5a30998d8019115d84c1b3800f15e96dab31f9bbc6f0abfc0dbdfb82ed8ece7798b75d09bb01fdede747ec6c8c2c0d32508b163c0
7
- data.tar.gz: bafc5387624b2388f734e7a79c00dc6a3365fbee3c15d6fefadedf924e7fe74124ff65c8b3bc1254ecdd9413f3fc9b2c79c67ee6476cc2590aafeada644cb463
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 = 'ForemanDhcpBrowser'
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 DhcpController < ApplicationController
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 = DhcpEntries.new(subnet: @subnet)
48
+ @entries = DHCPEntries.new(subnet: @subnet)
49
49
  end
50
50
 
51
51
  def find_record
@@ -1,4 +1,4 @@
1
- class DhcpEntries
1
+ class DHCPEntries
2
2
  delegate :dhcp_proxy, to: :subnet
3
3
  alias_attribute :proxy, :dhcp_proxy
4
4
 
@@ -1,4 +1,4 @@
1
- module ForemanDhcpBrowser::Concerns::NetRecordExtension
1
+ module ForemanDHCPBrowser::Concerns::NetRecordExtension
2
2
  extend ActiveSupport::Concern
3
3
 
4
4
  included do
@@ -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="table table-bordered table-striped table-condensed" data-table='inline'>
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,4 +1,4 @@
1
- <table class='table'>
1
+ <table class="<%= table_css_classes %>">
2
2
  <% @record.attrs.keys.each do |header| %>
3
3
  <th> <%= header %> </td>
4
4
  <% end %>
@@ -1,16 +1,21 @@
1
1
  require 'deface'
2
- module ForemanDhcpBrowser
2
+ module ForemanDHCPBrowser
3
3
  class Engine < ::Rails::Engine
4
- initializer 'foreman_dhcp_browser.register_plugin', before: :finisher_hook do |_app|
5
- Foreman::Plugin.register :foreman_dhcp_browser do
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.send :include, ::ActiveModel::AttributeMethods
11
- ::Net::Record.send :include, ::ActiveModel::Conversion
12
- ::Net::Record.send :extend, ::ActiveModel::Naming
13
- ::Net::Record.send :include, ForemanDhcpBrowser::Concerns::NetRecordExtension
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 ForemanDhcpBrowser
2
- VERSION = '0.0.8'.freeze
1
+ module ForemanDHCPBrowser
2
+ VERSION = '0.1.1'.freeze
3
3
  end
@@ -1,4 +1,4 @@
1
1
  require 'foreman_dhcp_browser/engine'
2
2
 
3
- module ForemanDhcpBrowser
3
+ module ForemanDHCPBrowser
4
4
  end
@@ -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.0.8
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: 2017-07-11 00:00:00.000000000 Z
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
- rubyforge_project:
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: []
@@ -1,2 +0,0 @@
1
- module DhcpHelper
2
- end