foreman_packages 1.1.2 → 1.1.3
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.
@@ -70,7 +70,7 @@ class ForemanPackages::Sypackage < ActiveRecord::Base
|
|
70
70
|
end
|
71
71
|
|
72
72
|
def create_content
|
73
|
-
title_content = "class
|
73
|
+
title_content = "class" + "\s" + self.foreman_packages_sypackagemodel.name +"{"
|
74
74
|
if self.foreman_packages_sypackagemodel.sypackages.size > 0
|
75
75
|
self.foreman_packages_sypackagemodel.sypackages.each do |package|
|
76
76
|
user_content = "\n" + "\s\s" + "package{'" + package.name + "':" + "\n\s\s\s\s" + "ensure => '" + package.ensure + "'," + "\n\s\s" +"}" + "\n"
|
@@ -65,7 +65,7 @@ class ForemanPackages::Sypackagemodel < ActiveRecord::Base
|
|
65
65
|
end
|
66
66
|
|
67
67
|
def create_content
|
68
|
-
title_content =
|
68
|
+
title_content = "class" + "\s" + self.name +"{"
|
69
69
|
if self.sypackages.size > 0
|
70
70
|
self.sypackages.each do |package|
|
71
71
|
user_content = "\n" + "\s\s" + "package{'" + package.name + "':" + "\n\s\s\s\s" + "ensure => '" + package.ensure + "'," + "\n\s\s" +"}" + "\n"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_packages
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-10-
|
12
|
+
date: 2015-10-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: deface
|
@@ -66,61 +66,61 @@ executables: []
|
|
66
66
|
extensions: []
|
67
67
|
extra_rdoc_files: []
|
68
68
|
files:
|
69
|
-
- app/assets/javascripts/application.js
|
70
|
-
- app/assets/javascripts/jquery.fileupload.js
|
71
|
-
- app/models/foreman_packages/sypackage.rb
|
72
|
-
- app/models/foreman_packages/sypackagemodel.rb
|
73
|
-
- app/models/foreman_packages/syattachment.rb
|
74
|
-
- app/overrides/dashboard/index/sample_override.html.erb.deface
|
75
|
-
- app/helpers/foreman_packages/hosts_helper_extensions.rb
|
76
|
-
- app/helpers/foreman_packages/sypackages_helper.rb
|
77
|
-
- app/uploaders/foreman_packages/avatar_uploader.rb
|
78
|
-
- app/views/dashboard/_foreman_packages_widget.html.erb
|
79
69
|
- app/views/foreman_packages/layouts/layouts/new_layout.html.erb
|
80
70
|
- app/views/foreman_packages/layouts/new_layout.html.erb
|
71
|
+
- app/views/foreman_packages/syattachments/edit.html.erb
|
72
|
+
- app/views/foreman_packages/syattachments/new.html.erb
|
73
|
+
- app/views/foreman_packages/syattachments/_syattachment.html.erb
|
74
|
+
- app/views/foreman_packages/syattachments/show.html.erb
|
75
|
+
- app/views/foreman_packages/syattachments/index.html.erb
|
76
|
+
- app/views/foreman_packages/syattachments/_form.html.erb
|
77
|
+
- app/views/foreman_packages/syattachments/_syattachment_td.html.erb
|
78
|
+
- app/views/foreman_packages/sypackagemodels/edit.html.erb
|
81
79
|
- app/views/foreman_packages/sypackagemodels/new.html.erb
|
82
80
|
- app/views/foreman_packages/sypackagemodels/show.html.erb
|
83
81
|
- app/views/foreman_packages/sypackagemodels/index.html.erb
|
84
|
-
- app/views/foreman_packages/sypackagemodels/_form.html.erb
|
85
|
-
- app/views/foreman_packages/sypackagemodels/edit.html.erb
|
86
82
|
- app/views/foreman_packages/sypackagemodels/_list.html.erb
|
87
|
-
- app/views/foreman_packages/
|
83
|
+
- app/views/foreman_packages/sypackagemodels/_form.html.erb
|
84
|
+
- app/views/foreman_packages/sypackages/edit.html.erb
|
85
|
+
- app/views/foreman_packages/sypackages/destroy.js.erb
|
88
86
|
- app/views/foreman_packages/sypackages/create.js.erb
|
87
|
+
- app/views/foreman_packages/sypackages/_sypackage.html.erb
|
89
88
|
- app/views/foreman_packages/sypackages/new.html.erb
|
90
|
-
- app/views/foreman_packages/sypackages/new.js.erb
|
91
89
|
- app/views/foreman_packages/sypackages/_sypackage_td.html.erb
|
90
|
+
- app/views/foreman_packages/sypackages/update.js.erb
|
91
|
+
- app/views/foreman_packages/sypackages/new.js.erb
|
92
92
|
- app/views/foreman_packages/sypackages/show.html.erb
|
93
93
|
- app/views/foreman_packages/sypackages/index.html.erb
|
94
|
-
- app/views/foreman_packages/sypackages/_sypackage.html.erb
|
95
|
-
- app/views/foreman_packages/sypackages/destroy.js.erb
|
96
|
-
- app/views/foreman_packages/sypackages/_form.html.erb
|
97
|
-
- app/views/foreman_packages/sypackages/edit.html.erb
|
98
|
-
- app/views/foreman_packages/sypackages/update.js.erb
|
99
94
|
- app/views/foreman_packages/sypackages/_list.html.erb
|
100
|
-
- app/views/foreman_packages/
|
101
|
-
- app/views/foreman_packages/
|
102
|
-
- app/views/foreman_packages/syattachments/index.html.erb
|
103
|
-
- app/views/foreman_packages/syattachments/_form.html.erb
|
104
|
-
- app/views/foreman_packages/syattachments/_syattachment.html.erb
|
105
|
-
- app/views/foreman_packages/syattachments/edit.html.erb
|
106
|
-
- app/views/foreman_packages/syattachments/_syattachment_td.html.erb
|
107
|
-
- app/views/foreman_packages/hosts/new_action.html.erb
|
95
|
+
- app/views/foreman_packages/sypackages/_form.html.erb
|
96
|
+
- app/views/foreman_packages/sypackages/edit.js.erb
|
108
97
|
- app/views/foreman_packages/hosts/hosts/new_action.html.erb
|
109
|
-
- app/
|
98
|
+
- app/views/foreman_packages/hosts/new_action.html.erb
|
99
|
+
- app/views/dashboard/_foreman_packages_widget.html.erb
|
100
|
+
- app/uploaders/foreman_packages/avatar_uploader.rb
|
101
|
+
- app/assets/javascripts/application.js
|
102
|
+
- app/assets/javascripts/jquery.fileupload.js
|
103
|
+
- app/overrides/dashboard/index/sample_override.html.erb.deface
|
110
104
|
- app/controllers/foreman_packages/sypackagemodels_controller.rb
|
105
|
+
- app/controllers/foreman_packages/sypackages_controller.rb
|
111
106
|
- app/controllers/foreman_packages/hosts_controller.rb
|
112
107
|
- app/controllers/foreman_packages/syattachments_controller.rb
|
108
|
+
- app/helpers/foreman_packages/hosts_helper_extensions.rb
|
109
|
+
- app/helpers/foreman_packages/sypackages_helper.rb
|
110
|
+
- app/models/foreman_packages/syattachment.rb
|
111
|
+
- app/models/foreman_packages/sypackagemodel.rb
|
112
|
+
- app/models/foreman_packages/sypackage.rb
|
113
113
|
- config/routes.rb
|
114
|
-
- db/migrate/
|
114
|
+
- db/migrate/20150921023709_add_filename_to_sypackage.rb
|
115
115
|
- db/migrate/20150921050518_add_file_cache_to_sypackage.rb
|
116
116
|
- db/migrate/20150921050530_create_syattachments.rb
|
117
|
-
- db/migrate/20150921050522_change_filename_to_sypackage.rb
|
118
|
-
- db/migrate/20150921023709_add_filename_to_sypackage.rb
|
119
117
|
- db/migrate/20150921050519_create_sypackagemodels.rb
|
120
|
-
-
|
118
|
+
- db/migrate/20150921011935_create_sypackages.rb
|
119
|
+
- db/migrate/20150921050522_change_filename_to_sypackage.rb
|
120
|
+
- lib/tasks/foreman_packages_tasks.rake
|
121
121
|
- lib/foreman_packages/version.rb
|
122
|
+
- lib/foreman_packages/engine.rb
|
122
123
|
- lib/foreman_packages.rb
|
123
|
-
- lib/tasks/foreman_packages_tasks.rake
|
124
124
|
- locale/gemspec.rb
|
125
125
|
- locale/foreman_packages.pot
|
126
126
|
- locale/en/foreman_packages.po
|
@@ -128,9 +128,9 @@ files:
|
|
128
128
|
- LICENSE
|
129
129
|
- Rakefile
|
130
130
|
- README.md
|
131
|
-
- test/factories/foreman_packages_factories.rb
|
132
|
-
- test/unit/foreman_packages_test.rb
|
133
131
|
- test/test_plugin_helper.rb
|
132
|
+
- test/unit/foreman_packages_test.rb
|
133
|
+
- test/factories/foreman_packages_factories.rb
|
134
134
|
homepage: https://github.com/stdtnt/foreman-users
|
135
135
|
licenses: []
|
136
136
|
post_install_message:
|
@@ -156,6 +156,6 @@ signing_key:
|
|
156
156
|
specification_version: 3
|
157
157
|
summary: 创建packages,/etc/puppet/environments/production/modules/users
|
158
158
|
test_files:
|
159
|
-
- test/factories/foreman_packages_factories.rb
|
160
|
-
- test/unit/foreman_packages_test.rb
|
161
159
|
- test/test_plugin_helper.rb
|
160
|
+
- test/unit/foreman_packages_test.rb
|
161
|
+
- test/factories/foreman_packages_factories.rb
|