Created
September 8, 2008 18:07
-
-
Save dyoder/9497 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Cassandra | |
module CSS | |
# stuff that is pure CSS generation goes here | |
end | |
module Hacks | |
# stuff that encapsulate browser hacks goes here | |
end | |
module Grid | |
# stuff that encapsulates grid layout features here | |
end | |
# etc. | |
class Engine | |
# we include CSS and browser hacks by default | |
include CSS, Hacks | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment