Re: [Rails] I need to hire someone to develop a custom encryptor for devise

2016-02-03 Thread Emmanuel Abia
I don't think you need a custom encryptor. Since the database is accessible you can process and migrate all users without changing passwords. I am interested On 3 Feb 2016 7:52 a.m., "Guayo Mena" wrote: > I have a Joomla 3.x website on production. I already have a lot of

Re: [Rails] Developing a social networking site; acts_as_votable (aka acts_as_likeable)

2016-02-03 Thread Colin Law
On 3 February 2016 at 08:35, fugee ohu wrote: > i'm trying to follow this tutorial > https://medium.com/rails-ember-beyond/how-to-build-a-social-network-using-rails-eb31da569233#.cdojrtwvg > but on line 1 of _form.html.erb for likes the author says <% if > current_user.liked?

[Rails] Developing a social networking site; acts_as_votable (aka acts_as_likeable)

2016-02-03 Thread fugee ohu
i'm trying to follow this tutorial https://medium.com/rails-ember-beyond/how-to-build-a-social-network-using-rails-eb31da569233#.cdojrtwvg but on line 1 of _form.html.erb for likes the author says <% if current_user.liked? likeable %> When i ran the app it raised the error undefined method

Re: [Rails] Re: Re: Calculate Percentage using jquery

2016-02-03 Thread Colin Law
On 3 February 2016 at 07:46, Naveed Alam wrote: > Checked with validator and it showed no error in this script. > > The alert is not working too. and showing no error, looks that the > script is not running at all. > > below is the complete code. [snipped the erb source

[Rails] acts_as_votable ( aka acts_as_likeable)

2016-02-03 Thread fugee ohu
I'm reading the docs for acts_as_votable (aka acts_as_likeable) and i don't understand what's the difference between a vote and a like? although the docs show how to assign, i couldn't find a test for if a model is liked by a user or if a user likes a model -- You received this message

Re: [Rails] Developing a social networking site; acts_as_votable (aka acts_as_likeable)

2016-02-03 Thread nanaya
Hi, On Thu, Feb 4, 2016, at 04:53, fugee ohu wrote: > > > > https://github.com/sudharti/socify/blob/master/app/views/shared/_actions.html.erb > > > > > > Yikes, what does this mean? <%= render 'likes/form', likeable: resource > %> > it means you need to read documentation:

[Rails] Re: Re: Re: Calculate Percentage using jquery

2016-02-03 Thread Naveed Alam
Colin Law wrote in post #1181132: > On 3 February 2016 at 07:46, Naveed Alam wrote: >> Checked with validator and it showed no error in this script. >> >> The alert is not working too. and showing no error, looks that the >> script is not running at all. >> >> below is the

Re: [Rails] Developing a social networking site; acts_as_votable (aka acts_as_likeable)

2016-02-03 Thread fugee ohu
from the acts_as_followable gem, i was hoping someone would look at the page and tell me their interpretation but I guess that's not what this group is for On Wednesday, February 3, 2016 at 5:05:25 AM UTC-5, Colin Law wrote: > > On 3 February 2016 at 08:35, fugee ohu >

Re: [Rails] Developing a social networking site; acts_as_votable (aka acts_as_likeable)

2016-02-03 Thread nanaya
Hi, On Wed, Feb 3, 2016, at 17:35, fugee ohu wrote: > i'm trying to follow this tutorial > https://medium.com/rails-ember-beyond/how-to-build-a-social-network-using-rails-eb31da569233#.cdojrtwvg > > but on line 1 of _form.html.erb for likes the author says <% if > current_user.liked?

Re: [Rails] Developing a social networking site; acts_as_votable (aka acts_as_likeable)

2016-02-03 Thread fugee ohu
On Wednesday, February 3, 2016 at 1:58:35 PM UTC-5, nanaya wrote: > > Hi, > > On Wed, Feb 3, 2016, at 17:35, fugee ohu wrote: > > i'm trying to follow this tutorial > > > https://medium.com/rails-ember-beyond/how-to-build-a-social-network-using-rails-eb31da569233#.cdojrtwvg > > > but on