Sha256: 4a7877a09967a3aebd24de5b098af86ce355cc185dd1ab0b803975725ecfa20a
Contents?: true
Size: 1.07 KB
Versions: 11
Compression:
Stored size: 1.07 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "compressit/version" Gem::Specification.new do |s| s.name = "compressit" s.version = Compressit::VERSION s.platform = Gem::Platform::RUBY s.authors = ["sdomino"] s.email = ["sdomino@pagodabox.com"] s.homepage = "http://github.com/sdomino/compressit" s.summary = "Compressit is a simple gem that will compress all of your .css and .js." s.description = "Compressit uses the yuicompressor-2.4.6.jar java file created by Yahoo to compress all of your .css and .js files into single compressed files respectively. This not only reduces the size of your files, but also results in less http requests at load time resulting in an overall faster site." s.rubyforge_project = "compressit" s.add_development_dependency "rspec" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = [".", "lib"] end
Version data entries
11 entries across 11 versions & 1 rubygems