push_type_api 0.11.1 → 0.11.2
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/test/dummy/app/assets/javascripts/application.js +3 -4
- data/test/dummy/app/assets/javascripts/cable.js +1 -1
- data/test/dummy/app/assets/stylesheets/application.css +2 -2
- data/test/dummy/bin/setup +4 -0
- data/test/dummy/bin/yarn +11 -0
- data/test/dummy/config/cable.yml +1 -0
- data/test/dummy/config/database.yml +1 -1
- data/test/dummy/config/environments/development.rb +1 -1
- data/test/dummy/config/environments/production.rb +6 -1
- data/test/dummy/config/environments/test.rb +1 -1
- data/test/dummy/config/initializers/application_controller_renderer.rb +6 -4
- data/test/dummy/config/initializers/assets.rb +6 -3
- data/test/dummy/config/initializers/push_type.rb +1 -1
- data/test/dummy/config/locales/en.yml +10 -0
- data/test/dummy/config/puma.rb +16 -7
- data/test/dummy/config/secrets.yml +14 -4
- data/test/dummy/db/migrate/{20170518181701_create_push_type_users.push_type.rb → 20170922151312_create_push_type_users.push_type.rb} +0 -0
- data/test/dummy/db/migrate/{20170518181702_create_push_type_nodes.push_type.rb → 20170922151313_create_push_type_nodes.push_type.rb} +0 -0
- data/test/dummy/db/migrate/{20170518181703_create_push_type_node_hierarchies.push_type.rb → 20170922151314_create_push_type_node_hierarchies.push_type.rb} +0 -0
- data/test/dummy/db/migrate/{20170518181704_create_push_type_assets.push_type.rb → 20170922151315_create_push_type_assets.push_type.rb} +0 -0
- data/test/dummy/db/migrate/{20170518181705_add_field_store_default_values.push_type.rb → 20170922151316_add_field_store_default_values.push_type.rb} +0 -0
- data/test/dummy/db/migrate/{20170518181706_drop_legacy_push_type_taxonomies.push_type.rb → 20170922151317_drop_legacy_push_type_taxonomies.push_type.rb} +0 -0
- data/test/dummy/db/schema.rb +31 -31
- data/test/dummy/log/test.log +4313 -4148
- data/test/dummy/package.json +5 -0
- data/test/dummy/public/404.html +6 -6
- data/test/dummy/public/422.html +6 -6
- data/test/dummy/public/500.html +6 -6
- data/test/dummy/public/robots.txt +0 -4
- metadata +24 -24
- data/test/dummy/config/initializers/new_framework_defaults.rb +0 -24
- data/test/dummy/config/initializers/session_store.rb +0 -3
data/test/dummy/public/404.html
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
<title>The page you were looking for doesn't exist (404)</title>
|
5
5
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
6
|
<style>
|
7
|
-
|
7
|
+
.rails-default-error-page {
|
8
8
|
background-color: #EFEFEF;
|
9
9
|
color: #2E2F30;
|
10
10
|
text-align: center;
|
@@ -12,13 +12,13 @@
|
|
12
12
|
margin: 0;
|
13
13
|
}
|
14
14
|
|
15
|
-
div.dialog {
|
15
|
+
.rails-default-error-page div.dialog {
|
16
16
|
width: 95%;
|
17
17
|
max-width: 33em;
|
18
18
|
margin: 4em auto 0;
|
19
19
|
}
|
20
20
|
|
21
|
-
div.dialog > div {
|
21
|
+
.rails-default-error-page div.dialog > div {
|
22
22
|
border: 1px solid #CCC;
|
23
23
|
border-right-color: #999;
|
24
24
|
border-left-color: #999;
|
@@ -31,13 +31,13 @@
|
|
31
31
|
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
32
|
}
|
33
33
|
|
34
|
-
h1 {
|
34
|
+
.rails-default-error-page h1 {
|
35
35
|
font-size: 100%;
|
36
36
|
color: #730E15;
|
37
37
|
line-height: 1.5em;
|
38
38
|
}
|
39
39
|
|
40
|
-
div.dialog > p {
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
41
|
margin: 0 0 1em;
|
42
42
|
padding: 1em;
|
43
43
|
background-color: #F7F7F7;
|
@@ -54,7 +54,7 @@
|
|
54
54
|
</style>
|
55
55
|
</head>
|
56
56
|
|
57
|
-
<body>
|
57
|
+
<body class="rails-default-error-page">
|
58
58
|
<!-- This file lives in public/404.html -->
|
59
59
|
<div class="dialog">
|
60
60
|
<div>
|
data/test/dummy/public/422.html
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
<title>The change you wanted was rejected (422)</title>
|
5
5
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
6
|
<style>
|
7
|
-
|
7
|
+
.rails-default-error-page {
|
8
8
|
background-color: #EFEFEF;
|
9
9
|
color: #2E2F30;
|
10
10
|
text-align: center;
|
@@ -12,13 +12,13 @@
|
|
12
12
|
margin: 0;
|
13
13
|
}
|
14
14
|
|
15
|
-
div.dialog {
|
15
|
+
.rails-default-error-page div.dialog {
|
16
16
|
width: 95%;
|
17
17
|
max-width: 33em;
|
18
18
|
margin: 4em auto 0;
|
19
19
|
}
|
20
20
|
|
21
|
-
div.dialog > div {
|
21
|
+
.rails-default-error-page div.dialog > div {
|
22
22
|
border: 1px solid #CCC;
|
23
23
|
border-right-color: #999;
|
24
24
|
border-left-color: #999;
|
@@ -31,13 +31,13 @@
|
|
31
31
|
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
32
|
}
|
33
33
|
|
34
|
-
h1 {
|
34
|
+
.rails-default-error-page h1 {
|
35
35
|
font-size: 100%;
|
36
36
|
color: #730E15;
|
37
37
|
line-height: 1.5em;
|
38
38
|
}
|
39
39
|
|
40
|
-
div.dialog > p {
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
41
|
margin: 0 0 1em;
|
42
42
|
padding: 1em;
|
43
43
|
background-color: #F7F7F7;
|
@@ -54,7 +54,7 @@
|
|
54
54
|
</style>
|
55
55
|
</head>
|
56
56
|
|
57
|
-
<body>
|
57
|
+
<body class="rails-default-error-page">
|
58
58
|
<!-- This file lives in public/422.html -->
|
59
59
|
<div class="dialog">
|
60
60
|
<div>
|
data/test/dummy/public/500.html
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
<title>We're sorry, but something went wrong (500)</title>
|
5
5
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
6
|
<style>
|
7
|
-
|
7
|
+
.rails-default-error-page {
|
8
8
|
background-color: #EFEFEF;
|
9
9
|
color: #2E2F30;
|
10
10
|
text-align: center;
|
@@ -12,13 +12,13 @@
|
|
12
12
|
margin: 0;
|
13
13
|
}
|
14
14
|
|
15
|
-
div.dialog {
|
15
|
+
.rails-default-error-page div.dialog {
|
16
16
|
width: 95%;
|
17
17
|
max-width: 33em;
|
18
18
|
margin: 4em auto 0;
|
19
19
|
}
|
20
20
|
|
21
|
-
div.dialog > div {
|
21
|
+
.rails-default-error-page div.dialog > div {
|
22
22
|
border: 1px solid #CCC;
|
23
23
|
border-right-color: #999;
|
24
24
|
border-left-color: #999;
|
@@ -31,13 +31,13 @@
|
|
31
31
|
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
32
|
}
|
33
33
|
|
34
|
-
h1 {
|
34
|
+
.rails-default-error-page h1 {
|
35
35
|
font-size: 100%;
|
36
36
|
color: #730E15;
|
37
37
|
line-height: 1.5em;
|
38
38
|
}
|
39
39
|
|
40
|
-
div.dialog > p {
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
41
|
margin: 0 0 1em;
|
42
42
|
padding: 1em;
|
43
43
|
background-color: #F7F7F7;
|
@@ -54,7 +54,7 @@
|
|
54
54
|
</style>
|
55
55
|
</head>
|
56
56
|
|
57
|
-
<body>
|
57
|
+
<body class="rails-default-error-page">
|
58
58
|
<!-- This file lives in public/500.html -->
|
59
59
|
<div class="dialog">
|
60
60
|
<div>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: push_type_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.11.
|
4
|
+
version: 0.11.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Russell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: push_type_core
|
@@ -16,42 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.11.
|
19
|
+
version: 0.11.2
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.11.
|
26
|
+
version: 0.11.2
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: jbuilder
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 2.
|
33
|
+
version: '2.7'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 2.
|
40
|
+
version: '2.7'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: kaminari
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 1.0
|
47
|
+
version: '1.0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 1.0
|
54
|
+
version: '1.0'
|
55
55
|
description: Restful API for PushType CMS. PushType is a new generation of content
|
56
56
|
management system for Ruby on Rails.
|
57
57
|
email:
|
@@ -110,6 +110,7 @@ files:
|
|
110
110
|
- test/dummy/bin/rake
|
111
111
|
- test/dummy/bin/setup
|
112
112
|
- test/dummy/bin/update
|
113
|
+
- test/dummy/bin/yarn
|
113
114
|
- test/dummy/config.ru
|
114
115
|
- test/dummy/config/application.rb
|
115
116
|
- test/dummy/config/boot.rb
|
@@ -126,24 +127,23 @@ files:
|
|
126
127
|
- test/dummy/config/initializers/filter_parameter_logging.rb
|
127
128
|
- test/dummy/config/initializers/inflections.rb
|
128
129
|
- test/dummy/config/initializers/mime_types.rb
|
129
|
-
- test/dummy/config/initializers/new_framework_defaults.rb
|
130
130
|
- test/dummy/config/initializers/push_type.rb
|
131
|
-
- test/dummy/config/initializers/session_store.rb
|
132
131
|
- test/dummy/config/initializers/wrap_parameters.rb
|
133
132
|
- test/dummy/config/locales/en.yml
|
134
133
|
- test/dummy/config/puma.rb
|
135
134
|
- test/dummy/config/routes.rb
|
136
135
|
- test/dummy/config/secrets.yml
|
137
136
|
- test/dummy/config/spring.rb
|
138
|
-
- test/dummy/db/migrate/
|
139
|
-
- test/dummy/db/migrate/
|
140
|
-
- test/dummy/db/migrate/
|
141
|
-
- test/dummy/db/migrate/
|
142
|
-
- test/dummy/db/migrate/
|
143
|
-
- test/dummy/db/migrate/
|
137
|
+
- test/dummy/db/migrate/20170922151312_create_push_type_users.push_type.rb
|
138
|
+
- test/dummy/db/migrate/20170922151313_create_push_type_nodes.push_type.rb
|
139
|
+
- test/dummy/db/migrate/20170922151314_create_push_type_node_hierarchies.push_type.rb
|
140
|
+
- test/dummy/db/migrate/20170922151315_create_push_type_assets.push_type.rb
|
141
|
+
- test/dummy/db/migrate/20170922151316_add_field_store_default_values.push_type.rb
|
142
|
+
- test/dummy/db/migrate/20170922151317_drop_legacy_push_type_taxonomies.push_type.rb
|
144
143
|
- test/dummy/db/schema.rb
|
145
144
|
- test/dummy/db/seeds.rb
|
146
145
|
- test/dummy/log/test.log
|
146
|
+
- test/dummy/package.json
|
147
147
|
- test/dummy/public/404.html
|
148
148
|
- test/dummy/public/422.html
|
149
149
|
- test/dummy/public/500.html
|
@@ -204,6 +204,7 @@ test_files:
|
|
204
204
|
- test/dummy/bin/rake
|
205
205
|
- test/dummy/bin/setup
|
206
206
|
- test/dummy/bin/update
|
207
|
+
- test/dummy/bin/yarn
|
207
208
|
- test/dummy/config/application.rb
|
208
209
|
- test/dummy/config/boot.rb
|
209
210
|
- test/dummy/config/cable.yml
|
@@ -219,9 +220,7 @@ test_files:
|
|
219
220
|
- test/dummy/config/initializers/filter_parameter_logging.rb
|
220
221
|
- test/dummy/config/initializers/inflections.rb
|
221
222
|
- test/dummy/config/initializers/mime_types.rb
|
222
|
-
- test/dummy/config/initializers/new_framework_defaults.rb
|
223
223
|
- test/dummy/config/initializers/push_type.rb
|
224
|
-
- test/dummy/config/initializers/session_store.rb
|
225
224
|
- test/dummy/config/initializers/wrap_parameters.rb
|
226
225
|
- test/dummy/config/locales/en.yml
|
227
226
|
- test/dummy/config/puma.rb
|
@@ -229,15 +228,16 @@ test_files:
|
|
229
228
|
- test/dummy/config/secrets.yml
|
230
229
|
- test/dummy/config/spring.rb
|
231
230
|
- test/dummy/config.ru
|
232
|
-
- test/dummy/db/migrate/
|
233
|
-
- test/dummy/db/migrate/
|
234
|
-
- test/dummy/db/migrate/
|
235
|
-
- test/dummy/db/migrate/
|
236
|
-
- test/dummy/db/migrate/
|
237
|
-
- test/dummy/db/migrate/
|
231
|
+
- test/dummy/db/migrate/20170922151312_create_push_type_users.push_type.rb
|
232
|
+
- test/dummy/db/migrate/20170922151313_create_push_type_nodes.push_type.rb
|
233
|
+
- test/dummy/db/migrate/20170922151314_create_push_type_node_hierarchies.push_type.rb
|
234
|
+
- test/dummy/db/migrate/20170922151315_create_push_type_assets.push_type.rb
|
235
|
+
- test/dummy/db/migrate/20170922151316_add_field_store_default_values.push_type.rb
|
236
|
+
- test/dummy/db/migrate/20170922151317_drop_legacy_push_type_taxonomies.push_type.rb
|
238
237
|
- test/dummy/db/schema.rb
|
239
238
|
- test/dummy/db/seeds.rb
|
240
239
|
- test/dummy/log/test.log
|
240
|
+
- test/dummy/package.json
|
241
241
|
- test/dummy/public/404.html
|
242
242
|
- test/dummy/public/422.html
|
243
243
|
- test/dummy/public/500.html
|
@@ -1,24 +0,0 @@
|
|
1
|
-
# Be sure to restart your server when you modify this file.
|
2
|
-
#
|
3
|
-
# This file contains migration options to ease your Rails 5.0 upgrade.
|
4
|
-
#
|
5
|
-
# Read the Guide for Upgrading Ruby on Rails for more info on each option.
|
6
|
-
|
7
|
-
# Enable per-form CSRF tokens. Previous versions had false.
|
8
|
-
Rails.application.config.action_controller.per_form_csrf_tokens = true
|
9
|
-
|
10
|
-
# Enable origin-checking CSRF mitigation. Previous versions had false.
|
11
|
-
Rails.application.config.action_controller.forgery_protection_origin_check = true
|
12
|
-
|
13
|
-
# Make Ruby 2.4 preserve the timezone of the receiver when calling `to_time`.
|
14
|
-
# Previous versions had false.
|
15
|
-
ActiveSupport.to_time_preserves_timezone = true
|
16
|
-
|
17
|
-
# Require `belongs_to` associations by default. Previous versions had false.
|
18
|
-
Rails.application.config.active_record.belongs_to_required_by_default = true
|
19
|
-
|
20
|
-
# Do not halt callback chains when a callback returns false. Previous versions had true.
|
21
|
-
ActiveSupport.halt_callback_chains_on_return_false = false
|
22
|
-
|
23
|
-
# Configure SSL options to enable HSTS with subdomains. Previous versions had false.
|
24
|
-
Rails.application.config.ssl_options = { hsts: { subdomains: true } }
|