search for: atapiador

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

Did you mean: tapiador
2013 Jan 15
7
javascript flash messages gem?
Does anybody knows a gem for managing flash messages? I would want to add messages to the flash div in the client. Bootstrap support is a plus. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group,
2011 Apr 25
0
URIs including [ and ] are not compliant with RFC3986
According to RFC 3986, ''['' and '']'' are reserved characters. However, Rails 3.0.7 is not escaping them. This is fixed in master by this commit: https://github.com/rails/rails/commit/52b71c01fd3c8a87152f55129a8cb3234190734a Can this fix be included in 3.0.x ? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2011 May 10
0
Request format.all
Requesting /attachments/1.all does not work in Rails 3. It was changed here: https://github.com/rails/rails/commit/7e280c3bff8ac25f1c1938aeaeb1d0b4c0fbb726 The use case is a show action such as: def show @attachment = Attachment.find(params[:id]) respond_to do |format| format.html format.any { download } end end The pros of using this approach is take advantage of Cancan and