Sha256: 521c5b1d7cc9185bdddf57b273590a944789ba52259e99c735f34277392c7a20
Contents?: true
Size: 1.05 KB
Versions: 2
Compression:
Stored size: 1.05 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/jekyll-press/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["sterebooster"] gem.email = ["stereobooster@gmail.com"] gem.description = %q{Minifier plugin for jekyll. Minifies all html, js, css files. Simple just drop it in solution. No Java required} gem.summary = %q{Minifier plugin for jekyll. This plugin compress html with the help of html_press, compress JavaScript files with the help of uglifier, compress css files with the help of css_press} gem.homepage = "http://github.com/stereobooster/jekyl-press" gem.files = `git ls-files`.split($\) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.name = "jekyll-press" gem.require_paths = ["lib"] gem.version = Jekyll::Press::VERSION gem.add_dependency 'jekyll' gem.add_dependency "html_press" gem.add_dependency "css_press" gem.add_dependency "uglifier" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jekyll-press-0.1.0 | jekyll-press.gemspec |
jekyll-press-0.0.1 | jekyll-press.gemspec |