trusty-cms 2.0.24 → 2.0.25
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/Gemfile.lock +3 -3
- data/app/helpers/application_helper.rb +1 -1
- data/coverage/index.html +383 -803
- data/lib/login_system.rb +1 -1
- data/lib/trusty_cms.rb +1 -1
- data/spec/dummy/log/test.log +5202 -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
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5d9a1c99bc96f93856e77cb45bd3ff5e08d21496
|
|
4
|
+
data.tar.gz: 48fe998cd6a089ca2a574f52e08fd7d1619f45b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d1867b00315c1579eb41707dd20eab87def71ad45482f609482befc96a2f390bea7921fdc557863570bee2e149afe2bf0a1da23455ae12db6fe8e5cba27f9dd
|
|
7
|
+
data.tar.gz: 442d1dc54be0e08a6a0772a83d45cf4a8b2bf28f8158de70ee9b88b5573ccd0015552b53c08cbf79301fe0541d28ac61796eb6c79d88127d8b6ef78f050bd482
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
trusty-cms (2.0.
|
|
4
|
+
trusty-cms (2.0.25)
|
|
5
5
|
RedCloth (~> 4.3.2)
|
|
6
6
|
acts_as_tree (~> 2.1)
|
|
7
7
|
bundler (~> 1.7)
|
|
@@ -157,7 +157,7 @@ GEM
|
|
|
157
157
|
mini_portile2 (2.1.0)
|
|
158
158
|
minitest (5.9.1)
|
|
159
159
|
multi_json (1.12.1)
|
|
160
|
-
mysql2 (0.4.
|
|
160
|
+
mysql2 (0.4.5)
|
|
161
161
|
nokogiri (1.6.8.1)
|
|
162
162
|
mini_portile2 (~> 2.1.0)
|
|
163
163
|
orm_adapter (0.5.0)
|
|
@@ -210,7 +210,7 @@ GEM
|
|
|
210
210
|
rake (>= 0.8.7)
|
|
211
211
|
thor (>= 0.18.1, < 2.0)
|
|
212
212
|
rake (10.5.0)
|
|
213
|
-
rb-fsevent (0.9.
|
|
213
|
+
rb-fsevent (0.9.8)
|
|
214
214
|
rb-inotify (0.9.7)
|
|
215
215
|
ffi (>= 0.5.0)
|
|
216
216
|
rdoc (3.12.2)
|
|
@@ -157,7 +157,7 @@ module ApplicationHelper
|
|
|
157
157
|
|
|
158
158
|
# Default image url to be used when no gravatar is found
|
|
159
159
|
# or when an image exceeds the rating parameter.
|
|
160
|
-
local_avatar_url = "/assets/admin/avatar_#{([options[:size].to_i] * 2).join('x')}.png"
|
|
160
|
+
local_avatar_url = "/production/assets/admin/avatar_#{([options[:size].to_i] * 2).join('x')}.png"
|
|
161
161
|
default_avatar_url = "#{request.protocol}#{request.host_with_port}#{ActionController::Base.relative_url_root}#{local_avatar_url}"
|
|
162
162
|
options[:default] ||= default_avatar_url
|
|
163
163
|
|