Welcome to mirror list, hosted at ThFree Co, Russian Federation.

normalize-scss.gemspec - github.com/JohnAlbin/normalize-scss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae0814cb74a5dea18e46400fc94d404264924577 (plain)
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
# -*- 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     = '7.0.1'
  spec.date        = '2018-01-29'
  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       = `git ls-files`.split($/).select {|f| File.exist?(f) && f =~ %r{^(lib|sass)/} }
  spec.files       += %w(
    CONTRIBUTING.md
    LICENSE.md
    normalize-scss.gemspec
    package.json
    README.md
  )
end