edifice 0.10.2 → 0.10.3
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.
|
@@ -119,7 +119,7 @@ jQuery.noConflict();
|
|
|
119
119
|
|
|
120
120
|
$('body').attr('class', function(i, classes) {
|
|
121
121
|
// remove any other classes beginning with c_, v_ or l_
|
|
122
|
-
classes = classes.replace(/[cvl]_
|
|
122
|
+
classes = classes.replace(/[cvl]_\w*/g, '')
|
|
123
123
|
return classes + ' c_' + ucc(page_details.view_path) +
|
|
124
124
|
' v_' + ucc(page_details.view_name) + ' l_' + ucc(page_details.layout);
|
|
125
125
|
});
|
data/lib/edifice/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: edifice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 49
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 10
|
|
9
|
-
-
|
|
10
|
-
version: 0.10.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.10.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Tom Coleman
|
|
@@ -17,7 +17,7 @@ autorequire:
|
|
|
17
17
|
bindir: bin
|
|
18
18
|
cert_chain: []
|
|
19
19
|
|
|
20
|
-
date: 2011-
|
|
20
|
+
date: 2011-12-02 00:00:00 Z
|
|
21
21
|
dependencies: []
|
|
22
22
|
|
|
23
23
|
description: The idea here is to communicate which view is rendering to the javascript so that we can call the correct javascript files in an automagical way.
|