motor-admin 0.1.10 → 0.1.11

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: dffbef14f764d553575a908cee996e197c587b0db25dbe039c95094e0291e451
4
- data.tar.gz: 92ba80b363b93b28cd53a80cd0d9725f408f0a8269d0b7398080adfe2c55ad0c
3
+ metadata.gz: 87325a00659c6f9b646ebbbcb82e8ac5eea95b23ab9799fa72482fed6b4d47d1
4
+ data.tar.gz: 25fa667f5b016b2af02ce7cc1be99d759922bf1be8d2c8094d99d9aa786b2518
5
5
  SHA512:
6
- metadata.gz: fb50489810374fef3e44f5016660d4a73bb3e3234622b9452522e4050a48c50240ef296b24c7a1c78d73d202df648a60ae1fbcb3a957e20f1d4dac90b762c6ef
7
- data.tar.gz: e94dc6c92b8d96f6d974dffca9fe49698455d3c2229eada3fa43654caf60e671ff9b8a0c8183fc58ac8b1edeec52e68004d869d2fe6934af42a2b4d55e60943f
6
+ metadata.gz: 74a216110767d49e614123676ada127e3ab4db8bb796957d7ab1d2b4565dc999890b6cf227e081d9c4c6610c8a5fb23157f081cab8a1af930b890ee058389d61
7
+ data.tar.gz: 682ce83f67ad009f1e04a37bce34e6cd19aea93e6afdc21e9c943e85609c20cfa0f2280d312d19a4ba74e71498bf4454070e9e02f4a945c962c6d7c5b40dfd5b
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- class Alert < ApplicationRecord
4
+ class Alert < ::Motor::ApplicationRecord
5
5
  belongs_to :query
6
6
  belongs_to :author, polymorphic: true, optional: true
7
7
 
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- class AlertLock < ApplicationRecord
4
+ class AlertLock < ::Motor::ApplicationRecord
5
5
  belongs_to :alert
6
6
  end
7
7
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- class Config < ApplicationRecord
4
+ class Config < ::Motor::ApplicationRecord
5
5
  serialize :value, HashSerializer
6
6
  end
7
7
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- class Dashboard < ApplicationRecord
4
+ class Dashboard < ::Motor::ApplicationRecord
5
5
  belongs_to :author, polymorphic: true, optional: true
6
6
 
7
7
  has_many :taggable_tags, as: :taggable
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- class Form < ApplicationRecord
4
+ class Form < ::Motor::ApplicationRecord
5
5
  belongs_to :author, polymorphic: true, optional: true
6
6
 
7
7
  has_many :taggable_tags, as: :taggable
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- class Query < ApplicationRecord
4
+ class Query < ::Motor::ApplicationRecord
5
5
  belongs_to :author, polymorphic: true, optional: true
6
6
 
7
7
  has_many :taggable_tags, as: :taggable
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- class Resource < ApplicationRecord
4
+ class Resource < ::Motor::ApplicationRecord
5
5
  serialize :preferences, HashSerializer
6
6
  end
7
7
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- class Tag < ApplicationRecord
4
+ class Tag < ::Motor::ApplicationRecord
5
5
  has_many :taggable_tags
6
6
  end
7
7
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- class TaggableTag < ApplicationRecord
4
+ class TaggableTag < ::Motor::ApplicationRecord
5
5
  belongs_to :tag
6
6
  belongs_to :taggable, polymorphic: true
7
7
  end
data/lib/motor/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- VERSION = '0.1.10'
4
+ VERSION = '0.1.11'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motor-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pete Matsyburka