File: compass-blueprint.gemspec

package info (click to toggle)
compass-blueprint-plugin 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 460 kB
  • ctags: 9
  • sloc: ruby: 99; makefile: 46; perl: 43
file content (18 lines) | stat: -rw-r--r-- 794 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/compass-blueprint/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Scott Davis"]
  gem.email         = ["jetviper21@gmail.com"]
  gem.description   = %q{Compass extension for blueprint css framework}
  gem.summary       = %q{Blueprint for compass}
  gem.homepage      = ""

  gem.executables   = `find * -path 'bin/*' -type f`.split("\n").map{ |f| File.basename(f) }
  gem.files         = `find * -not -path 'debian/*' -type f`.split("\n")
  gem.test_files    = `find * -regextype posix-extended -regex '(test|spec|features)/.*' -type f`.split("\n")
  gem.name          = "compass-blueprint"
  gem.require_paths = ["lib"]
  gem.version       = Compass::Blueprint::VERSION
  gem.add_dependency 'compass'
end