Re: [Rails] mailboxer sent messages not appearing in recipients inbox

2017-09-23 Thread nynhex
gt; wrote: > > > > On Saturday, September 23, 2017 at 11:06:39 AM UTC-4, nynhex wrote: > No one is harassing you. But your lack of effort shows. We are all trying > to help you but you fail to even put forth effort to do your own research. > We are basically writing your app

Re: [Rails] mailboxer sent messages not appearing in recipients inbox

2017-09-23 Thread nynhex
gt; > On Saturday, September 23, 2017 at 10:16:14 AM UTC-4, Colin Law wrote: > On 23 September 2017 at 01:32, fugee ohu <fuge...@gmail.com > > wrote: > > > > > > On Friday, September 22, 2017 at 8:18:52 PM UTC-4, nynhex wrote: > >> > >> Th

Re: [Rails] mailboxer sent messages not appearing in recipients inbox

2017-09-22 Thread nynhex
Can’t help someone who can’t help themselves. Do the work, do the research, then ask questions. > On Sep 22, 2017, at 7:32 PM, fugee ohu <fugee...@gmail.com> wrote: > > > > On Friday, September 22, 2017 at 8:18:52 PM UTC-4, nynhex wrote: > The problem is you’r

Re: [Rails] mailboxer sent messages not appearing in recipients inbox

2017-09-22 Thread nynhex
The problem is you’re not reading directions or doing your own research. Take the advice of everyone who’s offered to help you and go through some basic Rails tutorials. Nobody is going to write your app for you. > On Sep 22, 2017, at 7:00 PM, fugee ohu wrote: > > What

Re: [Rails] disabling user accounts

2017-09-15 Thread nynhex
Force it to logout with the standard devise logout method. > On Sep 14, 2017, at 4:18 PM, fugee ohu <fugee...@gmail.com> wrote: > > > > On Thursday, September 14, 2017 at 8:48:35 AM UTC-4, nynhex wrote: > Not built in, but you could easily write your own method to pr

Re: [Rails] disabling user accounts

2017-09-14 Thread nynhex
Not built in, but you could easily write your own method to prevent an account from logging in. Simply throw a Boolean of active: true/false and write a method to activate/deactivate the account. Then in your application controller have a method that checks the status of an account and if it

Re: [Rails] Taking project from deveopment through test to production (worflow)

2017-09-10 Thread nynhex
Or you can use this link which is very detailed and easy to follow. https://gorails.com/deploy/ubuntu/16.04 > On Sep 10, 2017, at 11:13 AM, Karthikeyan A K <77mi...@gmail.com> wrote: > > If you need simple thing like deploying Rails (i.e going to

Re: [Rails] Fixed I Love Ruby broken link

2017-08-08 Thread nynhex
Great read, thanks for publishing this! > On Aug 8, 2017, at 10:31 AM, Karthikeyan A K <77mi...@gmail.com> wrote: > > Hello People, > > Have fixed some broken links for https://mindaslab.github.io/I-Love-Ruby/ > . I hosted I Love Ruby book on > Open

Re: [Rails] Upgrading to rails 5.0

2017-07-25 Thread nynhex
You may want to open this as an issue on the gem’s issue tracker: https://github.com/jmettraux/rufus-scheduler/issues This is not a Rails problem, but more of a compatibility issue with the gem. > On Jul 25, 2017, at 2:21 PM, João Bordalo

Re: [Rails] mailboxer attachments

2017-07-20 Thread nynhex
Then you should have your answers. > On Jul 20, 2017, at 11:46 AM, fugee ohu <fugee...@gmail.com> wrote: > > > > On Thursday, July 20, 2017 at 9:42:50 AM UTC-4, nynhex wrote: > Have you actually read the docs, googled, looked at stack overflow? > > >> On

Re: [Rails] mailboxer attachments

2017-07-20 Thread nynhex
You can try reading the docs? > On Jul 20, 2017, at 11:44 AM, fugee ohu wrote: > > > > On Thursday, July 20, 2017 at 5:22:33 AM UTC-4, Mugurel Chirica wrote: > What have you tried so far? > > there are mailboxer tables but the models are in the gem What is there to try >

Re: [Rails] mailboxer attachments

2017-07-20 Thread nynhex
Have you actually read the docs, googled, looked at stack overflow? > On Jul 20, 2017, at 12:55 AM, fugee ohu wrote: > > I haven't been able to get attachments working The mailboxer_notifications > table has an attachment field but messages are created by the messages >

Re: [Rails] Best place to store secret keys in Rails

2017-07-17 Thread nynhex
Sure, why not. I store all my stuff in secrets.yml but best practice to not commit secrets.yml (or database.yml) to version control. > On Jul 17, 2017, at 2:26 PM, Ralph Shnelvar wrote: > > If my code will not be shared, and > > My Rails app is on my own server, then > >

Re: [Rails] acts_as_messagable

2017-07-16 Thread nynhex
Search stack overflow or read the docs > On Jul 16, 2017, at 4:40 PM, fugee ohu wrote: > > I added messaging to my app with acts_as_messagable but how will i let users > send each other pictures? > > -- > You received this message because you are subscribed to the Google

Re: [Rails] jquery ui date range handling choices: periodpicker, daterangepicker, datepicker, datetimepicker

2017-07-15 Thread nynhex
This has nothing to do with rails. Post your question on StackOverflow. > On Jul 15, 2017, at 7:01 AM, fugee ohu wrote: > > First thing I notice is that daterangepicker doesn't populate two date > fields, it populates one field of unsaid data type i assume string If I

Re: [Rails] nested resources revealing users id

2017-07-04 Thread nynhex
How do you expect Rails to work? If your route is /users/:id/posts/:id the ID of the object must be passed as a param. > On Jul 4, 2017, at 5:11 PM, fugee ohu wrote: > > Seems undesirable for everyone to know your user id from a nested resources > url that looks like

Re: [Rails] bootstrap tabs

2017-07-03 Thread nynhex
Have you tried googling or reading the docs? > On Jul 3, 2017, at 5:44 AM, fugee ohu wrote: > > The instructions I find for this all show use data-toggle="tab" and then > separately tab-content I have pages I wanna link to for my items I don't > need this extra fancy

[Rails] Nested Form find or create inside of form

2017-05-29 Thread nynhex
Good morning, I haven’t done an autocomplete with a nested form in quite some time and can’t find any good references. I posted to SO here: https://stackoverflow.com/questions/44232005/rails-5-nested-form-find-or-create

Re: [Rails] deploying to heroku

2017-05-27 Thread nynhex
Good call on this one, request and response are almost reserved naming conventions in rails. > On May 27, 2017, at 9:32 AM, Hassan Schroeder > wrote: > > On Sat, May 27, 2017 at 6:15 AM, Joe Guerra wrote: >> Hi, I'm not sure why my app on

Re: [Rails] deploying to heroku

2017-05-27 Thread nynhex
Is your controller class name named properly and have you committed this controller to version control before deploying to Herkoku? Sent from my iPhone > On May 27, 2017, at 8:15 AM, Joe Guerra wrote: > > Hi, I'm not sure why my app on heroku is crashing. > I've added

Re: [Rails] Configurar SSL no load balancer da Amazon

2017-05-24 Thread nynhex
Eu nunca experimentei o problema que você fez, mas eu posso ajudar. Você pode falar em inglês? Meu portugal não é bom. > On May 24, 2017, at 9:59 AM, pedrocusto...@outlook.com.br wrote: > > Olá. > > Tenho um certificado Willcard da GoDaddy, e tentando fazer upload para o load > balancer da

Re: [Rails] RE: digitalocean/linode automated Rails setup

2017-05-13 Thread nynhex
eresting, but I am looking for something that I have total control > over and not a 3rd party service that costs $$. > > > On Thu, May 11, 2017 at 4:40 PM, nynhex <nyn...@gmail.com > <mailto:nyn...@gmail.com>> wrote: > Checkout hatch.gorails.com <http://hatch.go

Re: [Rails] RE: digitalocean/linode automated Rails setup

2017-05-11 Thread nynhex
Checkout hatch.gorails.com Super easy to deploy your rails app on digital ocean with a couple of clicks. Sent from my iPhone > On May 11, 2017, at 3:25 PM, S Ahmed wrote: > > Hi, > > Are there any good server automation scripts that can bootstrap a Rails > server on

Re: [Rails] Redhat and Passenger migration options?

2017-04-27 Thread nynhex
Not sure what you meant regarding binary compatibility issues moving to a new version of RHEL. But if you are moving to or upgrading RHEL I’d definitely suggest switching to Nginx/Passenger as Nginx benchmarks much better than Apache does and the passenger integration is much more straight

Re: [Rails] use hash from model in controller

2017-04-26 Thread nynhex
Lol this was epic Sent from my iPhone > On Apr 26, 2017, at 7:52 AM, Walter Lee Davis wrote: > > >> On Apr 25, 2017, at 8:30 PM, fugee ohu wrote: >> >> >> >> On Tuesday, April 25, 2017 at 7:19:25 PM UTC-4, Walter Lee Davis wrote: >> Please stick to

Re: [Rails] Form fields not in schema/model

2017-04-20 Thread nynhex
If they’re columns in a table backed by a model, you would simply validate them on the model layer. > On Apr 20, 2017, at 9:06 AM, fugee ohu wrote: > > I'm putting some fields in my form that the controllers gonna use but they're > columns in the table so I can't validate

Re: [Rails] Where to meet the Rails community?

2017-04-09 Thread nynhex
Also another very active community is that of gorails.com. A great screencast site with a dedicated slack channel with thousands of users. All very friendly and helpful. Sent from my iPhone > On Apr 9, 2017, at 2:30 AM, Frederick Cheung > wrote: > >> On Sunday,