topological_inventory-core 1.1.6 → 1.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 574cd191dd5ad268210d1299a4b8cc71355482eead4316b873836effcb63f0bb
4
- data.tar.gz: b8ad635b7f2b2cb052e54c7e3e84ebdd5bb428d8645e847cb707c5922f60d366
3
+ metadata.gz: d30dee988592e3a42eb583950140e28c84acc4b2a63d0cf6a37bbc582636be6f
4
+ data.tar.gz: 49f5130373e785f030006a2bb498e3e4496f3537aa828dae137951e629d2a4d1
5
5
  SHA512:
6
- metadata.gz: 03a5c8a8eeca049ddbb546598fdf328859247674e033f370ddf4f339bba856b6011cb0421846f91c66158862fd24490f5fb6af11ed4a5f6d208c3534040cd860
7
- data.tar.gz: d4be6b1a789b5be5dbfc1a0296f7e01606dce53731416e477c76445dc8b8e3f23ffa6fd4f35b9878e3c730aadac596c5fb45fa9606405f15bb329feae5a1c41a
6
+ metadata.gz: bef32c25295035fd93eeef616a0419b487da930a8815db4b9228469ec5c8b5df83de0927935e537175c451b7183dc0e11e45369759095c87a4431bc41105826d
7
+ data.tar.gz: ff4d8355ac873dd466d54043d37030b16baa679fc5884f0026ea0ebf3f70865f14c96cf59c22c5793431006a8705173beec9d8f1a374b3664e8b9b06567fa24c
@@ -1,4 +1,6 @@
1
1
  class RefreshState < ActiveRecord::Base
2
+ require 'acts_as_tenant'
3
+
2
4
  belongs_to :source
3
5
  belongs_to :tenant
4
6
  has_many :refresh_state_parts
@@ -1,4 +1,6 @@
1
1
  class RefreshStatePart < ActiveRecord::Base
2
+ require 'acts_as_tenant'
3
+
2
4
  belongs_to :refresh_state
3
5
  belongs_to :tenant
4
6
 
@@ -1,5 +1,5 @@
1
1
  module TopologicalInventory
2
2
  module Core
3
- VERSION = '1.1.6'
3
+ VERSION = '1.1.7'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: topological_inventory-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.6
4
+ version: 1.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Grare
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-11 00:00:00.000000000 Z
11
+ date: 2020-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: acts_as_tenant
@@ -269,7 +269,6 @@ files:
269
269
  - app/models/volume_attachment.rb
270
270
  - app/models/volume_type.rb
271
271
  - config/database.dev.yml
272
- - config/database.yml
273
272
  - db/migrate/20180919170553_add_sources_and_endpoints.rb
274
273
  - db/migrate/20180927171624_add_container_models.rb
275
274
  - db/migrate/20180927205317_add_service_catalog_models.rb
@@ -409,7 +408,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
409
408
  - !ruby/object:Gem::Version
410
409
  version: '0'
411
410
  requirements: []
412
- rubygems_version: 3.0.8
411
+ rubygems_version: 3.0.3
413
412
  signing_key:
414
413
  specification_version: 4
415
414
  summary: Core Models and Schema for the Topological Inventory Service.
@@ -1,23 +0,0 @@
1
- default: &default
2
- adapter: postgresql
3
- encoding: utf8
4
- host: 127.0.0.1
5
- port: 5432
6
- username: root
7
- password: buttons
8
- pool: 5
9
- wait_timeout: 5
10
- min_messages: warning
11
-
12
- development:
13
- <<: *default
14
- database: topological_inventory_development
15
- min_messages: notice
16
-
17
- test:
18
- <<: *default
19
- database: topological_inventory_test
20
-
21
- production:
22
- <<: *default
23
- database: topological_inventory_production