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