foreman_salt 6.0.0 → 6.0.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
2
  SHA1:
3
- metadata.gz: feb89e35b3867722b4e8be153d07aa9d726c39bb
4
- data.tar.gz: c0cc7b621377daf0d949ce033c3e79d521fb3652
3
+ metadata.gz: 733c584c01f5f2afb84e13232bee306b925cace6
4
+ data.tar.gz: c385886527cae97cc54bf19b4d134b810f0379f4
5
5
  SHA512:
6
- metadata.gz: 3f9b14758af01ec653d545faad1547002ed3c6a8541ed4933deea5cf1254f866fc2a124cec1d29cf3a8896700bd98858d52bf8404ebe913d17ca852753df87f5
7
- data.tar.gz: 34e8ebac0aaaabce008600299026dfa61e45652ad8e3191c0ab5e737d2736cf15d11d18d4aab642f83dfb2c0b70d2f1004664c546e9a80f6d72476579db28005
6
+ metadata.gz: 01f965af9e691a5ebb3a2471e88be157efe1cf847f255e376764417ef910b20bcbc78acaf1ff1a539478687c21b90808f76816061e41acb5b944035d9d260f56
7
+ data.tar.gz: 28911d24f528af912c2ed7d8edb8711fb7e5ab9652287337eb70c18d0cb8c9c17a82b5ba49e658e97bdde444ce65520cb71b748f20cea0249a13ad24fd6a3e65
@@ -0,0 +1,8 @@
1
+ class AddIndexToJoinTables < ActiveRecord::Migration
2
+ def change
3
+ add_index :host_salt_modules, :host_id
4
+ add_index :host_salt_modules, :salt_module_id
5
+ add_index :hostgroup_salt_modules, :hostgroup_id
6
+ add_index :hostgroup_salt_modules, :salt_module_id
7
+ end
8
+ end
@@ -1,3 +1,3 @@
1
1
  module ForemanSalt
2
- VERSION = '6.0.0'
2
+ VERSION = '6.0.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_salt
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Benjamin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-28 00:00:00.000000000 Z
11
+ date: 2016-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: deface
@@ -134,6 +134,7 @@ files:
134
134
  - db/migrate/20150411003302_add_environments_to_modules.rb
135
135
  - db/migrate/20150509094409_rename_join_tables.rb
136
136
  - db/migrate/20150509101505_add_primary_keys.rb
137
+ - db/migrate/20161103104146_add_index_to_join_tables.rb
137
138
  - db/seeds.d/75-salt_seeds.rb
138
139
  - lib/foreman_salt.rb
139
140
  - lib/foreman_salt/engine.rb
@@ -185,22 +186,22 @@ signing_key:
185
186
  specification_version: 4
186
187
  summary: Foreman Plug-in for Salt
187
188
  test_files:
188
- - test/integration/salt_module_test.rb
189
- - test/integration/salt_environment_test.rb
189
+ - test/factories/foreman_salt_factories.rb
190
+ - test/functional/api/v2/salt_autosign_controller_test.rb
191
+ - test/functional/api/v2/salt_environments_controller_test.rb
192
+ - test/functional/api/v2/salt_keys_controller_test.rb
193
+ - test/functional/api/v2/salt_states_controller_test.rb
194
+ - test/functional/minions_controller_test.rb
190
195
  - test/integration/salt_autosign_test.rb
196
+ - test/integration/salt_environment_test.rb
191
197
  - test/integration/salt_keys_test.rb
192
- - test/test_plugin_helper.rb
193
- - test/unit/grains_importer_test.rb
198
+ - test/integration/salt_module_test.rb
194
199
  - test/unit/grains_centos.json
195
- - test/unit/host_extensions_test.rb
196
- - test/unit/report_importer_test.rb
197
- - test/unit/hostgroup_extensions_test.rb
198
- - test/unit/salt_modules_test.rb
199
200
  - test/unit/highstate.json
200
201
  - test/unit/salt_keys_test.rb
201
- - test/functional/minions_controller_test.rb
202
- - test/functional/api/v2/salt_autosign_controller_test.rb
203
- - test/functional/api/v2/salt_states_controller_test.rb
204
- - test/functional/api/v2/salt_keys_controller_test.rb
205
- - test/functional/api/v2/salt_environments_controller_test.rb
206
- - test/factories/foreman_salt_factories.rb
202
+ - test/unit/salt_modules_test.rb
203
+ - test/unit/hostgroup_extensions_test.rb
204
+ - test/unit/report_importer_test.rb
205
+ - test/unit/grains_importer_test.rb
206
+ - test/unit/host_extensions_test.rb
207
+ - test/test_plugin_helper.rb