HornsAndHooves-publify_core 10.1.0 → 10.1.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
  SHA256:
3
- metadata.gz: 109eaa0d80e831ff83cd6067dfa3920895e59ef465533d2e6ee2346275a1191d
4
- data.tar.gz: 2e2319019464945e2c6abe8d9434dc8505900fc13d163b3f58fed20e0063ddf2
3
+ metadata.gz: 4cd1439645737309c9615edba562cd7d51ede8f66a21fe888161ca91c0eacc83
4
+ data.tar.gz: 9a44b960e7718b3fb36aea0e6e24ef22efd98e21c9f6e8dc72d2fa96857a4a26
5
5
  SHA512:
6
- metadata.gz: 8ba568f08175773bc85e078b69e099afd3286a4ca1a8ac29fde85e68b81f0529ebc1bdfb58cc8fe726c28e2cbbb10c276502145e7b5283095c6d46be7830e14d
7
- data.tar.gz: 7eeed9172a3c7e4c0ef49668068f7587d16e2131ecd97d0214fc1e78fcc9372e17ede1d10931540ff919b8c5550a9bc775b02c251c14d4913f4f94e5adcd9048
6
+ metadata.gz: a099c2cd4321e1f98da962ede37b2419e5c975af1f64ea3149be241ab714bcdf70aa104feae5fe3573321ed0fa3afb41aab40662173fc880647860444dcfd1e9
7
+ data.tar.gz: f88a34421a40fbec2ac11ef84a772369d68ef5b85e9f0d9e6e459dd13bd196f12a94f0e08a85d6a8968f48d93b139f3e610fa0ba4951479b67d6d6f30b375907
@@ -4,18 +4,18 @@ class AddMissingIndexes < ActiveRecord::Migration[4.2]
4
4
  set_role "blog_content"
5
5
 
6
6
  def change
7
- add_index :feedback, [:id, :type]
7
+ add_index :feedback, %i[id type]
8
8
  add_index :feedback, :user_id
9
- add_index :sidebars, [:id, :type]
9
+ add_index :sidebars, %i[id type]
10
10
  add_index :contents, :user_id
11
- add_index :contents, [:id, :type]
11
+ add_index :contents, %i[id type]
12
12
  add_index :articles_tags, :tag_id
13
13
  add_index :articles_tags, :article_id
14
14
  add_index :profiles_rights, :profile_id
15
15
  add_index :users, :profile_id
16
16
  add_index :users, :text_filter_id
17
17
  add_index :users, :resource_id
18
- add_index :triggers, [:pending_item_id, :pending_item_type]
18
+ add_index :triggers, %i[pending_item_id pending_item_type]
19
19
  add_index :redirections, :content_id
20
20
  add_index :redirections, :redirect_id
21
21
  add_index :resources, :article_id
@@ -19,13 +19,13 @@ class RemoveProfiles < ActiveRecord::Migration[4.2]
19
19
  end
20
20
 
21
21
  Profile.create!(label: "admin", nicename: "Publify administrator",
22
- modules: [:dashboard, :articles, :notes, :pages, :feedback,
23
- :media, :themes, :sidebar, :profile, :users,
24
- :settings, :seo])
22
+ modules: %i[dashboard articles notes pages feedback
23
+ media themes sidebar profile users
24
+ settings seo])
25
25
  Profile.create!(label: "publisher", nicename: "Blog publisher",
26
- modules: [:dashboard, :articles, :notes, :pages, :feedback,
27
- :media, :profile])
26
+ modules: %i[dashboard articles notes pages feedback
27
+ media profile])
28
28
  Profile.create!(label: "contributor", nicename: "Contributor",
29
- modules: [:dashboard, :profile])
29
+ modules: %i[dashboard profile])
30
30
  end
31
31
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PublifyCore
4
- VERSION = "10.1.0"
4
+ VERSION = "10.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: HornsAndHooves-publify_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.1.0
4
+ version: 10.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matijs van Zuijlen
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2022-08-31 00:00:00.000000000 Z
14
+ date: 2022-09-28 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: aasm