-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslight_assets.gemspec
31 lines (25 loc) · 1.05 KB
/
slight_assets.gemspec
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
31
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'slight_assets'
require "step-up"
Gem::Specification.new do |s|
s.name = "slight_assets"
s.version = SlightAssets::VERSION
s.authors = ["Marcelo Manzan"]
s.email = ["[email protected]"]
s.homepage = "http://kawamanza.github.com/slight_assets"
s.summary = %q{All you need to make your rails application more fast.}
s.description = %q{Optimize the assets of your Rails application without change any line of code.}
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "slight_assets"
s.add_dependency "yui-compressor", ">= 0.9.6"
s.add_development_dependency "step-up", "0.6.0"
s.add_development_dependency "rspec"
s.add_development_dependency "mocha"
s.add_development_dependency "closure-compiler"
s.files = `git ls-files -- {generators,lib,templates}/*`.split("\n")
s.test_files = []
s.executables = %w[slight]
s.require_paths = ["lib"]
end