2 Star 0 Fork 0

mirrors_sass/ruby-sass

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sass.gemspec 2.21 KB
一键复制 编辑 原始数据 按行查看 历史
Natalie Weizenbaum 提交于 2019-04-03 17:47 . Mark as end-of-life
require 'rubygems'
# Note that Sass's gem-compilation process requires access to the filesystem.
# This means that it cannot be automatically run by e.g. GitHub's gem system.
# However, a build server automatically packages the master branch
# every time it's pushed to; this is made available as a prerelease gem.
SASS_GEMSPEC = Gem::Specification.new do |spec|
spec.rubyforge_project = 'sass'
spec.name = 'sass'
spec.summary = "A powerful but elegant CSS compiler that makes CSS fun again."
spec.version = File.read(File.dirname(__FILE__) + '/VERSION').strip
spec.authors = ['Natalie Weizenbaum', 'Chris Eppstein', 'Hampton Catlin']
spec.email = '[email protected]'
spec.description = <<-END
Ruby Sass is deprecated! See https://sass-lang.com/ruby-sass for details.
Sass makes CSS fun again. Sass is an extension of CSS, adding
nested rules, variables, mixins, selector inheritance, and more.
It's translated to well-formatted, standard CSS using the
command line tool or a web-framework plugin.
END
spec.required_ruby_version = '>= 2.0.0'
spec.add_runtime_dependency 'sass-listen', '~> 4.0.0'
spec.add_development_dependency 'yard', '~> 0.8.7.6'
spec.add_development_dependency 'redcarpet', '~> 3.3'
spec.add_development_dependency 'nokogiri', '~> 1.6.0'
spec.add_development_dependency 'minitest', '>= 5'
readmes = Dir['*'].reject{ |x| x =~ /(^|[^.a-z])[a-z]+/ || x == "TODO" }
spec.executables = ['sass', 'sass-convert', 'scss']
spec.files = Dir['rails/init.rb', '{lib,bin,extra}/**/*', 'init.rb', '.yardopts'] + readmes
spec.homepage = 'https://sass-lang.com/'
spec.license = "MIT"
if spec.respond_to?(:metadata)
spec.metadata['source_code_uri'] = 'https://github.com/sass/ruby-sass'
end
spec.post_install_message = <<END
Ruby Sass has reached end-of-life and should no longer be used.
* If you use Sass as a command-line tool, we recommend using Dart Sass, the new
primary implementation: https://sass-lang.com/install
* If you use Sass as a plug-in for a Ruby web framework, we recommend using the
sassc gem: https://github.com/sass/sassc-ruby#readme
* For more details, please refer to the Sass blog:
https://sass-lang.com/blog/posts/7828841
END
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_sass/ruby-sass.git
[email protected]:mirrors_sass/ruby-sass.git
mirrors_sass
ruby-sass
ruby-sass
stable

搜索帮助