trusty-cms 4.1.7 → 4.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +131 -128
- data/INSTALL.md +2 -0
- data/LICENSE.md +1 -1
- data/app/controllers/admin/pages_controller.rb +1 -1
- data/app/controllers/admin/preferences_controller.rb +1 -1
- data/app/controllers/admin/resource_controller.rb +1 -1
- data/app/controllers/admin/users_controller.rb +1 -1
- data/app/helpers/admin/node_helper.rb +1 -1
- data/app/models/asset.rb +3 -3
- data/app/models/page.rb +3 -3
- data/app/models/standard_tags.rb +3 -3
- data/app/models/user.rb +1 -1
- data/config/database.mysql.yml +10 -2
- data/config/environments/development.rb +2 -0
- data/db/migrate/20210331134718_create_active_storage_tables.active_storage.rb +36 -0
- data/lib/generators/extension/USAGE +30 -0
- data/lib/generators/extension/extension_generator.rb +97 -0
- data/lib/generators/extension/templates/README.md +6 -0
- data/lib/generators/extension/templates/RSpecRakefile +109 -0
- data/lib/generators/extension/templates/Rakefile +25 -0
- data/lib/generators/extension/templates/cucumber.yml +1 -0
- data/lib/generators/extension/templates/cucumber_env.rb +11 -0
- data/lib/generators/extension/templates/cucumber_paths.rb +22 -0
- data/lib/generators/extension/templates/en.yml +3 -0
- data/lib/generators/extension/templates/extension.rb +21 -0
- data/lib/generators/extension/templates/functional_test.rb +15 -0
- data/lib/generators/extension/templates/gemspec.rb +29 -0
- data/lib/generators/extension/templates/lib.rb +8 -0
- data/lib/generators/extension/templates/migration.rb +9 -0
- data/lib/generators/extension/templates/radiant_config.rb +3 -0
- data/lib/generators/extension/templates/routes.rb +5 -0
- data/lib/generators/extension/templates/spec.opts +6 -0
- data/lib/generators/extension/templates/spec_helper.rb +42 -0
- data/lib/generators/extension/templates/tasks.rake +47 -0
- data/lib/generators/extension/templates/test_helper.rb +24 -0
- data/lib/generators/extension_controller/USAGE +36 -0
- data/lib/generators/extension_controller/extension_controller_generator.rb +84 -0
- data/lib/generators/extension_controller/templates/controller.rb +10 -0
- data/lib/generators/extension_controller/templates/controller_spec.rb +23 -0
- data/lib/generators/extension_controller/templates/functional_test.rb +11 -0
- data/lib/generators/extension_controller/templates/helper.rb +2 -0
- data/lib/generators/extension_controller/templates/helper_spec.rb +11 -0
- data/lib/generators/extension_controller/templates/helper_test.rb +4 -0
- data/lib/generators/extension_controller/templates/view.html.erb +2 -0
- data/lib/generators/extension_controller/templates/view_spec.rb +12 -0
- data/lib/generators/extension_mailer/USAGE +17 -0
- data/lib/generators/extension_mailer/extension_mailer_generator.rb +68 -0
- data/lib/generators/extension_mailer/templates/fixture.erb +3 -0
- data/lib/generators/extension_mailer/templates/mailer.rb +15 -0
- data/lib/generators/extension_mailer/templates/unit_test.rb +21 -0
- data/lib/generators/extension_mailer/templates/view.erb +3 -0
- data/lib/generators/extension_migration/USAGE +34 -0
- data/lib/generators/extension_migration/extension_migration_generator.rb +25 -0
- data/lib/generators/extension_migration/templates/migration.rb +11 -0
- data/lib/generators/extension_model/USAGE +35 -0
- data/lib/generators/extension_model/extension_model_generator.rb +68 -0
- data/lib/generators/extension_model/templates/fixtures.yml +19 -0
- data/lib/generators/extension_model/templates/migration.rb +16 -0
- data/lib/generators/extension_model/templates/model.rb +2 -0
- data/lib/generators/extension_model/templates/model_spec.rb +11 -0
- data/lib/generators/extension_model/templates/unit_test.rb +8 -0
- data/lib/generators/generator_base_extension.rb +18 -0
- data/lib/generators/instance/instance_generator.rb +148 -0
- data/lib/generators/instance/templates/databases/db2.yml +40 -0
- data/lib/generators/instance/templates/databases/mysql.yml +47 -0
- data/lib/generators/instance/templates/databases/postgresql.yml +44 -0
- data/lib/generators/instance/templates/databases/sqlite3.yml +16 -0
- data/lib/generators/instance/templates/databases/sqlserver.yml +21 -0
- data/lib/generators/instance/templates/instance_boot.rb +122 -0
- data/lib/generators/instance/templates/instance_config.ru +2 -0
- data/lib/generators/instance/templates/instance_environment.rb +93 -0
- data/lib/generators/instance/templates/instance_gemfile +78 -0
- data/lib/generators/instance/templates/instance_generate +6 -0
- data/lib/generators/instance/templates/instance_radiant_config.rb +16 -0
- data/lib/generators/instance/templates/instance_rakefile +3 -0
- data/lib/generators/instance/templates/instance_routes.rb +1 -0
- data/lib/generators/language_extension/USAGE +27 -0
- data/lib/generators/language_extension/language_extension_generator.rb +71 -0
- data/lib/generators/language_extension/templates/README +3 -0
- data/lib/generators/language_extension/templates/RSpecRakefile +123 -0
- data/lib/generators/language_extension/templates/Rakefile +25 -0
- data/lib/generators/language_extension/templates/available_tags.yml +553 -0
- data/lib/generators/language_extension/templates/cucumber.yml +1 -0
- data/lib/generators/language_extension/templates/cucumber_env.rb +16 -0
- data/lib/generators/language_extension/templates/cucumber_paths.rb +14 -0
- data/lib/generators/language_extension/templates/extension.rb +12 -0
- data/lib/generators/language_extension/templates/functional_test.rb +15 -0
- data/lib/generators/language_extension/templates/gemspec.rb +24 -0
- data/lib/generators/language_extension/templates/lang.yml +181 -0
- data/lib/generators/language_extension/templates/lib.rb +8 -0
- data/lib/generators/language_extension/templates/spec.opts +6 -0
- data/lib/generators/language_extension/templates/spec_helper.rb +36 -0
- data/lib/generators/language_extension/templates/tasks.rake +28 -0
- data/lib/generators/language_extension/templates/test_helper.rb +26 -0
- data/lib/generators/trusty_cms/USAGE +8 -0
- data/lib/generators/trusty_cms/templates/Rakefile.erb +7 -0
- data/lib/generators/trusty_cms/templates/application.rb.erb +149 -0
- data/lib/generators/trusty_cms/templates/boot.rb.erb +9 -0
- data/lib/generators/trusty_cms/templates/config.ru.erb +4 -0
- data/lib/generators/trusty_cms/templates/database.yml.erb +28 -0
- data/lib/generators/trusty_cms/templates/environment.rb.erb +5 -0
- data/lib/generators/trusty_cms/templates/environments/development.rb.erb +24 -0
- data/lib/generators/trusty_cms/templates/environments/production.rb.erb +26 -0
- data/lib/generators/trusty_cms/templates/environments/test.rb.erb +35 -0
- data/lib/generators/trusty_cms/templates/initializers/secret_token.rb.erb +13 -0
- data/lib/generators/trusty_cms/templates/initializers/session_store.rb.erb +8 -0
- data/lib/generators/trusty_cms/templates/initializers/trusty_cms_config.rb.erb +16 -0
- data/lib/generators/trusty_cms/templates/preinitializer.rb.erb +18 -0
- data/lib/generators/trusty_cms/templates/routes.rb.erb +0 -0
- data/lib/generators/trusty_cms/trusty_cms_generator.rb +32 -0
- data/lib/login_system.rb +1 -1
- data/lib/trusty_cms.rb +1 -1
- data/lib/trusty_cms/setup.rb +8 -8
- data/spec/dummy/config/database.yml +6 -2
- data/trusty_cms.gemspec +4 -5
- data/vendor/extensions/clipped-extension/lib/asset_tags.rb +4 -4
- data/yarn.lock +3 -3
- metadata +144 -84
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/core.js +0 -126
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/failsafe/index.js +0 -4
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/failsafe/map.js +0 -56
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/failsafe/seq.js +0 -43
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/failsafe/string.js +0 -28
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/index.js +0 -36
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/json.js +0 -76
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/options.js +0 -23
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/binary.js +0 -87
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/index.js +0 -157
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/omap.js +0 -142
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/pairs.js +0 -81
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/set.js +0 -114
- data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/timestamp.js +0 -97
- data/spec/spec/dummy/node_modules/yaml/dist/tags/core.js +0 -114
- data/spec/spec/dummy/node_modules/yaml/dist/tags/failsafe/index.js +0 -17
- data/spec/spec/dummy/node_modules/yaml/dist/tags/failsafe/map.js +0 -37
- data/spec/spec/dummy/node_modules/yaml/dist/tags/failsafe/seq.js +0 -34
- data/spec/spec/dummy/node_modules/yaml/dist/tags/failsafe/string.js +0 -40
- data/spec/spec/dummy/node_modules/yaml/dist/tags/index.js +0 -62
- data/spec/spec/dummy/node_modules/yaml/dist/tags/json.js +0 -60
- data/spec/spec/dummy/node_modules/yaml/dist/tags/options.js +0 -35
- data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/binary.js +0 -97
- data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/index.js +0 -131
- data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/omap.js +0 -105
- data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/pairs.js +0 -80
- data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/set.js +0 -91
- data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/timestamp.js +0 -93
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d92ba06bde5529d4765f3383b8724063f42b760909be7630b51d4277fe28e66d
|
4
|
+
data.tar.gz: 0227a9f6118266789d256df74f3d7672333079585b41b7a73a07911b97c2340b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 626c2a0eb4a13092ab342e039b3a8745307e8f842b6bdb1476d0e93c7f9b11ad9a7100ecb21816332b07dd215d8fddda0603ddc85230389d8d0bc3103113bdf3
|
7
|
+
data.tar.gz: a7f225c262b5c51128eb1438a84fbf37d0ea77562357e4979e0da998a3bdaf15c3f50d366b2fc892345b4c063c0c6c9a1ea18e46beb45fb422247cc3e22eb520
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
trusty-cms (4.
|
4
|
+
trusty-cms (4.2.2)
|
5
5
|
RedCloth (= 4.3.2)
|
6
6
|
acts_as_list (>= 0.9.5, < 1.1.0)
|
7
7
|
acts_as_tree (>= 2.6.1, < 2.9.0)
|
@@ -9,21 +9,20 @@ PATH
|
|
9
9
|
delocalize (>= 0.2, < 2.0)
|
10
10
|
devise
|
11
11
|
execjs (~> 2.7)
|
12
|
-
haml
|
13
|
-
haml-rails (~>
|
12
|
+
haml
|
13
|
+
haml-rails (~> 2.0)
|
14
14
|
highline (>= 1.7.8, < 2.1.0)
|
15
15
|
kraken-io
|
16
16
|
mini_racer
|
17
17
|
mysql2
|
18
|
-
paperclip (> 5.2)
|
19
18
|
rack (>= 2.0.1, < 2.3.0)
|
20
19
|
rack-cache (~> 1.7)
|
21
20
|
radius (~> 0.7)
|
22
21
|
rails
|
23
|
-
rake (<
|
22
|
+
rake (< 14.0)
|
24
23
|
rdoc (>= 5.1, < 7.0)
|
25
24
|
roadie-rails
|
26
|
-
|
25
|
+
sass-rails
|
27
26
|
stringex (>= 2.7.1, < 2.9.0)
|
28
27
|
tzinfo (>= 1.2.3, < 2.1.0)
|
29
28
|
uglifier (>= 3.2, < 5.0)
|
@@ -34,62 +33,66 @@ GEM
|
|
34
33
|
remote: https://rubygems.org/
|
35
34
|
specs:
|
36
35
|
RedCloth (4.3.2)
|
37
|
-
actioncable (6.
|
38
|
-
actionpack (= 6.
|
36
|
+
actioncable (6.1.3.1)
|
37
|
+
actionpack (= 6.1.3.1)
|
38
|
+
activesupport (= 6.1.3.1)
|
39
39
|
nio4r (~> 2.0)
|
40
40
|
websocket-driver (>= 0.6.1)
|
41
|
-
actionmailbox (6.
|
42
|
-
actionpack (= 6.
|
43
|
-
activejob (= 6.
|
44
|
-
activerecord (= 6.
|
45
|
-
activestorage (= 6.
|
46
|
-
activesupport (= 6.
|
41
|
+
actionmailbox (6.1.3.1)
|
42
|
+
actionpack (= 6.1.3.1)
|
43
|
+
activejob (= 6.1.3.1)
|
44
|
+
activerecord (= 6.1.3.1)
|
45
|
+
activestorage (= 6.1.3.1)
|
46
|
+
activesupport (= 6.1.3.1)
|
47
47
|
mail (>= 2.7.1)
|
48
|
-
actionmailer (6.
|
49
|
-
actionpack (= 6.
|
50
|
-
actionview (= 6.
|
51
|
-
activejob (= 6.
|
48
|
+
actionmailer (6.1.3.1)
|
49
|
+
actionpack (= 6.1.3.1)
|
50
|
+
actionview (= 6.1.3.1)
|
51
|
+
activejob (= 6.1.3.1)
|
52
|
+
activesupport (= 6.1.3.1)
|
52
53
|
mail (~> 2.5, >= 2.5.4)
|
53
54
|
rails-dom-testing (~> 2.0)
|
54
|
-
actionpack (6.
|
55
|
-
actionview (= 6.
|
56
|
-
activesupport (= 6.
|
57
|
-
rack (~> 2.0, >= 2.0.
|
55
|
+
actionpack (6.1.3.1)
|
56
|
+
actionview (= 6.1.3.1)
|
57
|
+
activesupport (= 6.1.3.1)
|
58
|
+
rack (~> 2.0, >= 2.0.9)
|
58
59
|
rack-test (>= 0.6.3)
|
59
60
|
rails-dom-testing (~> 2.0)
|
60
61
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
61
|
-
actiontext (6.
|
62
|
-
actionpack (= 6.
|
63
|
-
activerecord (= 6.
|
64
|
-
activestorage (= 6.
|
65
|
-
activesupport (= 6.
|
62
|
+
actiontext (6.1.3.1)
|
63
|
+
actionpack (= 6.1.3.1)
|
64
|
+
activerecord (= 6.1.3.1)
|
65
|
+
activestorage (= 6.1.3.1)
|
66
|
+
activesupport (= 6.1.3.1)
|
66
67
|
nokogiri (>= 1.8.5)
|
67
|
-
actionview (6.
|
68
|
-
activesupport (= 6.
|
68
|
+
actionview (6.1.3.1)
|
69
|
+
activesupport (= 6.1.3.1)
|
69
70
|
builder (~> 3.1)
|
70
71
|
erubi (~> 1.4)
|
71
72
|
rails-dom-testing (~> 2.0)
|
72
73
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
73
|
-
activejob (6.
|
74
|
-
activesupport (= 6.
|
74
|
+
activejob (6.1.3.1)
|
75
|
+
activesupport (= 6.1.3.1)
|
75
76
|
globalid (>= 0.3.6)
|
76
|
-
activemodel (6.
|
77
|
-
activesupport (= 6.
|
78
|
-
activerecord (6.
|
79
|
-
activemodel (= 6.
|
80
|
-
activesupport (= 6.
|
81
|
-
activestorage (6.
|
82
|
-
actionpack (= 6.
|
83
|
-
activejob (= 6.
|
84
|
-
activerecord (= 6.
|
85
|
-
|
86
|
-
|
77
|
+
activemodel (6.1.3.1)
|
78
|
+
activesupport (= 6.1.3.1)
|
79
|
+
activerecord (6.1.3.1)
|
80
|
+
activemodel (= 6.1.3.1)
|
81
|
+
activesupport (= 6.1.3.1)
|
82
|
+
activestorage (6.1.3.1)
|
83
|
+
actionpack (= 6.1.3.1)
|
84
|
+
activejob (= 6.1.3.1)
|
85
|
+
activerecord (= 6.1.3.1)
|
86
|
+
activesupport (= 6.1.3.1)
|
87
|
+
marcel (~> 1.0.0)
|
88
|
+
mini_mime (~> 1.0.2)
|
89
|
+
activesupport (6.1.3.1)
|
87
90
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
88
|
-
i18n (>=
|
89
|
-
minitest (
|
90
|
-
tzinfo (~>
|
91
|
-
zeitwerk (~> 2.
|
92
|
-
acts_as_list (1.0.
|
91
|
+
i18n (>= 1.6, < 2)
|
92
|
+
minitest (>= 5.1)
|
93
|
+
tzinfo (~> 2.0)
|
94
|
+
zeitwerk (~> 2.3)
|
95
|
+
acts_as_list (1.0.3)
|
93
96
|
activerecord (>= 4.2)
|
94
97
|
acts_as_tree (2.8.0)
|
95
98
|
activerecord (>= 3.0.0)
|
@@ -98,13 +101,13 @@ GEM
|
|
98
101
|
bcrypt (3.1.16)
|
99
102
|
builder (3.2.4)
|
100
103
|
byebug (11.1.3)
|
101
|
-
capybara (3.
|
104
|
+
capybara (3.35.3)
|
102
105
|
addressable
|
103
106
|
mini_mime (>= 0.1.3)
|
104
107
|
nokogiri (~> 1.8)
|
105
108
|
rack (>= 1.6.0)
|
106
109
|
rack-test (>= 0.6.3)
|
107
|
-
regexp_parser (
|
110
|
+
regexp_parser (>= 1.5, < 3.0)
|
108
111
|
xpath (~> 3.2)
|
109
112
|
ckeditor (4.2.4)
|
110
113
|
cocaine
|
@@ -114,11 +117,16 @@ GEM
|
|
114
117
|
cocaine (0.6.0)
|
115
118
|
terrapin (= 0.6.0)
|
116
119
|
coderay (1.1.3)
|
117
|
-
concurrent-ruby (1.1.
|
120
|
+
concurrent-ruby (1.1.8)
|
118
121
|
crass (1.0.6)
|
119
|
-
css_parser (1.
|
122
|
+
css_parser (1.9.0)
|
120
123
|
addressable
|
121
|
-
database_cleaner (
|
124
|
+
database_cleaner (2.0.1)
|
125
|
+
database_cleaner-active_record (~> 2.0.0)
|
126
|
+
database_cleaner-active_record (2.0.0)
|
127
|
+
activerecord (>= 5.a)
|
128
|
+
database_cleaner-core (~> 2.0.0)
|
129
|
+
database_cleaner-core (2.0.1)
|
122
130
|
delocalize (1.2.0)
|
123
131
|
rails (>= 2)
|
124
132
|
devise (4.7.3)
|
@@ -128,8 +136,8 @@ GEM
|
|
128
136
|
responders
|
129
137
|
warden (~> 1.2.3)
|
130
138
|
diff-lcs (1.4.4)
|
131
|
-
docile (1.3.
|
132
|
-
erubi (1.
|
139
|
+
docile (1.3.5)
|
140
|
+
erubi (1.10.0)
|
133
141
|
erubis (2.7.0)
|
134
142
|
execjs (2.7.0)
|
135
143
|
factory_bot (6.1.0)
|
@@ -137,18 +145,18 @@ GEM
|
|
137
145
|
factory_bot_rails (6.1.0)
|
138
146
|
factory_bot (~> 6.1.0)
|
139
147
|
railties (>= 5.0.0)
|
140
|
-
ffi (1.
|
148
|
+
ffi (1.15.0)
|
141
149
|
globalid (0.4.2)
|
142
150
|
activesupport (>= 4.2.0)
|
143
|
-
haml (5.2.
|
151
|
+
haml (5.2.1)
|
144
152
|
temple (>= 0.8.0)
|
145
153
|
tilt
|
146
|
-
haml-rails (
|
147
|
-
actionpack (>=
|
148
|
-
activesupport (>=
|
154
|
+
haml-rails (2.0.1)
|
155
|
+
actionpack (>= 5.1)
|
156
|
+
activesupport (>= 5.1)
|
149
157
|
haml (>= 4.0.6, < 6.0)
|
150
158
|
html2haml (>= 1.0.1)
|
151
|
-
railties (>=
|
159
|
+
railties (>= 5.1)
|
152
160
|
highline (2.0.3)
|
153
161
|
html2haml (2.2.0)
|
154
162
|
erubis (~> 2.7.0)
|
@@ -158,9 +166,9 @@ GEM
|
|
158
166
|
httparty (0.18.1)
|
159
167
|
mime-types (~> 3.0)
|
160
168
|
multi_xml (>= 0.5.2)
|
161
|
-
i18n (1.8.
|
169
|
+
i18n (1.8.10)
|
162
170
|
concurrent-ruby (~> 1.0)
|
163
|
-
json (2.
|
171
|
+
json (2.5.1)
|
164
172
|
kraken-io (0.1.3)
|
165
173
|
activesupport
|
166
174
|
httparty
|
@@ -168,37 +176,28 @@ GEM
|
|
168
176
|
multipart-post
|
169
177
|
launchy (2.5.0)
|
170
178
|
addressable (~> 2.7)
|
171
|
-
libv8 (8.4.255.0)
|
172
|
-
loofah (2.
|
179
|
+
libv8 (8.4.255.0-x86_64-darwin-20)
|
180
|
+
loofah (2.9.0)
|
173
181
|
crass (~> 1.0.2)
|
174
182
|
nokogiri (>= 1.5.9)
|
175
183
|
mail (2.7.1)
|
176
184
|
mini_mime (>= 0.1.1)
|
177
|
-
marcel (0.
|
178
|
-
mimemagic (~> 0.3.2)
|
185
|
+
marcel (1.0.0)
|
179
186
|
method_source (1.0.0)
|
180
187
|
mime-types (3.3.1)
|
181
188
|
mime-types-data (~> 3.2015)
|
182
|
-
mime-types-data (3.
|
183
|
-
|
184
|
-
mini_mime (1.0.2)
|
185
|
-
mini_portile2 (2.4.0)
|
189
|
+
mime-types-data (3.2021.0225)
|
190
|
+
mini_mime (1.0.3)
|
186
191
|
mini_racer (0.3.1)
|
187
192
|
libv8 (~> 8.4.255)
|
188
|
-
minitest (5.14.
|
193
|
+
minitest (5.14.4)
|
189
194
|
multi_xml (0.6.0)
|
190
195
|
multipart-post (2.1.1)
|
191
196
|
mysql2 (0.5.3)
|
192
|
-
nio4r (2.5.
|
193
|
-
nokogiri (1.
|
194
|
-
|
197
|
+
nio4r (2.5.7)
|
198
|
+
nokogiri (1.11.2-x86_64-darwin)
|
199
|
+
racc (~> 1.4)
|
195
200
|
orm_adapter (0.5.0)
|
196
|
-
paperclip (6.1.0)
|
197
|
-
activemodel (>= 4.2.0)
|
198
|
-
activesupport (>= 4.2.0)
|
199
|
-
mime-types
|
200
|
-
mimemagic (~> 0.3.0)
|
201
|
-
terrapin (~> 0.6.0)
|
202
201
|
poltergeist (1.18.1)
|
203
202
|
capybara (>= 2.1, < 4)
|
204
203
|
cliver (~> 0.3.1)
|
@@ -210,26 +209,27 @@ GEM
|
|
210
209
|
byebug (~> 11.0)
|
211
210
|
pry (~> 0.13.0)
|
212
211
|
public_suffix (4.0.6)
|
212
|
+
racc (1.5.2)
|
213
213
|
rack (2.2.3)
|
214
214
|
rack-cache (1.12.1)
|
215
215
|
rack (>= 0.4)
|
216
216
|
rack-test (1.1.0)
|
217
217
|
rack (>= 1.0, < 3)
|
218
218
|
radius (0.7.5)
|
219
|
-
rails (6.
|
220
|
-
actioncable (= 6.
|
221
|
-
actionmailbox (= 6.
|
222
|
-
actionmailer (= 6.
|
223
|
-
actionpack (= 6.
|
224
|
-
actiontext (= 6.
|
225
|
-
actionview (= 6.
|
226
|
-
activejob (= 6.
|
227
|
-
activemodel (= 6.
|
228
|
-
activerecord (= 6.
|
229
|
-
activestorage (= 6.
|
230
|
-
activesupport (= 6.
|
231
|
-
bundler (>= 1.
|
232
|
-
railties (= 6.
|
219
|
+
rails (6.1.3.1)
|
220
|
+
actioncable (= 6.1.3.1)
|
221
|
+
actionmailbox (= 6.1.3.1)
|
222
|
+
actionmailer (= 6.1.3.1)
|
223
|
+
actionpack (= 6.1.3.1)
|
224
|
+
actiontext (= 6.1.3.1)
|
225
|
+
actionview (= 6.1.3.1)
|
226
|
+
activejob (= 6.1.3.1)
|
227
|
+
activemodel (= 6.1.3.1)
|
228
|
+
activerecord (= 6.1.3.1)
|
229
|
+
activestorage (= 6.1.3.1)
|
230
|
+
activesupport (= 6.1.3.1)
|
231
|
+
bundler (>= 1.15.0)
|
232
|
+
railties (= 6.1.3.1)
|
233
233
|
sprockets-rails (>= 2.0.0)
|
234
234
|
rails-dom-testing (2.0.3)
|
235
235
|
activesupport (>= 4.2.0)
|
@@ -238,43 +238,45 @@ GEM
|
|
238
238
|
loofah (~> 2.3)
|
239
239
|
rails-observers (0.1.5)
|
240
240
|
activemodel (>= 4.0)
|
241
|
-
railties (6.
|
242
|
-
actionpack (= 6.
|
243
|
-
activesupport (= 6.
|
241
|
+
railties (6.1.3.1)
|
242
|
+
actionpack (= 6.1.3.1)
|
243
|
+
activesupport (= 6.1.3.1)
|
244
244
|
method_source
|
245
245
|
rake (>= 0.8.7)
|
246
|
-
thor (
|
247
|
-
rake (
|
248
|
-
rdoc (6.
|
249
|
-
regexp_parser (1.
|
246
|
+
thor (~> 1.0)
|
247
|
+
rake (13.0.3)
|
248
|
+
rdoc (6.3.0)
|
249
|
+
regexp_parser (2.1.1)
|
250
250
|
responders (3.0.1)
|
251
251
|
actionpack (>= 5.0)
|
252
252
|
railties (>= 5.0)
|
253
253
|
roadie (4.0.0)
|
254
254
|
css_parser (~> 1.4)
|
255
255
|
nokogiri (~> 1.8)
|
256
|
-
roadie-rails (2.
|
257
|
-
railties (>= 5.1, < 6.
|
256
|
+
roadie-rails (2.2.0)
|
257
|
+
railties (>= 5.1, < 6.2)
|
258
258
|
roadie (>= 3.1, < 5.0)
|
259
|
-
rspec-core (3.
|
260
|
-
rspec-support (~> 3.
|
261
|
-
rspec-expectations (3.
|
259
|
+
rspec-core (3.10.1)
|
260
|
+
rspec-support (~> 3.10.0)
|
261
|
+
rspec-expectations (3.10.1)
|
262
262
|
diff-lcs (>= 1.2.0, < 2.0)
|
263
|
-
rspec-support (~> 3.
|
264
|
-
rspec-mocks (3.
|
263
|
+
rspec-support (~> 3.10.0)
|
264
|
+
rspec-mocks (3.10.2)
|
265
265
|
diff-lcs (>= 1.2.0, < 2.0)
|
266
|
-
rspec-support (~> 3.
|
267
|
-
rspec-rails (
|
268
|
-
actionpack (>=
|
269
|
-
activesupport (>=
|
270
|
-
railties (>=
|
271
|
-
rspec-core (~> 3.
|
272
|
-
rspec-expectations (~> 3.
|
273
|
-
rspec-mocks (~> 3.
|
274
|
-
rspec-support (~> 3.
|
275
|
-
rspec-support (3.
|
276
|
-
ruby_parser (3.15.
|
266
|
+
rspec-support (~> 3.10.0)
|
267
|
+
rspec-rails (5.0.1)
|
268
|
+
actionpack (>= 5.2)
|
269
|
+
activesupport (>= 5.2)
|
270
|
+
railties (>= 5.2)
|
271
|
+
rspec-core (~> 3.10)
|
272
|
+
rspec-expectations (~> 3.10)
|
273
|
+
rspec-mocks (~> 3.10)
|
274
|
+
rspec-support (~> 3.10)
|
275
|
+
rspec-support (3.10.2)
|
276
|
+
ruby_parser (3.15.1)
|
277
277
|
sexp_processor (~> 4.9)
|
278
|
+
sass-rails (6.0.0)
|
279
|
+
sassc-rails (~> 2.1, >= 2.1.1)
|
278
280
|
sassc (2.4.0)
|
279
281
|
ffi (~> 1.9)
|
280
282
|
sassc-rails (2.1.2)
|
@@ -283,11 +285,13 @@ GEM
|
|
283
285
|
sprockets (> 3.0)
|
284
286
|
sprockets-rails
|
285
287
|
tilt
|
286
|
-
sexp_processor (4.15.
|
287
|
-
simplecov (0.
|
288
|
+
sexp_processor (4.15.2)
|
289
|
+
simplecov (0.21.2)
|
288
290
|
docile (~> 1.1)
|
289
291
|
simplecov-html (~> 0.11)
|
292
|
+
simplecov_json_formatter (~> 0.1)
|
290
293
|
simplecov-html (0.12.3)
|
294
|
+
simplecov_json_formatter (0.1.2)
|
291
295
|
sprockets (4.0.2)
|
292
296
|
concurrent-ruby (~> 1.0)
|
293
297
|
rack (> 1, < 3)
|
@@ -299,13 +303,12 @@ GEM
|
|
299
303
|
temple (0.8.2)
|
300
304
|
terrapin (0.6.0)
|
301
305
|
climate_control (>= 0.0.3, < 1.0)
|
302
|
-
thor (1.0
|
303
|
-
thread_safe (0.3.6)
|
306
|
+
thor (1.1.0)
|
304
307
|
tilt (2.0.10)
|
305
308
|
trustygems (0.2.1)
|
306
309
|
rake
|
307
|
-
tzinfo (
|
308
|
-
|
310
|
+
tzinfo (2.0.4)
|
311
|
+
concurrent-ruby (~> 1.0)
|
309
312
|
uglifier (4.2.0)
|
310
313
|
execjs (>= 0.3.0, < 3)
|
311
314
|
uuidtools (2.2.0)
|
@@ -317,10 +320,10 @@ GEM
|
|
317
320
|
will_paginate (3.3.0)
|
318
321
|
xpath (3.2.0)
|
319
322
|
nokogiri (~> 1.8)
|
320
|
-
zeitwerk (2.4.
|
323
|
+
zeitwerk (2.4.2)
|
321
324
|
|
322
325
|
PLATFORMS
|
323
|
-
|
326
|
+
x86_64-darwin-20
|
324
327
|
|
325
328
|
DEPENDENCIES
|
326
329
|
acts_as_list
|
@@ -337,4 +340,4 @@ DEPENDENCIES
|
|
337
340
|
trustygems (~> 0.2.0)
|
338
341
|
|
339
342
|
BUNDLED WITH
|
340
|
-
2.
|
343
|
+
2.2.15
|
data/INSTALL.md
CHANGED
@@ -15,4 +15,6 @@ From within the directory containing your TrustyCMS instance:
|
|
15
15
|
|
16
16
|
5. add config.extensions = [ :snippets, :clipped, :layouts, :multi_site ] to enable them in application.rb
|
17
17
|
|
18
|
+
7. Add utf8 encoding to your db.yml
|
19
|
+
|
18
20
|
6. Run `bundle exec rake db:setup`, `bundle exec rake trusty_cms_engine:install:migrations`, then `bundle exec rake db:bootstrap`.
|