Skip to content

Commit

Permalink
pulled in refactor from chriseppstein and made a couple naming tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
zurbchris committed Dec 18, 2011
1 parent 95b35d0 commit 21b056b
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
6 changes: 3 additions & 3 deletions README.mkdn
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Foundation SASS
===============
ZURB Foundation for Compass
===========================

To create your first project, you'll need to have foundation-sass installed. Foundation SASS will also install the dependencies it needs to work properly.
To create your first project, you'll need to have the ZURB-foundation gem installed, this will include all the necessary dependencies.

To install from Ruby Gems
-------------------------
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require './lib/foundation-sass'
require './lib/ZURB-foundation'

namespace :gem do

Expand All @@ -9,7 +9,7 @@ namespace :gem do

desc "Build and release the gem"
task :release => :build do
system "gem push foundation-sass-#{FoundationSass::VERSION}.gem"
system "gem push ZURB-foundation-#{ZURBfoundation::VERSION}.gem"
end

end
12 changes: 6 additions & 6 deletions foundation-sass.gemspec → ZURB-foundation.gemspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
require './lib/foundation-sass'
require './lib/ZURB-foundation'

Gem::Specification.new do |s|
# Release Specific Information
s.version = FoundationSass::VERSION
s.date = FoundationSass::DATE
s.version = ZURBfoundation::VERSION
s.date = ZURBfoundation::DATE

# Gem Details
s.name = "foundation-sass"
s.name = "ZURB-foundation"
s.authors = ["ZURB"]
s.summary = %q{ZURB Foundation all Sassyfied}
s.description = %q{ZURB Foundation all Sassyfied for quickly jumping into foundation using SASS. }
s.summary = %q{ZURB Foundation ported over to work with the power of Compass.}
s.description = %q{ZURB Foundation ported over to work with the power of Compass.}
s.email = "[email protected]"
s.homepage = "http://foundation.zurb.com"

Expand Down
9 changes: 9 additions & 0 deletions lib/ZURB-foundation.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
require 'compass'
Compass::Frameworks.register("ZURB-foundation", :path => File.join(File.dirname(__FILE__), ".."))

module ZURBfoundation

VERSION = "2.1.1b"
DATE = "2011-12-17"

end
9 changes: 0 additions & 9 deletions lib/foundation-sass.rb

This file was deleted.

4 changes: 2 additions & 2 deletions templates/project/manifest.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description 'Zurb Foundation'
description 'ZURB-foundation Compass Gem'

# Sass Files
stylesheet 'sass/app.sass', :to => 'app.sass', :media => "screen, projector, print"
Expand Down Expand Up @@ -44,6 +44,6 @@

welcome_message %Q{
Congratulations! You have installed ZURB Foundation!
w00t! You're using ZURB Foundation, now go forth and rock 'n roll!
}
2 changes: 1 addition & 1 deletion templates/project/sass/app.sass
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import zurb/foundation
@import ZURB/foundation

// --------------------------------------------------
// Table of Contents
Expand Down
2 changes: 1 addition & 1 deletion templates/project/sass/ie.sass
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import zurb/includes
@import ZURB/includes

/* This is for all IE specfific style less than IE9. We hate IE. */

Expand Down

0 comments on commit 21b056b

Please sign in to comment.