forked from thoughtbot/neat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(feelsbadman) but the dependency on Bourbon was technically minimal. By removing the dependency on Bourbon we are able to gain more users and can potentially grow the community. resolves thoughtbot#346
- Loading branch information
Curt Howard
committed
Jun 16, 2016
1 parent
4bef318
commit 4415490
Showing
16 changed files
with
62 additions
and
75 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
@charset "UTF-8"; | ||
|
||
/// Provides an easy way to include a clearfix for containing floats. | ||
/// | ||
/// @link http://goo.gl/yP5hiZ | ||
/// | ||
/// @example scss | ||
/// .element { | ||
/// @include clearfix; | ||
/// } | ||
/// | ||
/// @example css | ||
/// .element::after { | ||
/// clear: both; | ||
/// content: ""; | ||
/// display: block; | ||
/// } | ||
@mixin clearfix { | ||
&::after { | ||
clear: both; | ||
content: ""; | ||
display: block; | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
require "sass" | ||
require "bourbon" | ||
require "neat/generator" | ||
|
||
module Neat | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,11 +9,11 @@ Gem::Specification.new do |s| | |
s.authors = ['Joel Oliveira', 'Kyle Fiedler', 'Reda Lemeden'] | ||
s.email = '[email protected]' | ||
s.homepage = 'http://neat.bourbon.io' | ||
s.summary = 'A lightweight, semantic grid framework built with Bourbon' | ||
s.summary = 'A lightweight, semantic grid framework' | ||
s.license = 'MIT' | ||
s.description = <<-DESC | ||
Neat is a fluid grid framework built with Bourbon with the aim of being easy | ||
enough to use out of the box and flexible enough to customize down the road. | ||
Neat is a fluid grid framework built with the aim of being easy enough to use | ||
out of the box and flexible enough to customize down the road. | ||
DESC | ||
|
||
s.rubyforge_project = 'neat' | ||
|
@@ -23,7 +23,6 @@ enough to use out of the box and flexible enough to customize down the road. | |
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | ||
s.require_paths = ['lib'] | ||
|
||
s.add_dependency('bourbon', '>= 4.0') | ||
s.add_dependency('sass', '>= 3.3') | ||
s.add_dependency("thor", "~> 0.19") | ||
|
||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "Neat", | ||
"description": "A lightweight, semantic grid framework built with Bourbon", | ||
"tags": ["bourbon", "columns", "grid", "layout", "media", "media-queries", "neat", "queries", "sass", "scss", "semantic"] | ||
"description": "A lightweight, semantic grid framework", | ||
"tags": ["columns", "grid", "layout", "media", "media-queries", "neat", "queries", "sass", "scss", "semantic"] | ||
} |
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
@import "bourbon/bourbon"; | ||
@import "../app/assets/stylesheets/neat"; | ||
$disable-warnings: true !global; |