Re: [Rails] Re: general 3rd party troubleshooting tips?

2020-01-29 Thread Joe Guerra
changes you made - do any odd branch switching? > > On Tue, Jan 28, 2020 at 1:05 PM Joe Guerra > wrote: > >> ___ >> |/ | >> | (_) >> | \|/ >> || >> | / \ >> | >>

[Rails] Re: general 3rd party troubleshooting tips?

2020-01-28 Thread Joe Guerra
___ |/ | | (_) | \|/ || | / \ | __|___ On Monday, January 27, 2020 at 11:09:56 AM UTC-5, Joe Guerra wrote: > > > I'm not sure what happened to this commontator gem ( > https://github.com/lml/commontator ) I'm usi

[Rails] Re: breadcrumb_on_rails... undefined before filter method

2019-12-29 Thread Joe Guerra
ok, I had to move it from the class to each method. On Sunday, December 29, 2019 at 5:33:43 PM UTC-5, Joe Guerra wrote: > > Hmm, not so sure how I got this error. > > But my root_path breadcrumb is causing undefined before filter method. > Other paths work? > > I'm j

[Rails] Re: mac stuck on ruby version 2.5.1

2019-11-27 Thread Joe Guerra
Ok, I tried everything. But, the integration between zsh and rbenv didn't seem to work. So, back to the bash shell and everything is okie dokie. On Wednesday, November 27, 2019 at 1:45:56 PM UTC-5, Joe Guerra wrote: > > maybe I shouldn't have changed my shell after upgrading

Re: [Rails] build with nested forms

2019-11-02 Thread Joe Guerra
check out the cocoon gem, it made nested forms really simple. On Saturday, November 2, 2019 at 9:17:31 AM UTC-4, Ariel Juodziukynas wrote: > > @item.item_item_properties.item_property_id is wrong, > @item.item_item_properties is a collection, use ` > iip.object.item_property.name` and

[Rails] Re: ROR + React

2019-08-23 Thread Joe Guerra
omatically. You can check by running `heroku buildpacks`, it > should list something like 1. heroku/nodejs, 2. heroku/ruby. > > > > On Thursday, August 22, 2019 at 10:20:58 AM UTC-4, Joe Guerra wrote: >> >> Thanks. >> >> I found a portfolio app that runs on r

[Rails] Re: ROR + React

2019-08-22 Thread Joe Guerra
It doesn't use separate > repositories or servers. All of these gymnastics for scale are > aspirational. Few projects ever reach the point of scale, especially when > bogged-down in the gymnastics. > > On Monday, August 19, 2019 at 3:48:03 PM UTC-3, Joe Guerra wrote: >> >>

[Rails] Re: Rails and Machine Learning implementation of Python or Ruby

2019-08-19 Thread Joe Guerra
here's a huge list... https://github.com/arbox/machine-learning-with-ruby On Monday, August 19, 2019 at 2:57:57 PM UTC-4, Joe Guerra wrote: > > Here's a good article on some basic machine learning with Ruby. > > https://medium.com/@ryanflach/basic-machine-learning-in-ruby-

Re: [Rails] Re: ROR + React

2019-08-19 Thread Joe Guerra
Thanks. Can I add react to my existing project or should I start over? On Monday, August 19, 2019 at 3:14:36 PM UTC-4, Stephen Blackstone wrote: > > You likely just want —webpack=react if using rails 5.1 or higher > Sent from my iPhone > > On Aug 19, 2019, at 2:54 PM, Joe Guerra

[Rails] Re: Rails and Machine Learning implementation of Python or Ruby

2019-08-19 Thread Joe Guerra
Here's a good article on some basic machine learning with Ruby. https://medium.com/@ryanflach/basic-machine-learning-in-ruby-9cce4a67b40b don't know what you want to accomplish, but this is worth a read. On Friday, August 16, 2019 at 4:34:16 PM UTC-4, Adrián Rama Aguilar wrote: > > Hi

[Rails] Re: New version of Torque PostgreSQL GEM

2019-08-19 Thread Joe Guerra
Congrats! On Sunday, August 18, 2019 at 10:47:56 PM UTC-4, Carlos Ferreira da Silva wrote: > > Hey everyone! Just coming here to say that I have just released a new > version of my GEM! I'm very happy with it! Some cool features includes: > Awesome scopes for date/time range-based columns,

[Rails] Re: ROR + React

2019-08-19 Thread Joe Guerra
I guess this is what I'm looking for? https://github.com/reactjs/react-rails On Monday, August 19, 2019 at 2:48:03 PM UTC-4, Joe Guerra wrote: > > I'm going to rebuild my rails app and maybe add react on the front end. > I forget which version of rails I'm using, but I guess it woul

Re: [Rails] Rails Angular

2019-08-07 Thread Joe Guerra
Wow, too easy. On Wed., Aug. 7, 2019, 4:02 p.m. bouazza Mohamed, wrote: > is there something with Angular 2 > > Le mercredi 7 août 2019 06:34:20 UTC-7, Joe Guerra a écrit : >> >> Here is one... >> >> https://youtu.be/R96rw9vEtiQ >> >> On Wed.,

Re: [Rails] Rails Angular

2019-08-07 Thread Joe Guerra
Here is one... https://youtu.be/R96rw9vEtiQ On Wed., Aug. 7, 2019, 8:09 a.m. Joe Guerra, wrote: > Define a simple app? You can actually get a interview after developing a > simple app. > That's awesome. > > On Wed., Aug. 7, 2019, 3:10 a.m. bouazza Mohamed, > wrote: &g

Re: [Rails] Rails Angular

2019-08-07 Thread Joe Guerra
Define a simple app? You can actually get a interview after developing a simple app. That's awesome. On Wed., Aug. 7, 2019, 3:10 a.m. bouazza Mohamed, wrote: > Hello everyone, > > > I am moving to Ruby in rails , i have an interview creating a simple app > With Ruby on rails Angular. > > Do

[Rails] Re: Custom template handler

2019-06-07 Thread Joe Guerra
instead of pre-rendering > > On Thursday, June 6, 2019 at 11:27:57 AM UTC-6, Joe Guerra wrote: >> >> Network error? Where is that csv file your trying to load? >> >> On Thursday, June 6, 2019 at 12:11:09 PM UTC-4, Sampson Crowley wrote: >>> >>> Can

[Rails] Re: index partial, link to show

2019-06-06 Thread Joe Guerra
where is your code? on github? On Friday, May 17, 2019 at 5:48:19 PM UTC-4, der_tom wrote: > > hi, > I have a generic index partial, but link to show action is giving me > routing errors. > I have a few routes scoped, but no luck...any ideas? > -- You received this message because you are

[Rails] Re: how can i get user count on product page ?

2019-06-06 Thread Joe Guerra
those are unique views of that product. (it's not going to count the same user visiting the same product more than 1x) On Thursday, June 6, 2019 at 4:27:02 PM UTC-4, der_tom wrote: > > i would like to know how many people are visiting the current page , eg: > xyz amount of visitors are looking

[Rails] Re: how can i get user count on product page ?

2019-06-06 Thread Joe Guerra
oh that's not too hard. there is a gem for it, it's called impressionist https://github.com/charlotte-ruby/impressionist On Thursday, June 6, 2019 at 4:27:02 PM UTC-4, der_tom wrote: > > i would like to know how many people are visiting the current page , eg: > xyz amount of visitors are

[Rails] Re: Custom template handler

2019-06-06 Thread Joe Guerra
Network error? Where is that csv file your trying to load? On Thursday, June 6, 2019 at 12:11:09 PM UTC-4, Sampson Crowley wrote: > > Can someone please explain to me how I can access the main response object > and headers in a template handler? I want to create a csv builder that > streams

[Rails] Re: mailers, check box items

2019-05-29 Thread Joe Guerra
Nevermind, forget it. On Tuesday, May 28, 2019 at 11:45:06 AM UTC-4, Joe Guerra wrote: > > Hi, I've got a couple of checkbox items on my mailer form. > I'd like for them to show up in the email. I guess I must have missed > something? > > Maybe like check the checkb

[Rails] Re: [JOB] Rails Developer Baltimore, MD - Baltimore Ravens Scouting Department

2019-05-15 Thread Joe Guerra
gt; look out for that and something there may interest you. > > On Wednesday, May 15, 2019 at 9:42:34 AM UTC-4, Joe Guerra wrote: >> >> Those are some pretty cool projects. I'd even build them for fun. >> >> On Wednesday, May 15, 2019 at 9:13:52 AM UTC-4, David McDonald wrote: >>&g

[Rails] Re: [JOB] Rails Developer Baltimore, MD - Baltimore Ravens Scouting Department

2019-05-15 Thread Joe Guerra
Those are some pretty cool projects. I'd even build them for fun. On Wednesday, May 15, 2019 at 9:13:52 AM UTC-4, David McDonald wrote: > > The Baltimore Ravens are searching for a new developer to join our > Analytics team in Baltimore, Maryland. > > This is a full-time position, and you will

[Rails] Re: Dynamic nested form (new gem by me)

2019-04-11 Thread Joe Guerra
Very nice. On Wednesday, April 10, 2019 at 4:41:18 PM UTC-4, Ariel Juodziukynas wrote: > > Hi, I want to share a gem that I'm working on. > > > https://github.com/arielj/vanilla-nested/ >

Re: [Rails] jquery drop down hover

2019-04-11 Thread Joe Guerra
I even removed the dropdown hover jquery scripts. I don't believe they work in mobile (responsive) mode. lol On Tuesday, April 9, 2019 at 9:17:56 AM UTC-4, Joe Guerra wrote: > > Ok, I removed all the references to Ckeditor and I got the dropdown hover > to work on the inital load

Re: [Rails] jquery drop down hover

2019-04-09 Thread Joe Guerra
Ok, I removed all the references to Ckeditor and I got the dropdown hover to work on the inital load. {which is great} But, on other pages, the hover doesn't work. I've got to see exactly how I loaded it up. On Monday, April 8, 2019 at 10:42:27 AM UTC-4, Joe Guerra wrote: > > I'll try

Re: [Rails] jquery drop down hover

2019-04-08 Thread Joe Guerra
I'll try to run it in production mode. I guess I'll need to install PostgreSQL on the development machine. On Wednesday, April 3, 2019 at 8:53:17 PM UTC-4, Walter Lee Davis wrote: > > > > On Apr 3, 2019, at 8:05 PM, Joe Guerra > wrote: > > > > my rails app is ve

Re: [Rails] Re: jquery drop down hover

2019-04-03 Thread Joe Guerra
> I asked about the Rails version because these libs are incompatible with > Rails 5+ > https://github.com/jquery-ui-rails/jquery-ui-rails/issues/124#issuecomment-339689827 > > Rails 5+ uses the webpacker gem to load JS. > > On Wed, Apr 3, 2019 at 10:25 AM Joe Guerra > wrote

Re: [Rails] Re: jquery drop down hover

2019-04-03 Thread Joe Guerra
to figure out how you got > jQuery onto your production server, how it gets there on your dev machine > builds, and how to stop your dev builds from grabbing a different version. > > On Tue, Apr 2, 2019 at 4:24 PM David Merrick > wrote: > >> Have you checked your gem file

Re: [Rails] Re: jquery drop down hover

2019-04-02 Thread Joe Guerra
> Still loads 1.12.4, no idea where it's getting it from. (or why 3.3.1 isn't loading). On Tuesday, April 2, 2019 at 4:22:30 PM UTC-4, David Merrick wrote: > > Make sure you have the gem bootstrap sass could help > > On Wed, 3 Apr 2019 9:03 AM Joe Guerra > > wrote: > >&

Re: [Rails] Re: jquery drop down hover

2019-04-02 Thread Joe Guerra
; version on that server. If source is from somewhere else make sure the > Production server's code has the correct URL and double check your load > order for all JS assets. > > On Fri, Mar 29, 2019 at 3:31 PM Joe Guerra > wrote: > >> I ran console.log(jQuery.fn.jquery); >

[Rails] Re: jquery drop down hover

2019-03-29 Thread Joe Guerra
I ran console.log(jQuery.fn.jquery); (which checked the jquery version in the browsers console) and 3.3.1 on the development, 1.12.4 on the production. I would imagine that's what's wrong, now why? On Friday, March 29, 2019 at 4:04:01 PM UTC-4, Joe Guerra wrote: > > ok, well I guess

[Rails] Re: jquery drop down hover

2019-03-29 Thread Joe Guerra
ok, well I guess JQuery is not running on my production site, but seems to load and run locally... On Friday, March 29, 2019 at 3:56:29 PM UTC-4, Joe Guerra wrote: > > I got this dropdown hover script working on my local pc, unfortunately > when push it to github and build it

[Rails] Re: build crashing in heroku

2019-03-27 Thread Joe Guerra
it doesn't crash, but it's not showing up either. maybe there is some other plugin I can use. On Wednesday, March 27, 2019 at 4:08:55 PM UTC-4, Joe Guerra wrote: > > hmm, I don't know why it was working before, but I got it working now. > > before I was using... > > //= req

[Rails] Re: build crashing in heroku

2019-03-27 Thread Joe Guerra
:14 PM UTC-4, Joe Guerra wrote: > > Can't seem to build my app in heroku, had no problems with it before... > > Preparing app for Rails asset pipeline > >Running: rake assets:precompile > >rake aborted! > >Sprockets::FileNotFound: couldn't fi

Re: [Rails] Re: build fail on heroku

2019-03-16 Thread Joe Guerra
g gems and a possible error or missing file in initialize > has created a problem is my guess. > > Cheers Dave > > On Sun, Mar 17, 2019 at 4:32 AM Joe Guerra > wrote: > >> oh, it must be something to do with ruby-sass that I updated because of >> some vulnerabilities. >&g

[Rails] Re: build fail on heroku

2019-03-16 Thread Joe Guerra
oh, it must be something to do with ruby-sass that I updated because of some vulnerabilities. On Saturday, March 16, 2019 at 11:30:26 AM UTC-4, Joe Guerra wrote: > > I can't figure out why I got a build fail on heroku... I just switched a few > items in my gem file, pushed it to git,

[Rails] Re: Leaking authenticity_token in logs

2019-03-15 Thread Joe Guerra
Where are your logs located? On Friday, March 15, 2019 at 2:54:51 PM UTC-4, 0x01 wrote: > > Is there a danger in leaking authenticity_token in logs? To put it > differently: should I filter them out from logs? > -- You received this message because you are subscribed to the Google Groups "Ruby

Re: [Rails] Fault tolerence and redundancy on Heroku

2019-03-05 Thread Joe Guerra
narily. > > On Monday, March 4, 2019 at 4:55:15 PM UTC-5, Joe Guerra wrote: >> >> Have you run a production check on your environment on heroku? >> >> >> On Sat, Mar 2, 2019 at 10:45 AM wrote: >> >>> Hey Everyone, >>> >>> I wondered

Re: [Rails] Fault tolerence and redundancy on Heroku

2019-03-04 Thread Joe Guerra
Have you run a production check on your environment on heroku? On Sat, Mar 2, 2019 at 10:45 AM wrote: > Hey Everyone, > > I wondered what people here are using for fault tolerance or redundancy > management on Heroku. > > Thank you, > > -- > You received this message because you are subscribed

Re: [Rails] Uploading from desktop to Heroku

2019-02-23 Thread Joe Guerra
You should create a github repository and add your code there first. Then when you create your rails heroku app, just select the repository. It will pull your files from the repo and build your app online. On Sat, Feb 23, 2019, 12:22 PM , wrote: > Hey everyone, > > It appears I have gotten

[Rails] Re: Meals on Wheels - existing meal ordering app?

2019-02-18 Thread Joe Guerra
here it is up on heroku... https://cryptic-inlet-13518.herokuapp.com/ if you want the code https://github.com/merlin2049er/MD-APP If you need any questions answered ask me. If you'd like for me to contribute to the MOW, let me know. I'd be happy to help. Thanks, Joe On Monday, February

Re: [Rails] Meals on Wheels - existing meal ordering app?

2019-02-18 Thread Joe Guerra
I've already have an ecommerce site that you can fork an modify. It's a group purchasing ( or funding ) site. You'd only need to modify the cart and maybe checkout procedure. On Mon, Feb 18, 2019, 12:54 PM Philip Rhoades People, > > I have offered to volunteer IT advice to the local Meals on

[Rails] Re: Building basic airline reservation system with Ruby on Rails

2019-02-10 Thread Joe Guerra
Wow, very nice. Where you taking your training? On Sunday, February 10, 2019 at 2:13:34 AM UTC-5, Daniel Toma wrote: > > I'm 5 weeks into a training program that consists of Ruby, Ruby on Rails, > Javascript, and React. I'm about the wrap up the 3-week module for Ruby on > Rails, and chose

[Rails] Re: RuntimeError (can't modify frozen String)

2018-12-03 Thread Joe Guerra
Yes, that seems to have been the culprit. I commented it out. Is there a better way to concat the category title to the breadcrumb? On Monday, December 3, 2018 at 1:05:14 PM UTC-5, Joe Guerra wrote: > > hmm, maybe it doesn't like this? > > > add_breadcrumb 'categor

[Rails] Re: RuntimeError (can't modify frozen String)

2018-12-03 Thread Joe Guerra
hmm, maybe it doesn't like this? add_breadcrumb 'category / ' << @title, categories_path On Monday, December 3, 2018 at 1:00:40 PM UTC-5, Joe Guerra wrote: > > I got this runtime error on Heroku. I don't know what's wrong, it has > been working fine. > > It's comi

Re: [Rails] Re: rails vs. nodejs

2018-11-14 Thread Joe Guerra
what kind of websites were you developing 16 years ago? where did you connect using a dial up modem? 56k? On Wednesday, November 14, 2018 at 8:10:28 PM UTC-5, Stefan Buhrmester wrote: > > I've been a professional web developer for 16 years now. "Professional" as > in "receiving money for

[Rails] Re: RoR for poor farmers in Africa

2018-11-13 Thread Joe Guerra
Sure, why not? On Tuesday, November 13, 2018 at 2:25:21 PM UTC-5, David Hughes wrote: > > Hi all > I am a scientist at Penn State University and the United Nations Food and > Agricultural Organisation. I work to help poor farmers in Africa and > elsewhere grow more food by combatting pests and

[Rails] Re: [Ask] I want to make widget comparison

2018-11-13 Thread Joe Guerra
Start by scraping the data from their websites. On Tuesday, November 13, 2018 at 11:23:01 AM UTC-5, eben sinaga wrote: > > Hi There, > > I want to make widget comparison from On Travel Agency ( > Booking.com,Expedia,many more). What should i do ? > > I need any advice from you > > Thanks > --

Re: [Rails] just a quick dropdown box question

2018-11-01 Thread Joe Guerra
hmm, I thought a select_tag would work? how do you handle the option on the controller? On Monday, October 29, 2018 at 10:05:09 PM UTC-4, Walter Lee Davis wrote: > > > > On Oct 29, 2018, at 3:32 PM, Joe Guerra > wrote: > > > > I'm going to add a filter to a pa

[Rails] just a quick dropdown box question

2018-10-29 Thread Joe Guerra
I'm going to add a filter to a page index, with the options of [both, true, false]. Do I need to add a button beside the dropdown to refresh the page, or can it pick out the changes made to the dropdown itself (or is that some sort of javascript stuff?) Thanks, Joe -- You received this

Re: [Rails] manually creating a route to...

2018-10-29 Thread Joe Guerra
ould > probably mean a lot harder work ahead for you than just creating a separate > model and controller to handle these. > > Walter > > > On Oct 24, 2018, at 11:51 AM, Joe Guerra > wrote: > > > > I've got a pages controller [which is a catch all for most

Re: [Rails] manually creating a route to...

2018-10-25 Thread Joe Guerra
Ok, I created a new controller for invoicing and removed it from my [static] pages controller. On Wednesday, October 24, 2018 at 1:27:25 PM UTC-4, Joe Guerra wrote: > > Yes, I know I've run plenty of scaffolds and generated lots of models. > > I just didn't think I would need to do t

Re: [Rails] manually creating a route to...

2018-10-24 Thread Joe Guerra
rgue that adding an invoice to a pages_controller would > probably mean a lot harder work ahead for you than just creating a separate > model and controller to handle these. > > Walter > > > On Oct 24, 2018, at 11:51 AM, Joe Guerra > wrote: > > > > I've go

[Rails] manually creating a route to...

2018-10-24 Thread Joe Guerra
I've got a pages controller [which is a catch all for most pages on my site] and in it, I have defined an invoice page. Just a bunch of users I would need to invoice [manually for now] so, I created a method called 'update_invoice_link'. how would I manually create this route and what action

Re: [Rails] modal dialog box

2018-10-23 Thread Joe Guerra
the quantity field) submits normally, > and the Dootstrap part just decorates the result of a confirm() dialog in > JS. > > Walter > > > On Oct 23, 2018, at 11:19 AM, Joe Guerra wrote: > > > > > > > > > > > > > > > > > > > >

Re: [Rails] modal dialog box

2018-10-23 Thread Joe Guerra
[image: Capture.PNG] Ok, this is what I have so far. I've added the bootstrap modal and put the button right next to the actual button. So, I need to render this modal, and then on the modal boxes save changes (update the cart). oh, the other thing I couldn't figure out is how to get

Re: [Rails] modal dialog box

2018-10-23 Thread Joe Guerra
[image: Capture.PNG] Ok, this is what I have so far. I've added the bootstrap modal and put the button right next to the actual button. So, I need to render this modal, and then on the modal boxes save changes (update the cart). oh, the other thing I couldn't figure out is how to get the

[Rails] jeykll ?

2018-10-20 Thread Joe Guerra
ok, I found this nice site on github using jeykll [static site generator]. I started to mess around with it, but I'm wondering if I can use it to run some simple ruby scripts. Or I might have to pull some data in from wikipedia using some sort of javascript api. Thanks, Joe -- You received

Re: [Rails] modal dialog box

2018-10-20 Thread Joe Guerra
then use data-attributes or a querystring to > "tell" the modal which product is being ordered. You'll have to use JS to > change the form element that signals what product is being ordered. Once > you get through that, the rest is a normal CRUD Rails form. > > Walter >

Re: [Rails] Re: got this issue in production, but it works in development?

2018-10-19 Thread Joe Guerra
I don't know how to write tests yet. :) Maybe I need to find someone who can give me a few private lessons. On Fri, Oct 19, 2018 at 10:49 AM Colin Law wrote: > I assume your automated tests do not exercise that condition. > > Colin > > On Fri, 19 Oct 2018 at 15:38, Jo

Re: [Rails] Re: got this issue in production, but it works in development?

2018-10-19 Thread Joe Guerra
it doesn't crash now. lol. On Friday, October 19, 2018 at 10:24:36 AM UTC-4, Colin Law wrote: > > On Fri, 19 Oct 2018 at 14:43, Joe Guerra > wrote: > > > > Ok , I fixed this error. It's not crashing but it's not saving the last > item either [or processing the order...] >

[Rails] Re: got this issue in production, but it works in development?

2018-10-19 Thread Joe Guerra
Ok , I fixed this error. It's not crashing but it's not saving the last item either [or processing the order...] On Friday, October 19, 2018 at 9:24:26 AM UTC-4, Joe Guerra wrote: > > Here's a snippet of the log from heroku. > > �[1m�[35m (0.9ms)�[0m �[1m�[34mSELECT SUM("c

[Rails] got this issue in production, but it works in development?

2018-10-19 Thread Joe Guerra
Here's a snippet of the log from heroku. �[1m�[35m (0.9ms)�[0m �[1m�[34mSELECT SUM("carts"."qty") FROM "carts" WHERE "carts"."product_id" = 1641�[0m 2018-10-13T01:57:05.838933+00:00 app[web.1]: �[1m�[35m (0.8ms)�[0m �[1m�[35mBEGIN�[0m 2018-10-13T01:57:05.841836+00:00 app[web.1]: �[1m�[35m

[Rails] modal dialog box

2018-10-19 Thread Joe Guerra
HI, I'd like to insert a bootstrap modal dialog box between my add to cart button and the actual action. I know how to display the dialog box, but not sure how to hook it up to the form cart button? [and the actual saving to cart] Any suggestions? Thanks, Joe -- You received this message

[Rails] Re: Need people to give feedback

2018-10-17 Thread Joe Guerra
Great, how about a chapter on testing [writing test cases with mini test or rspec? ] and debugging rails apps? Thanks, Joe On Wednesday, October 17, 2018 at 1:27:08 PM UTC-4, Karthikeyan A K wrote: > > Hello All, > > I am porting my Ruby book to HTML here https://i-love-ruby.gitlab.io/ , I >

Re: [Rails] country select gem

2018-10-10 Thread Joe Guerra
ct :country, options_for_select(["CA", "US"]) %> >> >> >> On Thu, Oct 4, 2018 at 6:40 AM Joe Guerra wrote: >> >>> I'm not sure why I went to this extent, but I was trying to remove the >>> gem and failed. (it still kept findin

[Rails] google recaptcha & devise?

2018-10-10 Thread Joe Guerra
Just wondering if it's necessary to add some sort of captcha to devise's login / signup form? Thanks, Joe -- 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

Re: [Rails] devise & facebook omniauth

2018-10-05 Thread Joe Guerra
facebook to login). Hopefully, people won't get too confused. On Thursday, October 4, 2018 at 10:54:53 PM UTC-4, Joe Guerra wrote: > > Ok, I'll try that. I had this crazy problem that I fixed before - if you > created a profile using facebook you couldn't update your profile because u

Re: [Rails] devise & facebook omniauth

2018-10-04 Thread Joe Guerra
word to your account. > > Walter > > > On Oct 4, 2018, at 10:41 PM, Joe Guerra wrote: > > > > Yes, both are enabled. > > > > So I guess that means you can only use one or the other? > > > > On Thu, Oct 4, 2018 at 10:33 PM Walter Lee Davis > wr

Re: [Rails] devise & facebook omniauth

2018-10-04 Thread Joe Guerra
> Walter > > > On Oct 4, 2018, at 10:25 PM, Joe Guerra wrote: > > > > I believe I set it up correctly? > > Take a look. > > > > https://cryptic-inlet-13518.herokuapp.com/ > > > > On Thursday, October 4, 2018 at 10:07:16 PM UTC-4,

Re: [Rails] devise & facebook omniauth

2018-10-04 Thread Joe Guerra
t; You can sign in using any number of different strategies, including local > authentication, if you set it up right. > > Walter > > > On Oct 4, 2018, at 9:39 PM, Joe Guerra > wrote: > > > > Sorry, I guess if they have logged in using devise local

Re: [Rails] devise & facebook omniauth

2018-10-04 Thread Joe Guerra
Sorry, I guess if they have logged in using devise locally initially they can't log in using facebook? On Thu, Oct 4, 2018 at 9:34 PM Joe Guerra wrote: > Ok, then I think I'm going to make a few small changes to the profile form > and the login/sign up pages. > > So you're eithe

Re: [Rails] devise & facebook omniauth

2018-10-04 Thread Joe Guerra
local > password. If you want to change the password, you have to do that at > Facebook. > > Walter > > > On Oct 4, 2018, at 9:48 AM, Joe Guerra > wrote: > > > > I've got these two working together , but I've found out if you sign up > initially with facebook -

[Rails] devise & facebook omniauth

2018-10-04 Thread Joe Guerra
I've got these two working together , but I've found out if you sign up initially with facebook - the devise password doesn't exist. So I had no way of updating the profile, then I found this ...

[Rails] country select gem

2018-10-03 Thread Joe Guerra
I'm not sure why I went to this extent, but I was trying to remove the gem and failed. (it still kept finding the helper method - even though I removed it from my view) Anyways, I'm got this code... but it doesn't like the label; <%= f.country_select :country, only: ["CA", "US"], label:

[Rails] omniauth facebook api

2018-10-01 Thread Joe Guerra
Hi, I've got my facebook login working ok with my web app, but not sure how to grab some extra facebook values (last_name, first_name). If I could just inspect or display the hash coming back from facebook that would be great (first step). The fabebook hash should be in this

Re: [Rails] something strange with sqlite ?

2018-09-18 Thread Joe Guerra
in a populate rake file and stopped working (on the development env (sqlite)). Thanks, Joe On Monday, September 17, 2018 at 7:34:00 PM UTC-4, Hassan Schroeder wrote: > > On Mon, Sep 17, 2018 at 1:20 PM, Joe Guerra > wrote: > > I have an active record query (for my categories) th

Re: [Rails] something strange with sqlite ?

2018-09-17 Thread Joe Guerra
Thanks, I'll try that. Hopefully it works for postgres and sqlite. On Mon, Sep 17, 2018, 5:18 PM Rob Zolkos, wrote: > I think you will need to wrap todaydate in strftime for sqlite. Away > from computer to check but google ‘date arithmetic sqlite’ > > On Tue, 18 Sep 2018 at

[Rails] something strange with sqlite ?

2018-09-17 Thread Joe Guerra
I have an active record query (for my categories) that check for the date ( .where( 'enddate > ?', todaydate )). Today's date get's wrapped in quotes, and it fails to produce any records, but it's perfectly fine in postgres. -- You received this message because you are subscribed to the

Re: [Rails] What is the name of that gem?

2018-09-10 Thread Joe Guerra
or this? https://github.com/rstacruz/npm-pipeline-rails On Monday, September 10, 2018 at 3:32:47 PM UTC-4, Joe Guerra wrote: > > this ? > https://github.com/endenwer/npm-rails > > On Mon, Sep 10, 2018 at 3:28 PM, Walter Lee Davis > wrote: > >> I am havin

Re: [Rails] What is the name of that gem?

2018-09-10 Thread Joe Guerra
this ? https://github.com/endenwer/npm-rails On Mon, Sep 10, 2018 at 3:28 PM, Walter Lee Davis wrote: > I am having a very hard time googling for this. It's a gem you add to your > rails application, and it allows you to then request Node modules as if > they were gems, and get them added to

Re: [Rails] Re: Looking for a Sensei for a final bootcamp project

2018-08-27 Thread Joe Guerra
what's your id on gitter? On Monday, August 27, 2018 at 10:28:37 AM UTC-4, Mario Antoniali wrote: > > Thank you very much for your help. We finally found someone to help us > already but we appreciate your assistance. > Have a good one! > > Le dim. 26 août 2018 à 18:19, Joe

Re: [Rails] updating records

2018-08-27 Thread Joe Guerra
Great, I've got my new scope in there. Seems to be working well. I've got to learn how to write tests. :) On Sunday, August 26, 2018 at 12:52:29 PM UTC-4, Colin Law wrote: > > On Sun, 26 Aug 2018 at 17:20, Joe Guerra > wrote: > > > > Yes, I know. > > > >

Re: [Rails] updating records

2018-08-26 Thread Joe Guerra
Yes, I know. I learned about using the default scope, then put it into my app. Then I discovered everyone said not to use them. lol. On Wednesday, August 22, 2018 at 8:08:53 PM UTC-4, Walter Lee Davis wrote: > > > > On Aug 22, 2018, at 1:28 PM, Joe Guerra > wrote: &g

[Rails] Re: Looking for a Sensei for a final bootcamp project

2018-08-26 Thread Joe Guerra
Hey, what's your handle on gitter (TOP). I'm on The Odin Project too. I can give you some assistance. On Friday, August 24, 2018 at 9:18:53 AM UTC-4, Mario Antoniali wrote: > > Hello everyone! > > A couple of months ago my team an I started to follow a *boot camp* (a > french fork of The

Re: [Rails] updating records

2018-08-22 Thread Joe Guerra
I've got to fix my default scope. On Wed, Aug 22, 2018 at 1:23 PM, Joe Guerra wrote: > ok, so I got it working... > > the process is add to cart my show page updates quantity... and if > it reached 0 now i've got it updating and redirecting to root_path. > > works like a

Re: [Rails] updating records

2018-08-22 Thread Joe Guerra
: > > On Wed, 22 Aug 2018 at 17:17, Joe Guerra > wrote: > > > > Yes, in the product controller? > > > > In > > Def show > > End > > That is not a page that is a controller action, which invokes a view. > It is important to use the correct word

Re: [Rails] updating records

2018-08-22 Thread Joe Guerra
Yes, in the product controller? In Def show End On Wed, Aug 22, 2018, 12:00 PM Colin Law, wrote: > On Wed, 22 Aug 2018 at 16:54, Joe Guerra wrote: > > > > Ok, since it's on the show page I can check for that (and it did work on > that page), but as soon as it is ad

Re: [Rails] updating records

2018-08-22 Thread Joe Guerra
of congratulations page - "we have met the target , blah blah blah..." Thanks, Joe On Wednesday, August 22, 2018 at 11:46:26 AM UTC-4, Colin Law wrote: > > On Wed, 22 Aug 2018 at 16:31, Joe Guerra > wrote: > > > > ok, well I need to flip a few boolean values to begin the

Re: [Rails] updating records

2018-08-22 Thread Joe Guerra
ok, well I need to flip a few boolean values to begin the group order process. On Wed, Aug 22, 2018 at 11:22 AM, Colin Law wrote: > On Wed, 22 Aug 2018 at 15:36, Joe Guerra wrote: > > > > > > I know how to update records, but not sure where I should put my code > when

[Rails] updating records

2018-08-22 Thread Joe Guerra
I know how to update records, but not sure where I should put my code when product qty == 0. I do have a flash notice on the show page that displays a message when the last item is left. Should I put update the records on the show page as well ? (when qty == 0 ) Thanks, Joe -- You

[Rails] modal window popup

2018-08-20 Thread Joe Guerra
I'd like to add a modal pop-up window in my rails app but I'm not sure if I should avoid it because it may be blocked by a pop-up blocker. Is there a general rule that applies to using modal windows? Thanks, Joe -- You received this message because you are subscribed to the Google Groups

Re: [Rails] Ruby on Rails Part time programer

2018-08-14 Thread Joe Guerra
What's required? I'd be interested in a remote part-time position. On Tue, Aug 14, 2018 at 9:10 AM, Josue Figueroa wrote: > Hi, > > Could you explain more about the changes that you want to perform to your > Rails application? Could this work be remote? > > Regards, > Josue > > 2018-08-13

Re: [Rails] Looking for help on how to incorporate Stripe into my existing files

2018-08-10 Thread Joe Guerra
have you seen this? http://railscasts.com/episodes/288-billing-with-stripe On Friday, August 10, 2018 at 5:09:52 PM UTC-4, David Merrick wrote: > > Thanks > > On Sat, Aug 11, 2018 at 8:45 AM Mugurel Chirica > wrote: > >> Hey David, looks like you did not configure your application properly. >>

[Rails] Re: Full Stack Ruby on Rails Developer job in Eastleigh

2018-08-10 Thread Joe Guerra
Where is this position located? On Wednesday, August 8, 2018 at 3:32:42 PM UTC-4, Julia Mardell wrote: > > This is a fantastic opportunity for an ambitious rails web developer to > join a young, dynamic team. > > > > You’ll work within our Product Development Team to ensure our digital >

[Rails] bootstrap cards

2018-08-09 Thread Joe Guerra
https://res.cloudinary.com/dlfodsgbd/image/upload/v1485912958/photo_not_available.png);"> Saepe Delectus Consequatur Eius numquam optio corporis exercitationem eaque optio Active: 2018-07-15 - 2018-08-15 I got these bootstap cards I'm trying to loop thru, but I'm not having

[Rails] Re: sass compass

2018-08-08 Thread Joe Guerra
ok, I moved @import "compass"; @import "breakpoint"; to the application.css.scss file. getting another error, not as bad. Undefined mixin 'box-shadow'. On Wednesday, August 8, 2018 at 5:56:54 PM UTC-4, Joe Guerra wrote: > > I'm trying to use this css library w

[Rails] sass compass

2018-08-08 Thread Joe Guerra
I'm trying to use this css library with bootstrap. Anyways, I've got this in my gemfile... # compass for sytlesheets gem 'compass-rails' gem 'breakpoint', '~> 2.5' and this in my pages.scss @import "compass"; @import "breakpoint"; followed by the rest of the css. I'm crashing with it

Re: [Rails] devise users

2018-08-03 Thread Joe Guerra
Thanks. I followed Frantz link, it helped. I just had multiple routes that were the same, so I fixed it. On Friday, August 3, 2018 at 2:31:48 PM UTC-4, Hassan Schroeder wrote: > > On Fri, Aug 3, 2018 at 11:04 AM, Joe Guerra > wrote: > > Hi, just display the users on the webp

  1   2   3   >