File: normalize-scss.gemspec

package info (click to toggle)
compass-normalize-plugin 6.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 784 kB
  • sloc: makefile: 33; ruby: 15
file content (31 lines) | stat: -rw-r--r-- 990 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- encoding: utf-8 -*-

Gem::Specification.new do |spec|
  spec.name        = 'normalize-scss'

  spec.summary     = %q{The Sass version of Normalize.css}
  spec.description = %q{This is the Sass version of Normalize.css, a collection of HTML element and attribute rulesets to normalize styles across all browsers. This port aims to use a light dusting of Sass to make Normalize even easier to integrate with your website.}

  spec.homepage    = 'https://github.com/JohnAlbin/normalize-scss'
  spec.rubyforge_project =

  spec.version     = '6.0.0'
  spec.date        = '2016-10-24'
  spec.licenses    = ['MIT', 'GPL-2.0']

  spec.authors     = ['John Albin Wilkins']
  spec.email       = 'virtually.johnalbin@gmail.com'

  spec.add_runtime_dependency('sass', '~> 3.3')

  spec.files       = `find lib sass -type f`.split("\n")
  spec.files       += %w(
    bower.json
    CHANGELOG.md
    CONTRIBUTING.md
    LICENSE.md
    normalize-scss.gemspec
    package.json
    README.md
  )
end