Skip to content

Commit

Permalink
Let's give a go at a gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
kneath committed Dec 2, 2011
1 parent f8537fb commit 0af3e38
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions kss.gemspec
@@ -0,0 +1,27 @@
require File.dirname(__FILE__) + '/lib/kss/version'

Gem::Specification.new do |s|
s.name = "kss"
s.version = Kss::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "A library for parsing KSS documented stylesheets and generating styleguides"
s.homepage = "http://github.com/kneath/kss"
s.email = "kneath@gmail.com"
s.authors = [ "Kyle Neath" ]
s.has_rdoc = false

s.files = %w( README.md Rakefile LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("test/**/*")

s.add_dependency "sass", "~> 3.1.11"

s.description = <<desc
Inspired by TomDoc, KSS attempts to provide a methodology for writing
maintainable, documented CSS within a team. Specifically, KSS is a CSS
structure, documentation specification, and styleguide format.
This is a ruby library for parsing KSS documented CSS and generating
styleguides.
desc
end

0 comments on commit 0af3e38

Please sign in to comment.