Skip to content
forked from ritxi/themes

Create simple themes in rails applications

License

Notifications You must be signed in to change notification settings

pvaldesoiro/themes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Themes

Add simple themes to your rails applications

Usage

Gemfile:

gem "themes"

Run bundler and then create your first theme:

$ bundle install
$ rails generate themes:new my_theme [email protected]

It will generate a configuration file.

# encoding: utf-8

class Themes::Loader
  def self.configure(app)
    app.config.theme.name = 'my_theme'
    app.config.theme.email = '[email protected]'

    development do
      # Place development environment stuff here
    end

    production do
      # Place production environment stuff here
    end

    test do
      # Place test environment stuff here
    end
  end
end

Folders to place views files and assets will be created.

  • app/assets/javascripts/my_theme
  • app/assets/stylesheets/my_theme
  • app/views/themes/my_theme

## Main features:

  • allow app to load diferent configuration depending on theme
  • Load theme using APP_THEME environment variable
  • Load views based on theme directory

Wished features:

  • Use differnt theme depending on domain name

Code Status

  • Build Status
  • Coverage Status

About

Create simple themes in rails applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 85.9%
  • HTML 10.0%
  • JavaScript 2.1%
  • CSS 2.0%