Sha256: 898e4dfd9754980b378ec3e0f33b499726c3829ba15930191776f20ec7a34da3
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
module ThemesForRails module ViewHelpers extend ActiveSupport::Concern included do include ThemesForRails::CommonMethods end module InstanceMethods def current_theme_stylesheet_path(asset) base_theme_stylesheet_path(:theme => self.theme_name, :asset => asset, :extension => 'css') end def current_theme_javascript_path(asset) base_theme_javascript_path(:theme => self.theme_name, :asset => asset, :extension => 'js') end def current_theme_image_path(asset) image, extension = asset.split(".") self.base_theme_image_path(:theme => self.theme_name, :asset => image, :extension => extension) end alias_method :theme_image_path, :current_theme_image_path alias_method :theme_javascript_path, :current_theme_javascript_path alias_method :theme_stylesheet_path, :current_theme_stylesheet_path def theme_image_tag(source) image_tag(theme_image_path(source)) end def theme_javascript_include_tag(*files) files.collect! {|file| theme_javascript_path(file) } javascript_include_tag *files end def theme_stylesheet_link_tag(*files) files.collect! {|file| theme_stylesheet_path(file) } stylesheet_link_tag *files end end end end ActiveSupport.on_load(:action_view) { include ThemesForRails::ViewHelpers }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
themes_for_rails-0.2.2 | lib/themes_for_rails/view_helpers.rb |
themes_for_rails-0.2.1 | lib/themes_for_rails/view_helpers.rb |