Re: [Rails] javascript flash messages gem?

2013-01-16 Thread Antonio Tapiador del Dujo
e On Tue, Jan 15, 2013 at 11:36 AM, Antonio Tapiador del Dujo mailto:atapia...@dit.upm.es>> wrote: Why? To lazy to write it Feature: RailsFlash.warn("some message"); // Insert div with bootstrap class and message El 15/01/13 13:05, Dheeraj Kumar escribió:

Re: [Rails] javascript flash messages gem?

2013-01-16 Thread Antonio Tapiador del Dujo
https://gist.github.com/3344628 -- Dheeraj Kumar On Tuesday 15 January 2013 at 10:06 PM, Antonio Tapiador del Dujo wrote: Why? To lazy to write it Feature: RailsFlash.warn("some message"); // Insert div with bootstrap class and message El 15/01/13 13:05, Dheeraj Kumar escribió: Wh

Re: [Rails] javascript flash messages gem?

2013-01-15 Thread Antonio Tapiador del Dujo
ry 2013 at 4:45 PM, Antonio Tapiador del Dujo wrote: 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:

[Rails] javascript flash messages gem?

2013-01-15 Thread Antonio Tapiador del Dujo
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 rubyonra

Re: [Rails] Build Social Network with Ruby on Rails

2013-01-15 Thread Antonio Tapiador del Dujo
A social network framework in Rails quite active: http://social-stream.dit.upm.es/ El 10/01/13 08:31, Jeffrey Jones escribió: I have never used this but remember running across it a while ago and it still appears to be active http://communityengine.org/ Of course you will still need to do w

[Rails] Adding modules in engines

2011-09-15 Thread Antonio Tapiador del Dujo
Hi! This is an advanced question related to Rails engines and classes loading in development mode in Rails 3.1 Lets say there is a gem-rails-engine "foo" that provides Bar model, and I would like to develop "foo-zoo" gem that adds module Zoo to Bar. So the "include Zoo" code should be evaluated

[Rails] [ANN] SocialStream: a core for building social network sites

2011-09-07 Thread Antonio Tapiador del Dujo
We have just realeased a new version of Social Stream, a Rails 3.1 compatible gem that provides web developers with a powerful engine for building social network sites. SocialStream currently supports users and groups, as well as posts, attachments, pictures, audios and videos with HTML5 suppor

Re: [Rails] Rails 3 api

2010-06-28 Thread Antonio Tapiador del Dujo
http://edgeapi.rubyonrails.org/ El Lunes, 28 de Junio de 2010 07:52:37 Victor S escribió: > I'm being googledumb and just can't be sure to find the > rails3.0.0.beta API's... anyone have a link? Also i read somewhere, I > think the RVM gerbil told me, that I can generate my own api docs? Any > qui

Re: [Rails] Re: Philosophical question about MVC

2010-04-27 Thread Antonio Tapiador del Dujo
Very interesting solution. And pretty similar to Station, btw. Many thanks for the link Robert! El Lunes, 26 de Abril de 2010 20:15:32 Robert Walker escribió: > Antonio Tapiador del Dujo wrote: > > Hi folks, > > I am working on Station, a Rails Engine [1] that supports authoriz

[Rails] Philosophical question about MVC

2010-04-26 Thread Antonio Tapiador del Dujo
Hi folks, I am working on Station, a Rails Engine [1] that supports authorization among other things. Using Station, you can ask a model about authorization, for example: post.authorize?(permission, :to => current_user) My question rises when doing automatic Model - Controller mapping.