rails-themes 1.0.0 → 1.1.0
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.
- data/lib/rails-themes.rb +19 -8
- metadata +2 -2
data/lib/rails-themes.rb
CHANGED
@@ -26,19 +26,30 @@ ActionController::Base.class_eval do
|
|
26
26
|
|
27
27
|
def add_theme_path
|
28
28
|
current_theme
|
29
|
-
|
30
|
-
self.prepend_view_path(new_path)
|
31
|
-
return true
|
29
|
+
self.prepend_view_path(theme_views_path)
|
32
30
|
end
|
33
31
|
|
34
32
|
def current_theme
|
35
33
|
theme = self.class.read_inheritable_attribute("theme")
|
36
34
|
|
37
|
-
@
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
35
|
+
@current_theme = case theme
|
36
|
+
when Proc then theme.call(self)
|
37
|
+
when String then theme
|
38
|
+
when Symbol then send(theme)
|
39
|
+
end
|
42
40
|
end
|
43
41
|
|
42
|
+
def theme_path
|
43
|
+
"#{Rails.public_path}/themes/#{current_theme}"
|
44
|
+
end
|
45
|
+
|
46
|
+
def theme_views_path
|
47
|
+
theme_path + "/views"
|
48
|
+
end
|
49
|
+
|
50
|
+
def theme_assets_path
|
51
|
+
"/themes/#{current_theme}/assets"
|
52
|
+
end
|
53
|
+
helper_method :theme_assets_path
|
54
|
+
|
44
55
|
end
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: rails-themes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 1.
|
5
|
+
version: 1.1.0
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Francesc Esplugas
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-06-
|
13
|
+
date: 2011-06-22 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|