search for: mailfactory

Displaying 3 results from an estimated 3 matches for "mailfactory".

2007 Feb 05
0
superclass mismatch for class OrderedOptions (TypeError)
...ary. gem_plugin (0.2.2) A plugin system based only on rubygems that uses dependencies only highline (1.2.7) HighLine is a high-level command-line IO library. hoe (1.1.7) Hoe is a way to write Rakefiles much easier and cleaner. libxml-ruby (0.3.8.4) LibXML2 bindings for Ruby mailfactory (1.2.3) MailFactory is a pure-ruby MIME mail generator mime-types (1.15) Manages a MIME Content-Type that will return the Content-Type for a given filename. money (1.7.1) Class aiding in the handling of Money. mongrel (1.0.1) A small fast HTTP library and server that run...
2008 Jan 18
5
How do I pass form values from POST controller specs?
...explain to me the intended behaviour I can submit a patch. I did a fresh checkout and ran rake specs. Then I got a lot of errors. Here is the last one: 18) NoMethodError in ''a merb mailer should be able to use a different sendmail path'' undefined method `body='' for #<MailFactory:0x3347af8> /Users/aslakhellesoy/scm/merb/lib/merb/mailer.rb:82:in `send'' /Users/aslakhellesoy/scm/merb/lib/merb/mailer.rb:82:in `initialize'' /Users/aslakhellesoy/scm/merb/lib/merb/mailer.rb:82:in `each'' /Users/aslakhellesoy/scm/merb/lib/merb/mailer.rb:82:in `initialize...
2007 Sep 04
11
returning(...) ?
....rb =================================================================== --- lib/merb/mailer.rb (revision 508) +++ lib/merb/mailer.rb (working copy) @@ -52,9 +52,9 @@ def initialize(o={}) self.config = :sendmail if config.nil? o[:rawhtml] = o.delete(:html) - @mail = returning MailFactory.new() do |m| - o.each { |k,v| m.send "#{k}=", v } - end + m = MailFactory.new() + o.each { |k,v| m.send "#{k}=", v } + @mail = m end end