File: gemspec

package info (click to toggle)
ruby-cssmin 1.0.3-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 108 kB
  • sloc: ruby: 80; makefile: 10
file content (16 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Add gemspec file
 Generate gemspec file from Rakefile and add it to the bundle so as to provide
 rubygems integration.

---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Rakefile.rb
+++ b/Rakefile.rb
@@ -65,3 +65,7 @@
   t.test_files = FileList['test/*_test.rb']
   t.verbose = true
 end
+
+file "cssmin.gemspec" do
+  File.write("cssmin.gemspec", gemspec.to_ruby)
+end