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

github.com/JohnAlbin/normalize-scss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnAlbin <virtually.johnalbin@gmail.com>2015-11-17 19:02:32 +0300
committerJohnAlbin <virtually.johnalbin@gmail.com>2015-11-17 19:02:32 +0300
commitf32a7fdae314297ee053d6588d7ea913aeb7fb4b (patch)
tree9991b5a14f5263a611ebcb514687da3eb45c6bf0 /normalize-scss.gemspec
parent1c09e98a9866f2a5099d72c83e31b27804e831c0 (diff)
Add 3rd party support-for dependency.
Diffstat (limited to 'normalize-scss.gemspec')
-rw-r--r--normalize-scss.gemspec37
1 files changed, 18 insertions, 19 deletions
diff --git a/normalize-scss.gemspec b/normalize-scss.gemspec
index a4af4ed..3857601 100644
--- a/normalize-scss.gemspec
+++ b/normalize-scss.gemspec
@@ -1,33 +1,32 @@
# -*- encoding: utf-8 -*-
-Gem::Specification.new do |s|
- s.name = 'normalize-scss'
+Gem::Specification.new do |spec|
+ spec.name = 'normalize-scss'
- s.summary = %q{The Sass version of Normalize.css}
- s.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.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.}
- s.homepage = 'https://github.com/JohnAlbin/normalize-scss'
- s.rubyforge_project =
+ spec.homepage = 'https://github.com/JohnAlbin/normalize-scss'
+ spec.rubyforge_project =
- s.version = '3.0.3'
- s.date = '2015-10-17'
- s.licenses = ['GPL-2']
+ spec.version = '3.0.3'
+ spec.date = '2015-10-17'
+ spec.licenses = ['GPL-2']
- s.authors = ['John Albin Wilkins']
- s.email = 'virtually.johnalbin@gmail.com'
+ spec.authors = ['John Albin Wilkins']
+ spec.email = 'virtually.johnalbin@gmail.com'
- s.add_runtime_dependency('sass', '~> 3.3', '>= 3.3.0')
+ spec.add_runtime_dependency('sass', '~> 3.3')
+ spec.add_runtime_dependency('support-for', '~> 1.0')
- s.files = %w[
+ spec.files = `git ls-files`.split($/).select {|f| File.exist?(f) && f =~ %r{^(lib|sass)/} }
+ spec.files += %w(
+ bower.json
CHANGELOG.md
CONTRIBUTING.md
- lib/normalize-scss.rb
LICENSE.md
normalize-scss.gemspec
+ package.json
README.md
- sass/_normalize.scss
- sass/normalize/_font-values.scss
- sass/normalize/_support-for.scss
- sass/normalize/_variables.scss
- ]
+ )
end