File: cssminify.gemspec

package info (click to toggle)
ruby-cssminify 1.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 992 kB
  • sloc: ruby: 391; makefile: 6
file content (30 lines) | stat: -rw-r--r-- 1,018 bytes parent folder | download
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
30
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "cssminify/version"

Gem::Specification.new do |s|
  s.name        = "cssminify"
  s.version     = CSSminify::VERSION
  s.author      = "Matthias Siegel"
  s.email       = "matthias.siegel@gmail.com"
  s.homepage    = "https://github.com/matthiassiegel/cssminify"
  s.summary     = "CSS minification with YUI compressor, but as native Ruby port."
  s.description = <<-EOF
    The CSSminify gem provides CSS compression using YUI compressor. Instead of wrapping around the Java or Javascript version of YUI compressor it uses a native Ruby port of the CSS engine. Therefore this gem has no dependencies.
  EOF
  
  s.extra_rdoc_files = [
    "CHANGES.md",
    "LICENSE.md",
    "README.md"
  ]
  
  s.license = "MIT"
  s.rubyforge_project = "cssminify"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- spec/*`.split("\n")
  s.require_paths = ["lib"]

  s.add_development_dependency "rspec", "~> 2.7"
end