alchemy_cms 6.0.0.pre.b4 → 6.0.0.pre.b5
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 +4 -4
- data/CHANGELOG.md +5 -0
- data/app/models/alchemy/ingredient.rb +0 -5
- data/lib/alchemy/test_support/shared_ingredient_examples.rb +0 -1
- data/lib/alchemy/version.rb +1 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c960938b7e577abd1031dc1ff066eea2bc9636f2a94d61cab753ae42e1058768
|
|
4
|
+
data.tar.gz: d3dff1ab8a69b2dcfc2374aa78ecbbaad3c76d97fe66c23ede57d33e8f019f49
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73e65f16a6c35dd438645b36f359745db42d657ca6d7de7082714f879105c97ac296861790dc15f6c3411f25970519f2d01dc5c3b2525e88e8fc25a2fca38b80
|
|
7
|
+
data.tar.gz: 78dedcd0ca764496af5abc4a8800675205ef6f78deb511bf8cf2f4bb5025f4e6cfe7315dc9a4d54d114a33efbb6d5ad2b53fc4de881686c8df158c7d7dfa83dd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## 6.0.0-b5 (2021-08-27)
|
|
2
|
+
|
|
3
|
+
- Remove spec that tests default data store value [#2184](https://github.com/AlchemyCMS/alchemy_cms/pull/2184) ([tvdeyen](https://github.com/tvdeyen))
|
|
4
|
+
- Remove data store accessor from ingredient base class [#2183](https://github.com/AlchemyCMS/alchemy_cms/pull/2183) ([tvdeyen](https://github.com/tvdeyen))
|
|
5
|
+
|
|
1
6
|
## 6.0.0-b4 (2021-08-27)
|
|
2
7
|
|
|
3
8
|
- Load custom Tinymce config for ingredients [#2182](https://github.com/AlchemyCMS/alchemy_cms/pull/2182) ([tvdeyen](https://github.com/tvdeyen))
|
|
@@ -118,11 +118,6 @@ module Alchemy
|
|
|
118
118
|
value.to_s[0..maxlength - 1]
|
|
119
119
|
end
|
|
120
120
|
|
|
121
|
-
# Cross DB adapter data accessor that works
|
|
122
|
-
def data
|
|
123
|
-
@_data ||= (self[:data] || {}).with_indifferent_access
|
|
124
|
-
end
|
|
125
|
-
|
|
126
121
|
# The path to the view partial of the ingredient
|
|
127
122
|
# @return [String]
|
|
128
123
|
def to_partial_path
|
|
@@ -16,7 +16,6 @@ RSpec.shared_examples_for "an alchemy ingredient" do
|
|
|
16
16
|
it { is_expected.to belong_to(:related_object).optional }
|
|
17
17
|
it { is_expected.to validate_presence_of(:role) }
|
|
18
18
|
it { is_expected.to validate_presence_of(:type) }
|
|
19
|
-
it { expect(subject.data).to eq({}) }
|
|
20
19
|
|
|
21
20
|
describe "#settings" do
|
|
22
21
|
subject { ingredient.settings }
|
data/lib/alchemy/version.rb
CHANGED
data/package.json
CHANGED