foreman_discovery 1.3.0 → 1.4.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_discovery
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Sutcliffe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-06 00:00:00.000000000 Z
11
+ date: 2014-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: open4
@@ -38,20 +38,6 @@ dependencies:
38
38
  - - ! '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- - !ruby/object:Gem::Dependency
42
- name: deface
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ! '>='
46
- - !ruby/object:Gem::Version
47
- version: '0'
48
- type: :runtime
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ! '>='
53
- - !ruby/object:Gem::Version
54
- version: '0'
55
41
  description: ! 'MaaS Discovery Plugin engine for Foreman '
56
42
  email: gsutclif@redhat.com
57
43
  executables: []
@@ -69,12 +55,12 @@ files:
69
55
  - app/models/host/discovered.rb
70
56
  - app/models/host/managed_extensions.rb
71
57
  - app/models/setting/discovered.rb
72
- - app/overrides/add_dashboard_table.rb
73
58
  - app/views/api/v2/discovered_hosts/base.json.rabl
74
59
  - app/views/api/v2/discovered_hosts/index.json.rabl
75
60
  - app/views/api/v2/discovered_hosts/main.json.rabl
76
61
  - app/views/api/v2/discovered_hosts/show.json.rabl
77
62
  - app/views/api/v2/discovered_hosts/update.json.rabl
63
+ - app/views/dashboard/_discovery_widget.html.erb
78
64
  - app/views/discovered_hosts/_discovered_hosts_list.html.erb
79
65
  - app/views/discovered_hosts/_selected_hosts.html.erb
80
66
  - app/views/discovered_hosts/index.html.erb
@@ -97,15 +83,25 @@ files:
97
83
  - lib/foreman_discovery/engine.rb
98
84
  - lib/foreman_discovery/facts.rb
99
85
  - lib/foreman_discovery/version.rb
86
+ - locale/Makefile
87
+ - locale/de/LC_MESSAGES/foreman_discovery.mo
100
88
  - locale/de/foreman_discovery.po
101
89
  - locale/en_GB/LC_MESSAGES/discovery.mo
90
+ - locale/en_GB/LC_MESSAGES/foreman_discovery.mo
102
91
  - locale/en_GB/foreman_discovery.po
103
92
  - locale/es/LC_MESSAGES/discovery.mo
93
+ - locale/es/LC_MESSAGES/foreman_discovery.mo
104
94
  - locale/es/foreman_discovery.po
105
95
  - locale/foreman_discovery.pot
106
96
  - locale/fr/LC_MESSAGES/discovery.mo
97
+ - locale/fr/LC_MESSAGES/foreman_discovery.mo
107
98
  - locale/fr/foreman_discovery.po
99
+ - locale/gl/LC_MESSAGES/foreman_discovery.mo
100
+ - locale/gl/foreman_discovery.po
101
+ - locale/pt_BR/LC_MESSAGES/foreman_discovery.mo
102
+ - locale/pt_BR/foreman_discovery.po
108
103
  - locale/sv_SE/LC_MESSAGES/discovery.mo
104
+ - locale/sv_SE/LC_MESSAGES/foreman_discovery.mo
109
105
  - locale/sv_SE/foreman_discovery.po
110
106
  - locale/zanata.xml
111
107
  - test/functional/discovered_hosts_controller_test.rb
@@ -129,9 +125,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
129
125
  version: '0'
130
126
  required_rubygems_version: !ruby/object:Gem::Requirement
131
127
  requirements:
132
- - - ! '>='
128
+ - - ! '>'
133
129
  - !ruby/object:Gem::Version
134
- version: '0'
130
+ version: 1.3.1
135
131
  requirements: []
136
132
  rubyforge_project:
137
133
  rubygems_version: 2.2.1
@@ -1,16 +0,0 @@
1
- Deface::Override.new(:virtual_path => "dashboard/_status_table",
2
- :name => "add_dashboard_table",
3
- :insert_after => "ul:last",
4
- :text => ("
5
- <h4 class='header'><%= _('Host Pool') %></h4>
6
- <ul>
7
- <li>
8
- <%= link_to(_('Unassigned hosts'), discovered_hosts_path, :class=>'dashboard-links' ) %>
9
- <h4><%= Host::Discovered.count %></h4>
10
- </li>
11
- </ul>"))
12
-
13
- # strings used above, for the purposes of extraction only, as they're not
14
- # detected within the full override template string above
15
- N_('Host Pool')
16
- N_('Unassigned hosts')