trusty-cms 3.1.11 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +9 -14
- data/Gemfile.lock +84 -70
- data/README.md +4 -0
- data/app/assets/images/admin/add.png +0 -0
- data/app/assets/images/admin/archive_icon.png +0 -0
- data/app/assets/images/admin/audio_icon.png +0 -0
- data/app/assets/images/admin/audio_thumbnail.png +0 -0
- data/app/assets/images/admin/c_icon.png +0 -0
- data/app/assets/images/admin/copy.png +0 -0
- data/app/assets/images/admin/css_icon.png +0 -0
- data/app/assets/images/admin/database_icon.png +0 -0
- data/app/assets/images/admin/delete.png +0 -0
- data/app/assets/images/admin/document_icon.png +0 -0
- data/app/assets/images/admin/document_thumbnail.png +0 -0
- data/app/assets/images/admin/flash_icon.png +0 -0
- data/app/assets/images/admin/flash_thumbnail.png +0 -0
- data/app/assets/images/admin/font_icon.png +0 -0
- data/app/assets/images/admin/gzip_icon.png +0 -0
- data/app/assets/images/admin/html_icon.png +0 -0
- data/app/assets/images/admin/image_icon.png +0 -0
- data/app/assets/images/admin/image_thumbnail.png +0 -0
- data/app/assets/images/admin/java_icon.png +0 -0
- data/app/assets/images/admin/page_edit.png +0 -0
- data/app/assets/images/admin/pdf_icon.png +0 -0
- data/app/assets/images/admin/pdf_thumbnail.png +0 -0
- data/app/assets/images/admin/perl_icon.png +0 -0
- data/app/assets/images/admin/php_icon.png +0 -0
- data/app/assets/images/admin/presentation_icon.png +0 -0
- data/app/assets/images/admin/python_icon.png +0 -0
- data/app/assets/images/admin/reorder_assets.png +0 -0
- data/app/assets/images/admin/ruby_icon.png +0 -0
- data/app/assets/images/admin/script_icon.png +0 -0
- data/app/assets/images/admin/spinner.gif +0 -0
- data/app/assets/images/admin/spreadsheet_icon.png +0 -0
- data/app/assets/images/admin/tar_icon.png +0 -0
- data/app/assets/images/admin/unknown_icon.png +0 -0
- data/app/assets/images/admin/unknown_thumbnail.png +0 -0
- data/app/assets/images/admin/video_icon.png +0 -0
- data/app/assets/images/admin/video_thumbnail.png +0 -0
- data/app/assets/images/admin/xml_icon.png +0 -0
- data/app/assets/images/admin/zip_icon.png +0 -0
- data/app/assets/javascripts/admin/assets.js +268 -0
- data/app/assets/javascripts/admin/assets_admin.js +16 -0
- data/app/assets/javascripts/admin/jquery.fileupload.js +1457 -0
- data/app/assets/javascripts/admin/jquery.iframe-transport.js +214 -0
- data/app/assets/javascripts/admin/jquery.ui.widget.js +558 -0
- data/app/assets/stylesheets/admin/assets.scss +283 -0
- data/app/controllers/admin/assets_controller.rb +88 -0
- data/app/controllers/admin/page_attachments_controller.rb +23 -0
- data/app/helpers/admin/assets_helper.rb +16 -0
- data/app/helpers/admin/page_attachments_helper.rb +2 -0
- data/app/models/asset.rb +251 -0
- data/app/models/asset_type.rb +239 -0
- data/app/models/old_page_attachment.rb +26 -0
- data/app/models/page_attachment.rb +20 -0
- data/app/views/admin/assets/_asset.html.haml +12 -0
- data/app/views/admin/assets/_asset_table.html.haml +30 -0
- data/app/views/admin/assets/_errors.html.haml +3 -0
- data/app/views/admin/assets/_form.html.haml +18 -0
- data/app/views/admin/assets/_page_assets.html.haml +12 -0
- data/app/views/admin/assets/_search.html.haml +17 -0
- data/app/views/admin/assets/_search_results.html.haml +17 -0
- data/app/views/admin/assets/edit.html.haml +40 -0
- data/app/views/admin/assets/index.html.haml +15 -0
- data/app/views/admin/assets/new.html.haml +24 -0
- data/app/views/admin/assets/refresh.html.haml +14 -0
- data/app/views/admin/assets/remove.html.haml +16 -0
- data/app/views/admin/configuration/_clipped_edit.html.haml +8 -0
- data/app/views/admin/configuration/_clipped_show.html.haml +12 -0
- data/app/views/admin/page_attachments/_attachment.html.haml +25 -0
- data/app/views/admin/pages/_asset_popups.html.haml +37 -0
- data/app/views/admin/pages/_assets.html.haml +13 -0
- data/app/views/admin/removed/_assets_bucket.html.haml +8 -0
- data/app/views/admin/removed/_assets_container.html.haml +54 -0
- data/app/views/admin/removed/_bucket.html.haml +11 -0
- data/app/views/admin/removed/_bucket_asset.html.haml +9 -0
- data/app/views/admin/removed/_show_bucket_link.html.haml +4 -0
- data/app/views/admin/removed/_upload_to_page.html.haml +12 -0
- data/app/views/admin/removed/bucket/_iframe.html.haml +1 -0
- data/config/application.rb +0 -37
- data/config/initializers/assets.rb +1 -0
- data/config/initializers/interpolation.rb +6 -0
- data/config/initializers/kraken.rb +7 -0
- data/config/initializers/trusty_cms_config.rb +67 -0
- data/config/locales/en.yml +101 -0
- data/config/routes.rb +14 -3
- data/coverage/index.html +26 -26
- data/db/migrate/028_create_assets.rb +12 -0
- data/db/migrate/029_create_paperclip_attributes.rb +13 -0
- data/db/migrate/030_create_user_observer.rb +13 -0
- data/db/migrate/031_create_page_attachments.rb +19 -0
- data/db/migrate/032_rename_users.rb +13 -0
- data/db/migrate/20110513205050_asset_uuid.rb +11 -0
- data/db/migrate/20110606111250_update_configuration.rb +34 -0
- data/db/migrate/20110609101438_dimensions.rb +13 -0
- data/lib/trusty_cms.rb +1 -1
- data/spec/dummy/db/schema.rb +22 -0
- data/spec/dummy/log/test.log +95620 -0
- data/spec/dummy/tmp/cache/747/A70/TrustyCms%3A%3AConfig +0 -0
- data/spec/dummy/tmp/cache/85C/FA0/TrustyCms.cache_mtime +0 -0
- data/spec/dummy/tmp/capybara/capybara-20180312152412265881245.html +262 -0
- data/spec/dummy/tmp/capybara/capybara-201803121526139973682798.html +149 -0
- data/spec/factories/layout.rb +1 -1
- data/spec/factories/page.rb +3 -3
- data/spec/factories/page_part.rb +1 -1
- data/spec/factories/user.rb +1 -1
- data/spec/models/layout_spec.rb +6 -6
- data/spec/spec_helper.rb +4 -4
- data/trusty_cms.gemspec +27 -22
- data/vendor/extensions/clipped-extension/clipped_extension.rb +40 -0
- data/vendor/extensions/clipped-extension/lib/asset_tags.rb +346 -0
- data/vendor/extensions/clipped-extension/lib/clipped/engine.rb +11 -0
- data/vendor/extensions/clipped-extension/lib/clipped_admin_ui.rb +28 -0
- data/vendor/extensions/clipped-extension/lib/generators/templates/clipped_config.rb +53 -0
- data/vendor/extensions/clipped-extension/lib/page_asset_associations.rb +13 -0
- data/vendor/extensions/clipped-extension/lib/paperclip/frame_grab.rb +73 -0
- data/vendor/extensions/clipped-extension/lib/paperclip/geometry_transformation.rb +80 -0
- data/vendor/extensions/clipped-extension/lib/tasks/clipped_extension_tasks.rake +124 -0
- data/vendor/extensions/clipped-extension/lib/tasks/paperclip_tasks.rake +79 -0
- data/vendor/extensions/clipped-extension/lib/trusty-clipped-extension.rb +2 -0
- data/vendor/extensions/clipped-extension/lib/trusty_cms_clipped_extension/cloud.rb +41 -0
- metadata +219 -67
- data/config/initializers/ckeditor.rb +0 -3
- data/config/initializers/haml.rb +0 -2
- data/config/initializers/rails_patch.rb +0 -2
- data/config/initializers/string_extensions.rb +0 -1
- data/config/initializers/symbol_extensions.rb +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f79f185355e72bc0be77aced3d81bc7e657c1ee
|
4
|
+
data.tar.gz: ee88c89f727061af53eed26bd9420eae87f6708c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7818e8d0346b11fccc2bc07ecbcfe0c53cc3806b7bb183da5ae8b523450d090a14e3656c838ecd29c93d2e307e4b00e6b9e1aa3dc18bcd687e31382844d04b10
|
7
|
+
data.tar.gz: 9ed4f01baaa5b27759c26e71d05b3707b7c720a511140b69ba21dc80064dfe96ad12adfa90f4d07b654b8a7c988a6c5670bd5cf1389169f83a4821997668e506
|
data/Gemfile
CHANGED
@@ -12,21 +12,16 @@ gem 'trustygems', '~> 0.2.0'
|
|
12
12
|
gemspec
|
13
13
|
|
14
14
|
group :development, :test do
|
15
|
-
gem '
|
16
|
-
gem '
|
17
|
-
gem '
|
18
|
-
gem 'launchy', '~> 2.4.2'
|
15
|
+
gem 'acts_as_list'
|
16
|
+
gem 'cocaine'
|
17
|
+
gem 'codeclimate-test-reporter'
|
19
18
|
gem 'database_cleaner'
|
20
|
-
gem '
|
21
|
-
gem '
|
22
|
-
gem 'rails-observers', :git => 'https://github.com/rails/rails-observers'
|
23
|
-
gem 'pry-rails'
|
19
|
+
gem 'factory_bot_rails'
|
20
|
+
gem 'launchy', '~> 2.4.2'
|
24
21
|
gem 'mysql2', '~> 0.4.2'
|
22
|
+
gem 'rails-observers', :git => 'https://github.com/rails/rails-observers'
|
23
|
+
gem 'rspec-rails'
|
24
|
+
gem 'poltergeist', '~> 1.14.0'
|
25
|
+
gem 'protected_attributes_continued'
|
25
26
|
gem 'pry-byebug'
|
26
|
-
gem 'simplecov'
|
27
|
-
gem 'codeclimate-test-reporter'
|
28
|
-
gem 'acts_as_list'
|
29
27
|
end
|
30
|
-
|
31
|
-
gem 'nokogiri', '>= 1.7.1'
|
32
|
-
gem 'puma'
|
data/Gemfile.lock
CHANGED
@@ -8,18 +8,22 @@ GIT
|
|
8
8
|
PATH
|
9
9
|
remote: .
|
10
10
|
specs:
|
11
|
-
trusty-cms (3.
|
12
|
-
RedCloth (
|
11
|
+
trusty-cms (3.2.0)
|
12
|
+
RedCloth (= 4.3.2)
|
13
|
+
acts_as_list (~> 0.9.5)
|
13
14
|
acts_as_tree (~> 2.6.1)
|
14
15
|
bundler (~> 1.7)
|
15
16
|
ckeditor (~> 4.2.2)
|
17
|
+
cocaine (~> 0.5.8)
|
16
18
|
compass-rails (~> 3.0.2)
|
17
19
|
delocalize (~> 0.2)
|
18
20
|
execjs (~> 2.7)
|
19
21
|
haml (~> 5.0)
|
20
22
|
haml-rails (~> 1.0.0)
|
21
23
|
highline (~> 1.7.8)
|
24
|
+
kraken-io
|
22
25
|
mysql2 (~> 0.4.2)
|
26
|
+
paperclip (> 5.2)
|
23
27
|
rack (~> 2.0.1)
|
24
28
|
rack-cache (~> 1.7)
|
25
29
|
radius (~> 0.7)
|
@@ -27,55 +31,55 @@ PATH
|
|
27
31
|
rake (< 11.0)
|
28
32
|
rdoc (~> 5.1)
|
29
33
|
roadie-rails (~> 1.2.1)
|
30
|
-
sass-rails (~> 5.0.6)
|
31
34
|
stringex (~> 2.7.1)
|
32
35
|
therubyracer (~> 0.12.3)
|
33
36
|
tzinfo (~> 1.2.3)
|
34
37
|
uglifier (~> 3.2)
|
38
|
+
uuidtools (~> 2.1.5)
|
35
39
|
will_paginate (~> 3.0)
|
36
40
|
|
37
41
|
GEM
|
38
42
|
remote: https://rubygems.org/
|
39
43
|
specs:
|
40
44
|
RedCloth (4.3.2)
|
41
|
-
actioncable (5.1.
|
42
|
-
actionpack (= 5.1.
|
45
|
+
actioncable (5.1.6)
|
46
|
+
actionpack (= 5.1.6)
|
43
47
|
nio4r (~> 2.0)
|
44
48
|
websocket-driver (~> 0.6.1)
|
45
|
-
actionmailer (5.1.
|
46
|
-
actionpack (= 5.1.
|
47
|
-
actionview (= 5.1.
|
48
|
-
activejob (= 5.1.
|
49
|
+
actionmailer (5.1.6)
|
50
|
+
actionpack (= 5.1.6)
|
51
|
+
actionview (= 5.1.6)
|
52
|
+
activejob (= 5.1.6)
|
49
53
|
mail (~> 2.5, >= 2.5.4)
|
50
54
|
rails-dom-testing (~> 2.0)
|
51
|
-
actionpack (5.1.
|
52
|
-
actionview (= 5.1.
|
53
|
-
activesupport (= 5.1.
|
55
|
+
actionpack (5.1.6)
|
56
|
+
actionview (= 5.1.6)
|
57
|
+
activesupport (= 5.1.6)
|
54
58
|
rack (~> 2.0)
|
55
59
|
rack-test (>= 0.6.3)
|
56
60
|
rails-dom-testing (~> 2.0)
|
57
61
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
58
|
-
actionview (5.1.
|
59
|
-
activesupport (= 5.1.
|
62
|
+
actionview (5.1.6)
|
63
|
+
activesupport (= 5.1.6)
|
60
64
|
builder (~> 3.1)
|
61
65
|
erubi (~> 1.4)
|
62
66
|
rails-dom-testing (~> 2.0)
|
63
67
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
64
|
-
activejob (5.1.
|
65
|
-
activesupport (= 5.1.
|
68
|
+
activejob (5.1.6)
|
69
|
+
activesupport (= 5.1.6)
|
66
70
|
globalid (>= 0.3.6)
|
67
|
-
activemodel (5.1.
|
68
|
-
activesupport (= 5.1.
|
69
|
-
activerecord (5.1.
|
70
|
-
activemodel (= 5.1.
|
71
|
-
activesupport (= 5.1.
|
71
|
+
activemodel (5.1.6)
|
72
|
+
activesupport (= 5.1.6)
|
73
|
+
activerecord (5.1.6)
|
74
|
+
activemodel (= 5.1.6)
|
75
|
+
activesupport (= 5.1.6)
|
72
76
|
arel (~> 8.0)
|
73
|
-
activesupport (5.1.
|
77
|
+
activesupport (5.1.6)
|
74
78
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
75
|
-
i18n (
|
79
|
+
i18n (>= 0.7, < 2)
|
76
80
|
minitest (~> 5.1)
|
77
81
|
tzinfo (~> 1.1)
|
78
|
-
acts_as_list (0.9.
|
82
|
+
acts_as_list (0.9.11)
|
79
83
|
activerecord (>= 3.0)
|
80
84
|
acts_as_tree (2.6.1)
|
81
85
|
activerecord (>= 3.0.0)
|
@@ -83,22 +87,22 @@ GEM
|
|
83
87
|
public_suffix (>= 2.0.2, < 4.0)
|
84
88
|
arel (8.0.0)
|
85
89
|
builder (3.2.3)
|
86
|
-
byebug (10.0.
|
87
|
-
capybara (2.
|
90
|
+
byebug (10.0.2)
|
91
|
+
capybara (2.18.0)
|
88
92
|
addressable
|
89
|
-
|
93
|
+
mini_mime (>= 0.1.3)
|
90
94
|
nokogiri (>= 1.3.3)
|
91
95
|
rack (>= 1.0.0)
|
92
96
|
rack-test (>= 0.5.4)
|
93
|
-
xpath (
|
97
|
+
xpath (>= 2.0, < 4.0)
|
94
98
|
chunky_png (1.3.10)
|
95
99
|
ckeditor (4.2.4)
|
96
100
|
cocaine
|
97
101
|
orm_adapter (~> 0.5.0)
|
98
102
|
climate_control (0.2.0)
|
99
103
|
cliver (0.3.2)
|
100
|
-
cocaine (0.
|
101
|
-
|
104
|
+
cocaine (0.5.8)
|
105
|
+
climate_control (>= 0.0.3, < 1.0)
|
102
106
|
codeclimate-test-reporter (1.0.8)
|
103
107
|
simplecov (<= 0.13)
|
104
108
|
coderay (1.1.2)
|
@@ -127,13 +131,13 @@ GEM
|
|
127
131
|
rails (>= 3.0)
|
128
132
|
diff-lcs (1.3)
|
129
133
|
docile (1.1.5)
|
130
|
-
erubi (1.7.
|
134
|
+
erubi (1.7.1)
|
131
135
|
erubis (2.7.0)
|
132
136
|
execjs (2.7.0)
|
133
|
-
|
137
|
+
factory_bot (4.8.2)
|
134
138
|
activesupport (>= 3.0.0)
|
135
|
-
|
136
|
-
|
139
|
+
factory_bot_rails (4.8.2)
|
140
|
+
factory_bot (~> 4.8.2)
|
137
141
|
railties (>= 3.0.0)
|
138
142
|
ffi (1.9.23)
|
139
143
|
globalid (0.4.1)
|
@@ -153,71 +157,85 @@ GEM
|
|
153
157
|
haml (>= 4.0, < 6)
|
154
158
|
nokogiri (>= 1.6.0)
|
155
159
|
ruby_parser (~> 3.5)
|
156
|
-
|
160
|
+
httparty (0.16.2)
|
161
|
+
multi_xml (>= 0.5.2)
|
162
|
+
i18n (1.0.0)
|
157
163
|
concurrent-ruby (~> 1.0)
|
158
164
|
json (2.1.0)
|
165
|
+
kraken-io (0.1.3)
|
166
|
+
activesupport
|
167
|
+
httparty
|
168
|
+
json
|
169
|
+
multipart-post
|
159
170
|
launchy (2.4.3)
|
160
171
|
addressable (~> 2.3)
|
161
172
|
libv8 (3.16.14.19)
|
162
|
-
loofah (2.2.
|
173
|
+
loofah (2.2.2)
|
163
174
|
crass (~> 1.0.2)
|
164
175
|
nokogiri (>= 1.5.9)
|
165
176
|
mail (2.7.0)
|
166
177
|
mini_mime (>= 0.1.1)
|
167
|
-
method_source (0.
|
178
|
+
method_source (0.9.0)
|
168
179
|
mime-types (3.1)
|
169
180
|
mime-types-data (~> 3.2015)
|
170
181
|
mime-types-data (3.2016.0521)
|
182
|
+
mimemagic (0.3.2)
|
171
183
|
mini_mime (1.0.0)
|
172
184
|
mini_portile2 (2.3.0)
|
173
185
|
minitest (5.11.3)
|
174
186
|
multi_json (1.13.1)
|
187
|
+
multi_xml (0.6.0)
|
188
|
+
multipart-post (2.0.0)
|
175
189
|
mysql2 (0.4.10)
|
176
|
-
nio4r (2.
|
190
|
+
nio4r (2.3.0)
|
177
191
|
nokogiri (1.8.2)
|
178
192
|
mini_portile2 (~> 2.3.0)
|
179
193
|
orm_adapter (0.5.0)
|
194
|
+
paperclip (6.0.0)
|
195
|
+
activemodel (>= 4.2.0)
|
196
|
+
activesupport (>= 4.2.0)
|
197
|
+
mime-types
|
198
|
+
mimemagic (~> 0.3.0)
|
199
|
+
terrapin (~> 0.6.0)
|
180
200
|
poltergeist (1.14.0)
|
181
201
|
capybara (~> 2.1)
|
182
202
|
cliver (~> 0.3.1)
|
183
203
|
websocket-driver (>= 0.2.0)
|
184
|
-
|
204
|
+
protected_attributes_continued (1.3.0)
|
205
|
+
activemodel (~> 5.0)
|
206
|
+
pry (0.11.3)
|
185
207
|
coderay (~> 1.1.0)
|
186
|
-
method_source (~> 0.
|
187
|
-
slop (~> 3.4)
|
208
|
+
method_source (~> 0.9.0)
|
188
209
|
pry-byebug (3.6.0)
|
189
210
|
byebug (~> 10.0)
|
190
211
|
pry (~> 0.10)
|
191
|
-
pry-rails (0.3.6)
|
192
|
-
pry (>= 0.10.4)
|
193
212
|
public_suffix (3.0.2)
|
194
|
-
puma (3.11.2)
|
195
213
|
rack (2.0.4)
|
196
214
|
rack-cache (1.7.1)
|
197
215
|
rack (>= 0.4)
|
198
|
-
rack-test (0.
|
216
|
+
rack-test (1.0.0)
|
199
217
|
rack (>= 1.0, < 3)
|
200
218
|
radius (0.7.4)
|
201
|
-
rails (5.1.
|
202
|
-
actioncable (= 5.1.
|
203
|
-
actionmailer (= 5.1.
|
204
|
-
actionpack (= 5.1.
|
205
|
-
actionview (= 5.1.
|
206
|
-
activejob (= 5.1.
|
207
|
-
activemodel (= 5.1.
|
208
|
-
activerecord (= 5.1.
|
209
|
-
activesupport (= 5.1.
|
219
|
+
rails (5.1.6)
|
220
|
+
actioncable (= 5.1.6)
|
221
|
+
actionmailer (= 5.1.6)
|
222
|
+
actionpack (= 5.1.6)
|
223
|
+
actionview (= 5.1.6)
|
224
|
+
activejob (= 5.1.6)
|
225
|
+
activemodel (= 5.1.6)
|
226
|
+
activerecord (= 5.1.6)
|
227
|
+
activesupport (= 5.1.6)
|
210
228
|
bundler (>= 1.3.0)
|
211
|
-
railties (= 5.1.
|
229
|
+
railties (= 5.1.6)
|
212
230
|
sprockets-rails (>= 2.0.0)
|
213
231
|
rails-dom-testing (2.0.3)
|
214
232
|
activesupport (>= 4.2.0)
|
215
233
|
nokogiri (>= 1.6)
|
216
|
-
rails-html-sanitizer (1.0.
|
217
|
-
loofah (~> 2.
|
218
|
-
railties (5.1.
|
219
|
-
actionpack (= 5.1.
|
220
|
-
activesupport (= 5.1.
|
234
|
+
rails-html-sanitizer (1.0.4)
|
235
|
+
loofah (~> 2.2, >= 2.2.2)
|
236
|
+
railties (5.1.6)
|
237
|
+
actionpack (= 5.1.6)
|
238
|
+
activesupport (= 5.1.6)
|
221
239
|
method_source
|
222
240
|
rake (>= 0.8.7)
|
223
241
|
thor (>= 0.18.1, < 2.0)
|
@@ -265,7 +283,6 @@ GEM
|
|
265
283
|
json (>= 1.8, < 3)
|
266
284
|
simplecov-html (~> 0.10.0)
|
267
285
|
simplecov-html (0.10.2)
|
268
|
-
slop (3.6.0)
|
269
286
|
sprockets (3.7.1)
|
270
287
|
concurrent-ruby (~> 1.0)
|
271
288
|
rack (> 1, < 3)
|
@@ -289,33 +306,30 @@ GEM
|
|
289
306
|
thread_safe (~> 0.1)
|
290
307
|
uglifier (3.2.0)
|
291
308
|
execjs (>= 0.3.0, < 3)
|
309
|
+
uuidtools (2.1.5)
|
292
310
|
websocket-driver (0.6.5)
|
293
311
|
websocket-extensions (>= 0.1.0)
|
294
312
|
websocket-extensions (0.1.3)
|
295
313
|
will_paginate (3.1.6)
|
296
|
-
xpath (
|
297
|
-
nokogiri (~> 1.
|
314
|
+
xpath (3.0.0)
|
315
|
+
nokogiri (~> 1.8)
|
298
316
|
|
299
317
|
PLATFORMS
|
300
318
|
ruby
|
301
319
|
|
302
320
|
DEPENDENCIES
|
303
321
|
acts_as_list
|
304
|
-
|
322
|
+
cocaine
|
305
323
|
codeclimate-test-reporter
|
306
324
|
database_cleaner
|
307
|
-
|
325
|
+
factory_bot_rails
|
308
326
|
launchy (~> 2.4.2)
|
309
327
|
mysql2 (~> 0.4.2)
|
310
|
-
nokogiri (>= 1.7.1)
|
311
328
|
poltergeist (~> 1.14.0)
|
312
|
-
|
329
|
+
protected_attributes_continued
|
313
330
|
pry-byebug
|
314
|
-
pry-rails
|
315
|
-
puma
|
316
331
|
rails-observers!
|
317
332
|
rspec-rails
|
318
|
-
simplecov
|
319
333
|
trusty-cms!
|
320
334
|
trustygems (~> 0.2.0)
|
321
335
|
|
data/README.md
CHANGED
@@ -23,7 +23,11 @@ TrustyCMS features:
|
|
23
23
|
* Support for Markdown and Textile as well as traditional HTML (it's easy to
|
24
24
|
create other filters)
|
25
25
|
* An advanced plugin system
|
26
|
+
* Asset management
|
27
|
+
* Serve multiple sites (domains) from a single instance
|
26
28
|
* Social sharing buttons
|
29
|
+
* Reusable bits of content (Snippets)
|
30
|
+
* Allows Rails controllers/actions to use Trusty CMS layouts as their "layout"
|
27
31
|
* Operates in two modes: dev and production depending on the URL
|
28
32
|
* A caching system which expires pages every 5 minutes
|
29
33
|
* Built using Ruby on Rails (version 5)
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|