Sha256: 9435a7d018fb51890d7819d4f81da7b11af6ccdbf0dd3110b1346416164a0453

Contents?: true

Size: 1.25 KB

Versions: 9

Compression:

Stored size: 1.25 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "kentucky/version"

Gem::Specification.new do |s|
  s.name        = "kentucky"
  s.version     = Kentucky::VERSION
  s.license     = "MIT"
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Aaron Clemmer", "Greg Bruening", "Chris Brinson"]
  s.email       = ["greg@lookthink.com"]
  s.homepage    = "https://github.com/geebru/Kentucky"
  s.summary     = "SCSS-based grid system and mixin library"
  s.description = <<-DESC
Kentucky is LookThink's contribution to the CSS framework world with the unique difference of being entirely written in SCSS. This means no class restrictions muddling up your HTML. Kentucky is a collection of mixins, extends, and functions that you can use with your own HTML/CSS semantics to create responsive-ready websites.
  DESC

  #s.rubyforge_project = "bourbon"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_dependency('sass', '>= 3.2.0')
  s.add_dependency('thor')

  s.add_development_dependency('aruba', '= 0.4.11')
  s.add_development_dependency('rake')
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
kentucky-1.5.1 kentucky.gemspec
kentucky-1.5.0 kentucky.gemspec
kentucky-1.4.0 kentucky.gemspec
kentucky-1.2.1 kentucky.gemspec
kentucky-1.2.0 kentucky.gemspec
kentucky-1.1.0 kentucky.gemspec
kentucky-1.0.5 kentucky.gemspec
kentucky-1.0.4 kentucky.gemspec
kentucky-1.0.3 kentucky.gemspec