push_type_wysiwyg 0.5.0.alpha.2 → 0.5.0.alpha.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/test/dummy/config/initializers/push_type.rb +1 -1
- data/test/dummy/config/secrets.yml +2 -2
- data/test/dummy/db/migrate/{20150429164626_create_push_type_users.push_type.rb → 20150601132852_create_push_type_users.push_type.rb} +0 -0
- data/test/dummy/db/migrate/{20150429164627_create_push_type_nodes.push_type.rb → 20150601132853_create_push_type_nodes.push_type.rb} +0 -0
- data/test/dummy/db/migrate/{20150429164628_create_push_type_node_hierarchies.push_type.rb → 20150601132854_create_push_type_node_hierarchies.push_type.rb} +0 -0
- data/test/dummy/db/migrate/{20150429164629_create_push_type_assets.push_type.rb → 20150601132855_create_push_type_assets.push_type.rb} +0 -0
- data/test/dummy/db/migrate/{20150429164630_create_push_type_taxonomies.push_type.rb → 20150601132856_create_push_type_taxonomies.push_type.rb} +0 -0
- data/test/dummy/db/migrate/{20150429164631_create_push_type_taxonomy_hierarchies.push_type.rb → 20150601132857_create_push_type_taxonomy_hierarchies.push_type.rb} +0 -0
- data/test/dummy/db/migrate/20150601132858_add_field_store_default_values.push_type.rb +7 -0
- data/test/dummy/db/schema.rb +7 -7
- data/test/dummy/log/test.log +741 -729
- metadata +20 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c8e77f6d38fc223ebc7208d65b00a2aabaa9b98b
|
4
|
+
data.tar.gz: f1c65db88e7b325f6882aa76b27a93de924bc19e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a38c983852bddce41b16eefc36e75b4970cc10dbd54d0153a7b6c8f6557e7809b31c675301defb6aa0130659a9e6ff6c95c84795e9ebf4102a05c390497f8aec
|
7
|
+
data.tar.gz: 96ef334eb9cb70442c2066ae7e09fecc6feb463e1860a6386c713d6fa21efe53c65e46f9db9d0d42d7cba70bf11e3ad705f691a3cb372e87a0d236acb8fe09f3
|
@@ -33,6 +33,6 @@ PushType.setup do |config|
|
|
33
33
|
# secret_access_key: ENV['SECRET_ACCESS_KEY_ID']
|
34
34
|
# }
|
35
35
|
|
36
|
-
# config.dragonfly_secret = '
|
36
|
+
# config.dragonfly_secret = '5ef0e099b09eba4846cd410863e632d80403d5990a21f215f46ec1bd94e957f8'
|
37
37
|
|
38
38
|
end
|
@@ -11,10 +11,10 @@
|
|
11
11
|
# if you're sharing your code publicly.
|
12
12
|
|
13
13
|
development:
|
14
|
-
secret_key_base:
|
14
|
+
secret_key_base: f99fb74ff92023f80d1b1be90e1251d3d4107e1bcc9b37c7db50dce1f584bb4d9d805f87f037b39467f780a96e6a11675e780b460573d94b5bb7c12c6924231e
|
15
15
|
|
16
16
|
test:
|
17
|
-
secret_key_base:
|
17
|
+
secret_key_base: 0d7fbf025e0ce9e98b6fe2e861d0097c0056583762d06f9bb81c7f9cda29e88f68e4f5139f8d76d21045ab6a8b5c8c5bd0e2a2cd2d68369bf6babfcab723865d
|
18
18
|
|
19
19
|
# Do not keep production secrets in the repository,
|
20
20
|
# instead read values from the environment.
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# This migration comes from push_type (originally 20150531183944)
|
2
|
+
class AddFieldStoreDefaultValues < ActiveRecord::Migration
|
3
|
+
def change
|
4
|
+
change_column :push_type_nodes, :field_store, :jsonb, default: {}, null: false
|
5
|
+
change_column :push_type_users, :field_store, :jsonb, default: {}, null: false
|
6
|
+
end
|
7
|
+
end
|
data/test/dummy/db/schema.rb
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended that you check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(version:
|
14
|
+
ActiveRecord::Schema.define(version: 20150601132858) do
|
15
15
|
|
16
16
|
# These are extensions that must be enabled in order to support this database
|
17
17
|
enable_extension "plpgsql"
|
@@ -44,7 +44,7 @@ ActiveRecord::Schema.define(version: 20150429164631) do
|
|
44
44
|
t.string "type"
|
45
45
|
t.string "title"
|
46
46
|
t.string "slug"
|
47
|
-
t.jsonb "field_store"
|
47
|
+
t.jsonb "field_store", default: {}, null: false
|
48
48
|
t.uuid "parent_id"
|
49
49
|
t.integer "sort_order"
|
50
50
|
t.integer "status"
|
@@ -52,8 +52,8 @@ ActiveRecord::Schema.define(version: 20150429164631) do
|
|
52
52
|
t.datetime "published_to"
|
53
53
|
t.uuid "creator_id"
|
54
54
|
t.uuid "updater_id"
|
55
|
-
t.datetime "created_at",
|
56
|
-
t.datetime "updated_at",
|
55
|
+
t.datetime "created_at", null: false
|
56
|
+
t.datetime "updated_at", null: false
|
57
57
|
t.datetime "deleted_at"
|
58
58
|
end
|
59
59
|
|
@@ -79,9 +79,9 @@ ActiveRecord::Schema.define(version: 20150429164631) do
|
|
79
79
|
create_table "push_type_users", id: :uuid, default: "uuid_generate_v4()", force: :cascade do |t|
|
80
80
|
t.string "name"
|
81
81
|
t.string "email"
|
82
|
-
t.jsonb "field_store"
|
83
|
-
t.datetime "created_at",
|
84
|
-
t.datetime "updated_at",
|
82
|
+
t.jsonb "field_store", default: {}, null: false
|
83
|
+
t.datetime "created_at", null: false
|
84
|
+
t.datetime "updated_at", null: false
|
85
85
|
end
|
86
86
|
|
87
87
|
end
|