foreman_docker 3.2.0 → 3.2.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: c16b711b658dfe65317085cac2406cb5797cb7eb
4
- data.tar.gz: d895b63f9b5a822e9e9124a2ddc07acac9008860
3
+ metadata.gz: fd1c67d97ef630b9eb968adff64763a36cfa5c51
4
+ data.tar.gz: c89e5b7cc99ede834019b2e5635d6fe54d4e284d
5
5
  SHA512:
6
- metadata.gz: 2bdd5e1a7cd1807ff3f8273e869110f3c4310cf1d39184e195be90ccb73552d5478d1b4c11942d3c7301ad5be7ff6c70ccb1edfbd147f5bc2889de6026cc151b
7
- data.tar.gz: 5d245182ed0511904f31e49979ae45b239e53563c8bd4adca5902d416a2130424e4cd473693a2b0bf4487914649e5c9966b522ca9d80f8bc5ad14ca3814c02f3
6
+ metadata.gz: 49ba4a4b2c15a5578648ab89da4a6f04a9deb53ea78da1a24c623776776a45504270747115817c5ef27f29a7e85b4f3c8120c6d72b6bed6b3d43e44f8afc9620
7
+ data.tar.gz: 9b3266a52e3e0b1b04204fc82703b749bed883aef9dd67d4db3257d7ab2e32bc5cf12f2263d05ededbbf81642bdfa429b155112026cf85eb78acfcf4cfd7edeb
@@ -1,4 +1,4 @@
1
- class Container < ApplicationRecord
1
+ class Container < ActiveRecord::Base
2
2
  include Authorizable
3
3
  include Taxonomix
4
4
 
@@ -1,4 +1,4 @@
1
- class DockerContainerWizardState < ApplicationRecord
1
+ class DockerContainerWizardState < ActiveRecord::Base
2
2
  has_one :preliminary, :class_name => DockerContainerWizardStates::Preliminary,
3
3
  :dependent => :destroy, :validate => true, :autosave => true
4
4
  has_one :image, :class_name => DockerContainerWizardStates::Image,
@@ -1,5 +1,5 @@
1
1
  module DockerContainerWizardStates
2
- class Configuration < ApplicationRecord
2
+ class Configuration < ActiveRecord::Base
3
3
  self.table_name_prefix = 'docker_container_wizard_states_'
4
4
  belongs_to :wizard_state, :class_name => DockerContainerWizardState,
5
5
  :foreign_key => :docker_container_wizard_state_id
@@ -1,5 +1,5 @@
1
1
  module DockerContainerWizardStates
2
- class Environment < ApplicationRecord
2
+ class Environment < ActiveRecord::Base
3
3
  self.table_name_prefix = 'docker_container_wizard_states_'
4
4
  belongs_to :wizard_state, :class_name => DockerContainerWizardState
5
5
 
@@ -1,5 +1,5 @@
1
1
  module DockerContainerWizardStates
2
- class Image < ApplicationRecord
2
+ class Image < ActiveRecord::Base
3
3
  self.table_name_prefix = 'docker_container_wizard_states_'
4
4
  belongs_to :wizard_state, :class_name => DockerContainerWizardState,
5
5
  :foreign_key => :docker_container_wizard_state_id
@@ -1,5 +1,5 @@
1
1
  module DockerContainerWizardStates
2
- class Preliminary < ApplicationRecord
2
+ class Preliminary < ActiveRecord::Base
3
3
  include Taxonomix
4
4
 
5
5
  self.table_name_prefix = 'docker_container_wizard_states_'
@@ -1,4 +1,4 @@
1
- class DockerParameter < ApplicationRecord
1
+ class DockerParameter < ActiveRecord::Base
2
2
  extend FriendlyId
3
3
  friendly_id :key
4
4
  include Parameterizable::ByIdName
@@ -1,4 +1,4 @@
1
- class DockerRegistry < ApplicationRecord
1
+ class DockerRegistry < ActiveRecord::Base
2
2
  include Authorizable
3
3
  include Taxonomix
4
4
  include Encryptable
@@ -1,3 +1,3 @@
1
1
  module ForemanDocker
2
- VERSION = '3.2.0'
2
+ VERSION = '3.2.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_docker
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Lobato, Amos Benari
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-27 00:00:00.000000000 Z
11
+ date: 2017-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: docker-api