Skip to content
This repository has been archived by the owner on Nov 3, 2020. It is now read-only.

Commit

Permalink
remove redundant ruby funcs. modify docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ezekg committed Oct 7, 2014
1 parent cf36d3a commit 4288dcd
Show file tree
Hide file tree
Showing 8 changed files with 123 additions and 51 deletions.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -7,4 +7,3 @@ Gemfile.lock

# Folders
.sass-cache
docs
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# Change Log

### 2.0.6 10/7/14
* Remove redundant Ruby functions.
* Update docs to include examples that follow SassDoc standards.

### 2.0.5 10/4/14
* Update docs

### 2.0.4 10/3/14
* Refactored Ruby `lib` for easier upkeep.
* Removed `@content` from doc blocks for now.
Expand Down
4 changes: 1 addition & 3 deletions bower.json
@@ -1,6 +1,6 @@
{
"name": "flint",
"version": "2.0.5",
"version": "2.0.6",
"main": "stylesheets/_flint.scss",
"description": "Flint is a highly advanced Sass grid framework designed for rapid responsive development.",
"authors": ["Ezekiel Gabrielse <ezekg@yahoo.com>"],
Expand All @@ -14,8 +14,6 @@
"*.json",
"*.gemspec",
"*.gem",
"lib",
"tests"
],
"devDependencies": {
}
Expand Down
1 change: 0 additions & 1 deletion flint.gemspec
Expand Up @@ -4,7 +4,6 @@ Gem::Specification.new do |spec|

# Info
spec.version = Flint::VERSION
spec.date = Flint::DATE

# Details
spec.name = "flint-gs"
Expand Down
4 changes: 0 additions & 4 deletions lib/flint/functions.rb
Expand Up @@ -4,10 +4,6 @@ def self.declare(*args)
Sass::Script::Functions.declare(*args)
end

def self.map(hash)
Sass::Script::Value::Map.new(hash)
end

###
# Use ruby functions
#
Expand Down
3 changes: 1 addition & 2 deletions lib/flint/version.rb
@@ -1,4 +1,3 @@
module Flint
VERSION = "2.0.5"
DATE = "2014-10-03"
VERSION = "2.0.6"
end
2 changes: 2 additions & 0 deletions stylesheets/flint/mixins/lib/_clearfix.scss
Expand Up @@ -6,6 +6,8 @@
* @link http://nicolasgallagher.com/micro-clearfix-hack/
*
* @requires {Mixin} clearfix - local mixin if available
*
* @group Internal Mixins
*/
@mixin flint-clearfix {
@if mixin-exists("clearfix") {
Expand Down

0 comments on commit 4288dcd

Please sign in to comment.