foreman_dhcp_browser 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/foreman_dhcp_browser/engine.rb +4 -0
- data/lib/foreman_dhcp_browser/version.rb +1 -1
- metadata +98 -77
- checksums.yaml +0 -7
@@ -1,5 +1,9 @@
|
|
1
1
|
require 'deface'
|
2
2
|
module ForemanDhcpBrowser
|
3
3
|
class Engine < ::Rails::Engine
|
4
|
+
initializer 'foreman_dhcp_browser.register_plugin', :after=> :finisher_hook do |app|
|
5
|
+
Foreman::Plugin.register :foreman_dhcp_browser do
|
6
|
+
end if defined?(Foreman::Plugin)
|
7
|
+
end
|
4
8
|
end
|
5
9
|
end
|
metadata
CHANGED
@@ -1,142 +1,163 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_dhcp_browser
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 4
|
10
|
+
version: 0.0.4
|
5
11
|
platform: ruby
|
6
|
-
authors:
|
12
|
+
authors:
|
7
13
|
- Ohad Levy
|
8
14
|
autorequire:
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
17
|
+
|
18
|
+
date: 2014-02-03 00:00:00 +02:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
14
22
|
name: deface
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - '>='
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
20
|
-
type: :runtime
|
21
23
|
prerelease: false
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
version: "0"
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
35
|
+
description: Plugin for Foreman to browse and add/edit/delete DHCP leases independent of Foreman's host creation
|
29
36
|
email: ohadlevy@gmail.com
|
30
37
|
executables: []
|
38
|
+
|
31
39
|
extensions: []
|
40
|
+
|
32
41
|
extra_rdoc_files: []
|
33
|
-
|
34
|
-
|
35
|
-
- app/
|
36
|
-
- app/controllers/dhcp_controller.rb
|
37
|
-
- app/views/dhcp/_form.html.erb
|
42
|
+
|
43
|
+
files:
|
44
|
+
- app/views/dhcp/edit.html.erb
|
38
45
|
- app/views/dhcp/new.html.erb
|
39
|
-
- app/views/dhcp/show.html.erb
|
40
46
|
- app/views/dhcp/index.html.erb
|
41
|
-
- app/views/dhcp/
|
47
|
+
- app/views/dhcp/_form.html.erb
|
48
|
+
- app/views/dhcp/show.html.erb
|
42
49
|
- app/helpers/dhcp_helper.rb
|
43
|
-
- app/
|
50
|
+
- app/models/dhcp_entries.rb
|
51
|
+
- app/overrides/add_link_to_dhcp_entries.rb
|
44
52
|
- app/assets/stylesheets/dhcp.css
|
53
|
+
- app/assets/javascripts/dhcp.js
|
54
|
+
- app/controllers/dhcp_controller.rb
|
45
55
|
- config/routes.rb
|
46
56
|
- lib/foreman_dhcp_browser.rb
|
47
|
-
- lib/tasks/foreman_dhcp_browser_tasks.rake
|
48
|
-
- lib/foreman_dhcp_browser/engine.rb
|
49
57
|
- lib/foreman_dhcp_browser/version.rb
|
58
|
+
- lib/foreman_dhcp_browser/engine.rb
|
59
|
+
- lib/tasks/foreman_dhcp_browser_tasks.rake
|
50
60
|
- LICENSE
|
51
61
|
- Rakefile
|
52
62
|
- README.md
|
53
63
|
- test/foreman_dhcp_browser_test.rb
|
54
|
-
- test/
|
55
|
-
- test/functional/dhcp_controller_test.rb
|
56
|
-
- test/test_helper.rb
|
57
|
-
- test/dummy/public/404.html
|
58
|
-
- test/dummy/public/500.html
|
59
|
-
- test/dummy/public/favicon.ico
|
60
|
-
- test/dummy/public/422.html
|
61
|
-
- test/dummy/config/environment.rb
|
62
|
-
- test/dummy/config/boot.rb
|
63
|
-
- test/dummy/config/database.yml
|
64
|
+
- test/dummy/config/routes.rb
|
64
65
|
- test/dummy/config/environments/test.rb
|
65
66
|
- test/dummy/config/environments/development.rb
|
66
67
|
- test/dummy/config/environments/production.rb
|
67
68
|
- test/dummy/config/application.rb
|
68
|
-
- test/dummy/config/routes.rb
|
69
69
|
- test/dummy/config/initializers/session_store.rb
|
70
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
71
70
|
- test/dummy/config/initializers/wrap_parameters.rb
|
72
71
|
- test/dummy/config/initializers/mime_types.rb
|
73
72
|
- test/dummy/config/initializers/inflections.rb
|
73
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
74
74
|
- test/dummy/config/initializers/secret_token.rb
|
75
|
+
- test/dummy/config/database.yml
|
75
76
|
- test/dummy/config/locales/en.yml
|
77
|
+
- test/dummy/config/boot.rb
|
78
|
+
- test/dummy/config/environment.rb
|
76
79
|
- test/dummy/script/rails
|
80
|
+
- test/dummy/public/500.html
|
81
|
+
- test/dummy/public/404.html
|
82
|
+
- test/dummy/public/422.html
|
83
|
+
- test/dummy/public/favicon.ico
|
77
84
|
- test/dummy/Rakefile
|
78
|
-
- test/dummy/
|
79
|
-
- test/dummy/app/controllers/application_controller.rb
|
85
|
+
- test/dummy/config.ru
|
80
86
|
- test/dummy/app/views/layouts/application.html.erb
|
81
87
|
- test/dummy/app/helpers/application_helper.rb
|
82
|
-
- test/dummy/app/assets/javascripts/application.js
|
83
88
|
- test/dummy/app/assets/stylesheets/application.css
|
84
|
-
- test/dummy/
|
89
|
+
- test/dummy/app/assets/javascripts/application.js
|
90
|
+
- test/dummy/app/controllers/application_controller.rb
|
91
|
+
- test/dummy/README.rdoc
|
85
92
|
- test/integration/navigation_test.rb
|
93
|
+
- test/test_helper.rb
|
94
|
+
- test/functional/dhcp_controller_test.rb
|
95
|
+
- test/unit/helpers/dhcp_helper_test.rb
|
96
|
+
has_rdoc: true
|
86
97
|
homepage: https://github.com/theforeman/foreman_dhcp_browser
|
87
98
|
licenses: []
|
88
|
-
|
99
|
+
|
89
100
|
post_install_message:
|
90
101
|
rdoc_options: []
|
91
|
-
|
102
|
+
|
103
|
+
require_paths:
|
92
104
|
- lib
|
93
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
105
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
106
|
+
none: false
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
hash: 3
|
111
|
+
segments:
|
112
|
+
- 0
|
113
|
+
version: "0"
|
114
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
115
|
+
none: false
|
116
|
+
requirements:
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
hash: 3
|
120
|
+
segments:
|
121
|
+
- 0
|
122
|
+
version: "0"
|
103
123
|
requirements: []
|
124
|
+
|
104
125
|
rubyforge_project:
|
105
|
-
rubygems_version:
|
126
|
+
rubygems_version: 1.3.7
|
106
127
|
signing_key:
|
107
|
-
specification_version:
|
128
|
+
specification_version: 3
|
108
129
|
summary: DHCP browser plugin for Foreman
|
109
|
-
test_files:
|
130
|
+
test_files:
|
110
131
|
- test/foreman_dhcp_browser_test.rb
|
111
|
-
- test/
|
112
|
-
- test/functional/dhcp_controller_test.rb
|
113
|
-
- test/test_helper.rb
|
114
|
-
- test/dummy/public/404.html
|
115
|
-
- test/dummy/public/500.html
|
116
|
-
- test/dummy/public/favicon.ico
|
117
|
-
- test/dummy/public/422.html
|
118
|
-
- test/dummy/config/environment.rb
|
119
|
-
- test/dummy/config/boot.rb
|
120
|
-
- test/dummy/config/database.yml
|
132
|
+
- test/dummy/config/routes.rb
|
121
133
|
- test/dummy/config/environments/test.rb
|
122
134
|
- test/dummy/config/environments/development.rb
|
123
135
|
- test/dummy/config/environments/production.rb
|
124
136
|
- test/dummy/config/application.rb
|
125
|
-
- test/dummy/config/routes.rb
|
126
137
|
- test/dummy/config/initializers/session_store.rb
|
127
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
128
138
|
- test/dummy/config/initializers/wrap_parameters.rb
|
129
139
|
- test/dummy/config/initializers/mime_types.rb
|
130
140
|
- test/dummy/config/initializers/inflections.rb
|
141
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
131
142
|
- test/dummy/config/initializers/secret_token.rb
|
143
|
+
- test/dummy/config/database.yml
|
132
144
|
- test/dummy/config/locales/en.yml
|
145
|
+
- test/dummy/config/boot.rb
|
146
|
+
- test/dummy/config/environment.rb
|
133
147
|
- test/dummy/script/rails
|
148
|
+
- test/dummy/public/500.html
|
149
|
+
- test/dummy/public/404.html
|
150
|
+
- test/dummy/public/422.html
|
151
|
+
- test/dummy/public/favicon.ico
|
134
152
|
- test/dummy/Rakefile
|
135
|
-
- test/dummy/
|
136
|
-
- test/dummy/app/controllers/application_controller.rb
|
153
|
+
- test/dummy/config.ru
|
137
154
|
- test/dummy/app/views/layouts/application.html.erb
|
138
155
|
- test/dummy/app/helpers/application_helper.rb
|
139
|
-
- test/dummy/app/assets/javascripts/application.js
|
140
156
|
- test/dummy/app/assets/stylesheets/application.css
|
141
|
-
- test/dummy/
|
157
|
+
- test/dummy/app/assets/javascripts/application.js
|
158
|
+
- test/dummy/app/controllers/application_controller.rb
|
159
|
+
- test/dummy/README.rdoc
|
142
160
|
- test/integration/navigation_test.rb
|
161
|
+
- test/test_helper.rb
|
162
|
+
- test/functional/dhcp_controller_test.rb
|
163
|
+
- test/unit/helpers/dhcp_helper_test.rb
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: 281588e3fc679e489771dd1564ba6d5863d80100
|
4
|
-
data.tar.gz: e0af2cd0c1e0b28797bab79de4445a63cc0e143a
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: bb75ac32ad51c22346ae1032711e34c7a145b6bad454375eb883bf5157e8efa3e07ed6214c367ac12b3e6ae0f96d4a2684482fa954b40e522c025488da30c34a
|
7
|
-
data.tar.gz: cf3cf531d487e086c0cd4258d7bdd572b848b4581abe03324395227cc4c3fce1a3f3095c3d8412a640a4cfafff2b9896a0221ed9f52bcfc8db86755ee35c0f88
|