trusty-cms 5.5 → 5.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '019ee42dfa05a82526b8a1e2a38f5b7f229caeab0ce98148559e060c1debc5ce'
4
- data.tar.gz: 94a7341db24b3e806bdde66f09ea64209e054cab394f52f38483c98ed3152c35
3
+ metadata.gz: d1fe00a8e1fbde680ce99052e154774972e5bedaa0770e2b2aa12fb19771f642
4
+ data.tar.gz: 70ba4a618e0a4c576879c67aecebbda1d00f4a21c07138709e2320a6f7d1c361
5
5
  SHA512:
6
- metadata.gz: 79897bd4cafd496a4e6189f3047505cee2f9520984acc5455749f9f71940697839b5b889424b99e7a8f8d52d20e0b4f9fe8569293d815da3d015d18a21a1b094
7
- data.tar.gz: a48741e60e8c9bc6f540fb0cb6118fc43a26932332d833ca04c2dd32b87242dee78e1055d6c82db0c30fafab084eac9448ee3732e28c5be836c44aead550c03d
6
+ metadata.gz: aed01177b5e39f78c398e24c8105d785325df410d8e272788097705cbcd02599d9a7246c14df3010d94ad1ab2ef293d83e7c292349ed19cd72e02970c7333bc9
7
+ data.tar.gz: c4fa21d06a553b7eaf9dd8a4d20798466986fa0b9d41ee698f89d8b37c390645df33a5a87500487be3b29ffa3a0402cba774a12cafda0203eebacdb4e81f3b0e
@@ -155,11 +155,11 @@ div.popup {
155
155
  width: 100%;
156
156
 
157
157
  th {
158
+ border-bottom: 1px dotted silver;
158
159
  color: green;
159
160
  font-size: 120%;
160
- padding: 5px;
161
- padding-left: 0;
162
- padding-right: 0;
161
+ padding: 8px 5px;
162
+ text-align: left;
163
163
  }
164
164
 
165
165
  td {
@@ -169,12 +169,12 @@ div.popup {
169
169
  text-align: left;
170
170
  }
171
171
 
172
- h1 {
172
+ h1, h2, h3, h4 {
173
173
  color: black;
174
174
  margin: 0;
175
175
  margin-bottom: 0.5em;
176
176
  }
177
-
177
+
178
178
  acronym {
179
179
  border-bottom: 1px dotted silver;
180
180
  }
@@ -233,21 +233,6 @@ div.popup {
233
233
  }
234
234
  }
235
235
 
236
- div.popup .reference table {
237
- th {
238
- border-bottom: 1px dotted silver;
239
- padding-bottom: 8px;
240
- padding-top: 8px;
241
- text-align: left;
242
- }
243
-
244
- h2, h3, h4 {
245
- color: black;
246
- margin: 0;
247
- margin-bottom: 0.5em;
248
- }
249
- }
250
-
251
236
  div#popup_window {
252
237
  display: none;
253
238
  position: absolute;
@@ -1,8 +1,6 @@
1
1
  require 'trusty_cms/taggable'
2
- require 'local_time'
3
2
  module StandardTags
4
3
  include TrustyCms::Taggable
5
- include LocalTime
6
4
 
7
5
  require 'will_paginate/view_helpers'
8
6
  include WillPaginate::ViewHelpers
data/lib/trusty_cms.rb CHANGED
@@ -2,6 +2,6 @@ TRUSTY_CMS_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..')) unle
2
2
 
3
3
  unless defined? TrustyCms::VERSION
4
4
  module TrustyCms
5
- VERSION = '5.5'.freeze
5
+ VERSION = '5.5.1'.freeze
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trusty-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: '5.5'
4
+ version: 5.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - TrustyCms CMS dev team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-03 00:00:00.000000000 Z
11
+ date: 2022-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activestorage-validator
@@ -967,7 +967,6 @@ files:
967
967
  - lib/generators/trusty_cms/templates/routes.rb.erb
968
968
  - lib/generators/trusty_cms/trusty_cms_generator.rb
969
969
  - lib/inheritable_class_attributes.rb
970
- - lib/local_time.rb
971
970
  - lib/login_system.rb
972
971
  - lib/method_observer.rb
973
972
  - lib/ostruct.rb
data/lib/local_time.rb DELETED
@@ -1,6 +0,0 @@
1
- module LocalTime
2
- def adjust_time(time)
3
- ::ActiveSupport::Deprecation.warn("`adjust_time' is deprecated. All time output is now auto-adjusted to TrustyCms::Config['local.timezone'] or the default ActiveRecord time zone.", caller)
4
- time
5
- end
6
- end