I tried to use the Mime::Types in Ruby for my file upload. I added require ''mime/types'' but it says "no such file to load". Is it a gem or what? Something I should install? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 22 Aug 2008, at 10:10, Pål Bergström wrote:> I tried to use the Mime::Types in Ruby for my file upload. I added > require ''mime/types'' but it says "no such file to load". Is it a gem > or > what? Something I should install?Yes, or if you use Rails 2.1, you can add this to the gem section of your environment.rb: config.gem "mime-types", :lib => "mime/types", :version => ''>= 1'' and then run rake gems:install Best regards Peter De Berdt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Peter De Berdt wrote:> On 22 Aug 2008, at 10:10, Pål Bergström wrote:> Yes, or if you use Rails 2.1, you can add this to the gem section of > your environment.rb: > > config.gem "mime-types", :lib => "mime/types", :version => ''>= 1'' > > and then run > > rake gems:install > > > > Best regards > > Peter De BerdtThanks. That explains it. :-) -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---