Sha256: fd60405685771e9856d759160a4aea6a7ce507c9194f6cca41d26feb0de56e47
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'sasslint/version' Gem::Specification.new do |spec| spec.name = "sasslint" spec.version = SassLint::VERSION spec.authors = ["Roman Stranghoener", "Falk Hoppe"] spec.email = ["stranghoener@googlemail.com"] spec.description = "A linter for Sass, based on the idea and concepts of csslint." spec.summary = "A linter for Sass, based on the idea and concepts of csslint." spec.homepage = "https://github.com/rstrangh/sasslint" spec.license = "MIT" spec.files = %w(LICENSE.txt README.md sasslint.gemspec) spec.files += Dir.glob("bin/**/*") spec.files += Dir.glob("lib/**/*.rb") spec.executables = %w{sasslint} spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "thor" spec.add_dependency "thor" spec.add_dependency "activesupport" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sasslint-0.0.1 | sasslint.gemspec |