search for: mmmultiwork

Displaying 5 results from an estimated 5 matches for "mmmultiwork".

Did you mean: mmmultiworks
2007 May 01
7
RSpec 0.9.1 released
The RSpec team is pleased to announce RSpec 0.9.1 (we skipped 0.9.0). RSpec is a framework that provides programmers with a Domain Specific Language to describe the behaviour of Ruby code with readable, executable examples that guide you in the design process and serve well as both documentation as tests. This release includes a complete overhaul of the API, which can be summarised as follows: *
2006 May 19
2
Doing and storing a Writeboard like diff in RoR
Hello all, Anyone have any suggestions on how I could do and display a diffed piece of text in a style similar to Writeboard (strikeouts etc.) Q1) Are there any ruby gems for diff? Q2) How would I represent the diffed text in styled HTML? If there are existing tools, any ideas on how I could write this? Thanks, Vaishal -------------- next part -------------- An HTML attachment was scrubbed...
2007 Dec 13
0
Errors building RMagick on Linux
...ag cd /usr/local/src wget http://image_magick.veidrodis.com/image_magick/ImageMagick.tar.gz tar xvzf ImageMagick.tar.gz cd ImageMagick-X.Y.Z ./configure --disable-static --with-modules --without-perl \ --without-magick-plus-plus --with-quantum-depth=8 make make install wget http://files.rubyforge.mmmultiworks.com/rmagick/RMagick-1.15.11.tar.gz tar zxvf RMagick-1.15.11.tar.gz cd RMagick-1.15.4 ./configure export LD_LIBRARY_PATH=/usr/local/lib echo $LD_LIBRARY_PATH make --------------------------------------- gcc -shared -L/usr/local/lib -L''/usr/local/lib'' -Wl,-R''/usr/local...
2007 Jun 12
8
rdebug spec ?
Can you run rdebug on specs? I get errors when I try: $ rdebug spec ./spec/models/select_option_spec.rb ./spec: Is a directory - ./spec (Errno::EISDIR) from /opt/local/lib/ruby/gems/1.8/gems/ruby-debug-0.9.3/bin/ rdebug:136:in `debug_load'' from /opt/local/lib/ruby/gems/1.8/gems/ruby-debug-0.9.3/bin/ rdebug:136 from /opt/local/bin/rdebug:16:in `load''
2006 Jun 15
2
AWS Client - There has to be a better way
I''m working on building a SOAP client with AWS, i.e: class PersonAPI < ActionWebService::API::Base api_method :find_all, :returns => [[Person]] end soap_client = ActionWebService::Client::Soap.new(PersonAPI, "http://...") persons = soap_client.find_all This works well but I think it breaks down quickly when you try to do real world work. Lets take a moderately