Title: [957] trunk/image_voodoo: Preparing for release
Revision
957
Author
nicksieger
Date
2008-03-27 16:21:29 -0400 (Thu, 27 Mar 2008)

Log Message

Preparing for release

Modified Paths


Added Paths

Diff

Modified: trunk/image_voodoo/History.txt (956 => 957)


--- trunk/image_voodoo/History.txt	2008-03-27 20:15:36 UTC (rev 956)
+++ trunk/image_voodoo/History.txt	2008-03-27 20:21:29 UTC (rev 957)
@@ -1,3 +1,3 @@
 == 0.1
 
-- Initial packaging of library into a gem
+- Birthday!

Modified: trunk/image_voodoo/Manifest.txt (956 => 957)


--- trunk/image_voodoo/Manifest.txt	2008-03-27 20:15:36 UTC (rev 956)
+++ trunk/image_voodoo/Manifest.txt	2008-03-27 20:21:29 UTC (rev 957)
@@ -1,3 +1,4 @@
+bin/image_voodoo
 Manifest.txt
 Rakefile
 README.txt
@@ -3,5 +4,13 @@
 LICENSE.txt
 lib/image_science.rb
+lib/image_voodoo
+lib/image_voodoo/version.rb
 lib/image_voodoo.rb
+samples/bench.rb
+samples/checkerboard.jpg
+samples/file_greyscale.rb
+samples/file_thumbnail.rb
+samples/file_view.rb
+samples/in-memory.rb
 test/pix.png
 test/test_image_science.rb

Modified: trunk/image_voodoo/README.txt (956 => 957)


--- trunk/image_voodoo/README.txt	2008-03-27 20:15:36 UTC (rev 956)
+++ trunk/image_voodoo/README.txt	2008-03-27 20:21:29 UTC (rev 957)
@@ -10,6 +10,7 @@
 == FEATURES/PROBLEMS:
 
 * Uses java.awt and javax.image APIs native to Java to perform image manipulation; no other dependencies needed.
+* Includes image_voodoo command-line utility for quick resizing of images, "image_voodoo --help" for usage.
 
 == SYNOPSIS:
 
@@ -31,28 +32,3 @@
 == INSTALL:
 
 * jruby -S gem install image_voodoo
-
-== LICENSE:
-
-(The MIT License)
-
-Copyright (c) 2008 Thomas Enebo, Nick Sieger
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-'Software'), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Modified: trunk/image_voodoo/Rakefile (956 => 957)


--- trunk/image_voodoo/Rakefile	2008-03-27 20:15:36 UTC (rev 956)
+++ trunk/image_voodoo/Rakefile	2008-03-27 20:21:29 UTC (rev 957)
@@ -1,4 +1,4 @@
-MANIFEST = FileList["Manifest.txt", "Rakefile", "README.txt", "LICENSE.txt", "lib/**/*", "test/**/*"]
+MANIFEST = FileList["bin/*", "Manifest.txt", "Rakefile", "README.txt", "LICENSE.txt", "lib/**/*", "samples/*","test/**/*"]
 
 file "Manifest.txt" => :manifest
 task :manifest do
@@ -7,16 +7,16 @@
 Rake::Task['manifest'].invoke # Always regen manifest, so Hoe has up-to-date list of files
 
 $LOAD_PATH << 'lib'
-require 'image_voodoo'
+require 'image_voodoo/version'
 begin
   require 'hoe'
   Hoe.new("image_voodoo", ImageVoodoo::VERSION) do |p|
     p.rubyforge_name = "jruby-extras"
-    p.url = ""
+    p.url = ""
     p.author = "Thomas Enebo, Charles Nutter and JRuby contributors"
     p.email = "[EMAIL PROTECTED], [EMAIL PROTECTED]"
-    p.summary = "Image manipulation with ImageScience compatible API"
-    p.changes = "Updated to ImageVoodoo version #{ImageVoodoo::VERSION}."
+    p.summary = "Image manipulation in JRuby with ImageScience compatible API"
+    p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
     p.description = "Install this gem and require 'image_voodoo' to load the library."
   end.spec.dependencies.delete_if { |dep| dep.name == "hoe" }
 rescue LoadError

Added: trunk/image_voodoo/lib/image_voodoo/version.rb (0 => 957)


--- trunk/image_voodoo/lib/image_voodoo/version.rb	                        (rev 0)
+++ trunk/image_voodoo/lib/image_voodoo/version.rb	2008-03-27 20:21:29 UTC (rev 957)
@@ -0,0 +1,3 @@
+class ImageVoodoo
+  VERSION = "0.1"
+end
\ No newline at end of file
_______________________________________________
Jruby-extras-devel mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/jruby-extras-devel

Reply via email to