Skip to content

Commit

Permalink
Revert "This needs to be put away"
Browse files Browse the repository at this point in the history
This reverts commit fdac81c.
  • Loading branch information
kingsidharth committed Nov 4, 2012
1 parent fdac81c commit 8aa061a
Show file tree
Hide file tree
Showing 47 changed files with 20,728 additions and 97 deletions.
Binary file removed .DS_Store
Binary file not shown.
20 changes: 20 additions & 0 deletions MIT-LICENSE.txt
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2011 ZURB, http://www.zurb.com/

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18 changes: 18 additions & 0 deletions Rakefile
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,18 @@
# Save as Rakefile, and run `rake watch`

def recompile(base, relative)
haml = File.join(base, relative)
html = File.join(base, relative.gsub(/\.haml$/, '.html'))
print ">>> Change detected to #{relative} >> "
system "haml", haml, html
puts "Compiled <<<"
end
desc "Watch HAML files for changes"
task :watch do
require 'fssm'
puts ">>> Watching for changes <<<"
FSSM.monitor(Dir.pwd, '**/*.haml') do
update &method(:recompile)
create &method(:recompile)
end
end
Binary file removed _layouts/.DS_Store
Binary file not shown.
79 changes: 0 additions & 79 deletions _layouts/default.html

This file was deleted.

26 changes: 26 additions & 0 deletions config.rb
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,26 @@
require 'zurb-foundation'
# Require any additional compass plugins here.


# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "css"
sass_dir = "sass"
images_dir = "images"
javascripts_dir = "js"

# You can select your preferred output style here (can be overridden via the command line):
# output_style = :expanded or :nested or :compact or :compressed

# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true

# To disable debugging comments that display the original location of your selectors. Uncomment:
# line_comments = false


# If you prefer the indented syntax, you might want to regenerate this
# project again passing --syntax sass, or you can uncomment this:
preferred_syntax = :sass
# and then run:
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
Loading

0 comments on commit 8aa061a

Please sign in to comment.