Description: Add gemspec file
 Generate gemspec file from Rakefile and add it to the bundle so as to provide
 rubygems integration.
Origin: vendor
Forwarded: not-needed
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Rakefile.rb
+++ b/Rakefile.rb
@@ -43,7 +43,6 @@ gemspec = Gem::Specification.new do |s|
 
   s.files        = FileList['{lib}/**/*', 'HISTORY.md', 'LICENSE'].to_a
   s.require_path = 'lib'
-  s.has_rdoc     = true
 
   s.required_ruby_version = '>= 1.8.6'
 end
@@ -65,3 +64,7 @@ Rake::TestTask.new do |t|
   t.test_files = FileList['test/*_test.rb']
   t.verbose = true
 end
+
+file "ruby-cssmin.gemspec" do
+  File.write("cssmin.gemspec", gemspec.to_ruby)
+end
--- /dev/null
+++ b/ruby-cssmin.gemspec
@@ -0,0 +1,23 @@
+# coding: utf-8
+
+Gem::Specification.new do |s|
+  s.name     = 'cssmin'
+  s.version  = '1.0.3'
+  s.author   = 'Ryan Grove'
+  s.email    = 'ryan@wonko.com'
+  s.homepage = 'https://github.com/rgrove/cssmin/'
+  s.platform = Gem::Platform::RUBY
+  s.summary  = 'Ruby library for minifying CSS.'
+  s.description  = 'Ruby library for minifying CSS. Inspired by cssmin.js and YUI Compressor.'
+  s.license = 'FreeBSD'
+
+  s.files        = Dir.glob("**/*").select{ |f| /^debian/ !~ f}
+  s.test_files   = s.files.grep(%r{^(test|spec|features)/})
+  s.require_path = 'lib'
+
+  s.required_ruby_version = '>= 1.8.6'
+
+  s.add_development_dependency "rake"
+  s.add_development_dependency "rdoc"
+  s.add_development_dependency "minitest"
+end
