RMagick is looking for a maintainer030 (10/4/2009 10:30:01 PM) comp.lang.ruby "Believe me, ladies and gentlemen, there's nothing penultimate about this one." As I mentioned in my previous post, I've just uploaded RMagick 2.12.0 to RubyForge. This will be the my last release of RMagick... Tim
[ANN] RMagick 2.12.0030 (10/4/2009 9:09:09 PM) comp.lang.ruby I've just uploaded RMagick 2.12.0 to RubyForge. This release adds the function_channel, auto_level_channel, and auto_gamma_channel methods to the Image class, and the interline_spacing method and interline_sp... Tim
[ANN] MagickWand for Ruby 0.2.0038 (8/18/2009 9:29:06 PM) comp.lang.ruby I've just uploaded the second beta release of MagickWand for Ruby, my new binding to ImageMagick. MagickWand for Ruby is a complete rethinking of RMagick. I call it "RMagick rebooted." MagickWand for Ruby ob... Tim
[ANN] RMagick 2.10.0 released with support for Ruby-managed memory123 (6/20/2009 10:59:05 AM) comp.lang.ruby I've just uploaded RMagick 2.10.0 to RubyForge. This release includes experimental support for using Ruby-managed memory for all RMagick allocations. This means that Image objects (and all other RMagick obje... Tim
[ANN] MagickWand for Ruby 0.1.0236 (6/2/2009 1:35:21 AM) comp.lang.ruby I've just uploaded the first beta release of MagickWand for Ruby, my new binding to ImageMagick. MagickWand for Ruby is a complete rethinking of RMagick. I call it "RMagick rebooted." MagickWand for Ruby objec... Tim
Create App Store and iPhone icon lookalikes with RMagick227 (3/7/2009 1:04:27 AM) comp.lang.ruby I've written a Ruby script that takes a 512x512 image and produces icons that look very similar to the icons used on the App Store and the iPhone. The script demonstrates how to use RMagick to add the "shine"... Tim
1.8.6 OCI binary extension question934 (1/17/2009 5:00:23 PM) comp.lang.ruby I'm trying to build a new release of RMagick that is compatible with the Ruby 1.8.6 One-Click Installer. In the past I have used MS Visual Studio 2005 Express Edition. However, new releases of ImageMagick fo... Tim
marshal_load, marshal_dump631 (12/13/2008 10:36:18 PM) comp.lang.ruby Currently RMagick uses the old _dump and _load methods to marshal/unmarshal images. I'd like to start using the new marshal_load and marshal_dump methods. What is the impact of switching? Can I just replace ... Tim
string.c question131 (12/13/2008 10:29:17 PM) comp.lang.ruby How does rb_str_cat differ from rb_str_buf_cat? I have a a String object, a C pointer to a char array, and the length of the array. The array is 10KB or even 100KB. I want to cat the char array to the String... Tim
[ANN] RMagick 2.7.1 released034 (11/2/2008 11:38:52 PM) comp.lang.ruby RMagick 2.7.1 adds a new exception class called Magick::FatalImageMagickException. RMagick raises this exception when ImageMagick reports a fatal (unrecoverable) error. I added support for a special "user" o... Tim
Error with an array of strings916 (8/28/2009 8:45:42 PM) comp.lang.ruby Hi, This is clearly a Ruby beginner question, so please be nice :) This program is supposed to take user input of numbers and average the numbers. I figured I'd create a loop, an array, and then average the nu... tn9000(3)
RMagick 2.11.0 install fails with ImageMagick 6.5.41114 (9/2/2009 8:14:59 PM) comp.lang.ruby Trying to install RMagick 2.11.0 was giving me the following error: Updating rmagick Building native extensions. This could take a while... ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError... xenogenesis(54)
Can You Store Individual Letters?331 (9/5/2009 5:36:21 AM) comp.lang.ruby I was wandering if it is possible to have user inputted words stored and each letter as a seperate variable. I know i could just have each letter inputted indvidually but thats time consuming on the users part.... scottandrechek(14)
End of file error when trying to Marshal.load636 (9/5/2009 11:20:06 AM) comp.lang.ruby Hi,- I am trying out the marshaling functionality of Ruby with this documentation as a guide: http://www.ruby-doc.org/core/classes/Marshal.html Code goes like this: ***************************** class Klas... vahagnh(14)
something.new( :attribute => value) thing631 (9/5/2009 11:29:55 AM) comp.lang.ruby Hello, I saw something very interesting in the code of FXRuby, and I would like to use this kind of code in my scripts : My_Window.new(app, "Button Test", :opts => DECOR_ALL, :x => 100, :y => 100) I'm only a... kadelfek(19)
Mixins #3424 (9/8/2009 4:40:03 AM) comp.lang.ruby I have the following code separated in 2 files. module UsefulFeatures def class_name self.class.to_s end end ------------------------------------- require UsefulFeatures class Person include Us... ron.green(39)
wxruby problem #2424 (9/19/2009 5:40:40 PM) comp.lang.ruby Hi.Line 2 produces an error:1 require "wx" 2 include Wx after starting I get this: uninitialized constant Wx (NameError) from wx.rb:1:in `require' from wx.rb:1 >Exit code: 1 Can you tell me why is this ha... fbogdanovi(15)
Can you make a clock?727 (9/30/2009 10:54:14 PM) comp.lang.ruby 'Ello. I was just wandering how you update the time in a ruby program (like a clock). For instance: COMP:WED Sep 30 18:51:30 COMP:WED Sep 30 18:51:31 #Replacing the above line I don't need the entire code for... scottandrechek(14)
Creating a pacifier in command line program633 (10/6/2009 8:21:05 PM) comp.lang.ruby I am trying to create a program that, at one part, replaces already displayed on the line with another. For example: Lets say the program is recursing directories. It should display: checking c:\Program Fil... jerry.piazza(8)
How to not display output of a system call.1038 (10/6/2009 8:29:40 PM) comp.lang.ruby Lets say I have a Windows command line program that runs the following: system("del *.txt") How do I NOT display the output from the del command? Thank you. -- Posted via http://www.ruby-forum.com/. ... jerry.piazza(8)