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>2013-07-03 01:36:40 +0400
committerJohnAlbin <virtually.johnalbin@gmail.com>2013-07-03 01:36:40 +0400
commit02cce38eb057faa3464b8a28d22e964ef8689c0c (patch)
tree9fb3bdfaff65941ac8b0cdd6b5f911e91fb12525
parenta5b04cab662e9a86fbb76b786d7ce56203e1983b (diff)
Add files for Compass extension.2.1.2
-rw-r--r--bower.json2
-rw-r--r--lib/normalize-scss.rb12
-rw-r--r--normalize-scss.gemspec32
3 files changed, 46 insertions, 0 deletions
diff --git a/bower.json b/bower.json
index 2719d8d..891d3b9 100644
--- a/bower.json
+++ b/bower.json
@@ -9,6 +9,8 @@
"LICENSE.md",
"README.md",
"component.json",
+ "normalize-scss.gemspec",
+ "lib/normalize-scss.rb",
"test.html"
],
"licenses": [{
diff --git a/lib/normalize-scss.rb b/lib/normalize-scss.rb
new file mode 100644
index 0000000..446f71d
--- /dev/null
+++ b/lib/normalize-scss.rb
@@ -0,0 +1,12 @@
+require 'compass'
+
+project_path = File.join(File.dirname(__FILE__), '..')
+stylesheets_path = File.join(project_path)
+templates_path = File.join(project_path, 'templates')
+
+Compass::Frameworks.register(
+ 'normalize-scss',
+ :path => project_path,
+ :stylesheets_directory => stylesheets_path,
+ :templates_directory => templates_path
+)
diff --git a/normalize-scss.gemspec b/normalize-scss.gemspec
new file mode 100644
index 0000000..32edef3
--- /dev/null
+++ b/normalize-scss.gemspec
@@ -0,0 +1,32 @@
+# -*- encoding: utf-8 -*-
+
+Gem::Specification.new do |s|
+ s.name = 'normalize-scss'
+
+ s.summary = %q{A Sass/Compass version of Normalize.css}
+ s.description = %q{A Sass/Compass version of Normalize.css. This port tracks the parent project very closely.}
+
+ s.homepage = 'https://github.com/JohnAlbin/normalize.css-with-sass-or-compass'
+ s.rubyforge_project =
+
+ s.version = '2.1.2'
+ s.date = '2013-07-03'
+
+ s.authors = ['John Albin Wilkins']
+ s.email = 'virtually.johnalbin@gmail.com'
+
+ s.add_runtime_dependency('sass', ">= 3.2")
+
+ s.files = %w[
+ _normalize.scss
+ bower.json
+ CHANGELOG.md
+ component.json
+ CONTRIBUTING.md
+ lib/normalize-scss.rb
+ LICENSE.md
+ normalize-scss.gemspec
+ README.md
+ test.html
+ ]
+end