[Rails] Re: React.JS and what server to use ?

2015-07-20 Thread Andrey Nering
React can run on the server, but it is not mandatory. You can just use it in the browser if you want. Em sexta-feira, 17 de julho de 2015 22:44:00 UTC-3, Jedrin escreveu: I have used Ember.JS a good deal over the past year as well as a little Angular. I found Ember to have some cool

[Rails] IBM Lombardi BPM for java developers

2015-07-20 Thread Activmaxis Trainings
http://www.activmaxis.com/ibm-lombardi-bpm-online-training/ ActivMaxis: is an Online Training Provider in world wide. We are Offering Best Lombardi BPM Training in INDIA, USA, UK, SINGAPORE, and SAUDI. We are providing Lombardi BPM Online Training by our leading faculty having extensive experience

[Rails] Re: i'm getting this error with rails cannot load such file -- bcrypt

2015-07-20 Thread Elizabeth McGurty
This solution is very interesting to me. I was not aware that I could post a link to GitHub and get help. I think that it would be hugely useful to many folks here, if you could elaborate. Liz McGurty On Monday, July 20, 2015 at 3:35:49 PM UTC-4, Ruby-Forum.com User wrote: Hi Omar, Put

[Rails] Re: Deleting only first occurrence from many to many collection

2015-07-20 Thread Elizabeth McGurty
Don't know what your skill level is, but I would suggest checking out RailsCasts, #47 Two Many-to-Many: http://railscasts.com/episodes/47-two-many-to-many Your join table could be called CarOwners, as a point relevant to the RailsCast Check it out... The general idea is that it is maybe

Re: [Rails] Re: Good queue manager?

2015-07-20 Thread Paul Makepeace
https://github.com/ejschmitt/delayed_job_web On Mon, Jul 20, 2015 at 1:04 PM, Jeff Pickhardt pickha...@gmail.com wrote: Thanks. What I'm looking for is an admin dashboard to manage your queues, see how many jobs are in it, see what's failing, etc. Do you know of anything like that? -- Sent

[Rails] Re: i'm getting this error with rails cannot load such file -- bcrypt

2015-07-20 Thread Elizabeth McGurty
Omar: I just googled: error with rails cannot load such file -- bcrypt and lots of interesting stuff showed up. I take this matter for granted, but when one does not understand an error, try to find in it what seems to be the most basic and telling information, just as you did in your Subject

[Rails] Re: how to find what all associations have dependent: destroy associated with them from a concern

2015-07-20 Thread Taras Matsyk
Hi Aravind, I am not sure if I understood your question correctly but I will give a try. I think you want to delete all associated records with another type of the Model. class Body has_many: boobs, dependent: :destroy end In this instance destroy parameter is responsible for

Re: [Rails] Deleting only first occurrence from many to many collection

2015-07-20 Thread Colin Law
On 20 July 2015 at 00:53, Sadaf Noor em...@sadafnoor.com wrote: Hello, I am having a little bit problem in deleting duplicate entry of my many to many tables. In many to many fields delete method is deleting all the occurrence of collection. Say I have (demo example): class user

[Rails] Re: React.JS and what server to use ?

2015-07-20 Thread Taras Matsyk
Hi Jedrin, what is wrong with react-rails? You can put ReactJS in vendor folder and use it as you would typically use it in any other web app. PS. I have no idea what is flex and do not see any issue with MVC. -- Posted via http://www.ruby-forum.com/. -- You received this message because

[Rails] Re: React.JS and what server to use ?

2015-07-20 Thread Andrey Nering
He meant Flux http://facebook.github.io/flux/ (not Flex), an architecture for React. I've used it and found it much better than MVC, but server rendering is not required. Em segunda-feira, 20 de julho de 2015 16:25:45 UTC-3, Ruby-Forum.com User escreveu: Hi Jedrin, what is wrong with

[Rails] Re: beginner in Ruby on rails

2015-07-20 Thread Taras Matsyk
Hey, beginner, send me a message. We are in the same boat =D @Colin, can I have question. Why should I use rvm? I am using rbenv at the moment, which reminds me a python virtualenv and I am pretty satisfied with it. So what is the advantage? -- Posted via http://www.ruby-forum.com/. --

[Rails] Re: how to find what all associations have dependent: destroy associated with them from a concern

2015-07-20 Thread Elizabeth McGurty
Highly offensive! On Monday, July 20, 2015 at 3:29:59 PM UTC-4, Ruby-Forum.com User wrote: Hi Aravind, I am not sure if I understood your question correctly but I will give a try. I think you want to delete all associated records with another type of the Model. class Body

Re: [Rails] Re: beginner in Ruby on rails

2015-07-20 Thread Colin Law
On 20 July 2015 at 20:34, Taras Matsyk li...@ruby-forum.com wrote: ... @Colin, can I have question. Why should I use rvm? I am using rbenv at the moment, which reminds me a python virtualenv and I am pretty satisfied with it. So what is the advantage? Yes I believe you are right, rbenv is

[Rails] Re: Good queue manager?

2015-07-20 Thread Taras Matsyk
Hi Jeff, I am not so advanced in web-dev but what you are looking like sounds like a rake task or delayed_job gem. @Guys, please correct me if I am wrong. I do not want to point this guy in to the wrong direction. -- Posted via http://www.ruby-forum.com/. -- You received this message

[Rails] Re: i'm getting this error with rails cannot load such file -- bcrypt

2015-07-20 Thread Taras Matsyk
Hi Omar, Put your code on github and post a link. -- 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 unsubscribe from this group and stop receiving emails from it, send an email to

Re: [Rails] Re: Good queue manager?

2015-07-20 Thread Jeff Pickhardt
Thanks. What I'm looking for is an admin dashboard to manage your queues, see how many jobs are in it, see what's failing, etc. Do you know of anything like that? -- Sent from my Android. On Jul 20, 2015 12:32 PM, Taras Matsyk li...@ruby-forum.com wrote: Hi Jeff, I am not so advanced in

Re: [Rails] Re: i'm getting this error with rails cannot load such file -- bcrypt

2015-07-20 Thread Paul Makepeace
https://gist.github.com/ On Mon, Jul 20, 2015 at 2:31 PM, Elizabeth McGurty emcgur...@gmail.com wrote: This solution is very interesting to me. I was not aware that I could post a link to GitHub and get help. I think that it would be hugely useful to many folks here, if you could elaborate.