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

2020-01-29 Thread Joe Guerra
gt; recent code 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'

[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

[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 upg

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 `iip.object

[Rails] Re: ROR + React

2019-08-23 Thread Joe Guerra
n automatically. 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

[Rails] Re: ROR + React

2019-08-22 Thread Joe Guerra
-rails gem. 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-learnin

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 everyone.!

[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, enum

[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

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, > wrot

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 yo

[Rails] Re: Custom template handler

2019-06-07 Thread Joe Guerra
ming 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: >>> >>>

[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 sub

[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 looking

[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 row

[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 c

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

2019-05-15 Thread Joe Guerra
That's great. Where is your github repo? On Wednesday, May 15, 2019 at 1:21:16 PM UTC-4, David McDonald wrote: > > Hey Joe, thanks for the kind words. We are working towards opening up > some projects on our Github page over the course of this year. So be on the > look

[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 b

[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

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: > >

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

Re: [Rails] Re: jquery drop down hover

2019-04-03 Thread Joe Guerra
ke wrote: > > 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 Gue

Re: [Rails] Re: jquery drop down hover

2019-04-03 Thread Joe Guerra
ever gem is > responsible for your jQuery. > > If it's not a Gem that does this then you need 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. &g

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 > > w

Re: [Rails] Re: jquery drop down hover

2019-04-02 Thread Joe Guerra
script files ... rw-r--r-- 1 joe joe814 Apr 2 15:40 application.js -rw-r--r-- 1 joe joe 9353 Nov 6 19:39 bootstrap-dropdownhover.js -rw-r--r-- 1 joe joe 6787 Nov 6 19:39 bootstrap-dropdownhover.min.js -rw-r--r-- 1 joe joe 5425 Aug 9 2018 bootstrap-hover-dropdown.old -rw-r--r-- 1 jo

[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, wel

[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 on

[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... &g

[Rails] Re: build crashing in heroku

2019-03-27 Thread Joe Guerra
19 at 3:30: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::FileNotFou

Re: [Rails] Re: build fail on heroku

2019-03-16 Thread Joe Guerra
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

[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
t; preliminarily. > > 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

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 al

[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, F

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 Wh

[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 t

[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 &#x

[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

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 push

[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 > -- Y

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

[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

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

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 ne

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

2018-10-24 Thread Joe Guerra
ss - just need to figure out how to link the form and this method thru a route. Thanks, Joe On Wednesday, October 24, 2018 at 12:09:44 PM UTC-4, Walter Lee Davis wrote: > > It is really worthwhile googling REST and Rails, and reading about the > underlying expectations of the Rails fra

[Rails] manually creating a route to...

2018-10-24 Thread Joe Guerra
and what action or url do I need in my form field? 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 to rubyonrails-talk+unsubscr...@goo

Re: [Rails] modal dialog box

2018-10-23 Thread Joe Guerra
uantity 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
how to get the :qty from the form input field. I need to check this value compare it to the remaining as well. Thanks, Joe On Saturday, October 20, 2018 at 2:58:25 PM UTC-4, Greg Navis wrote: > > You can pre-render the modal with a confirmation form. When clicking "Add > to

Re: [Rails] modal dialog box

2018-10-23 Thread Joe Guerra
to get the :qty from the form input field. I need to check this value compare it to the remaining as well. Thanks, Joe On Saturday, October 20, 2018 at 2:58:25 PM UTC-4, Greg Navis wrote: > > You can pre-render the modal with a confirmation form. When clicking "Add > to cart&

[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 rec

Re: [Rails] modal dialog box

2018-10-20 Thread Joe Guerra
, and 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. > &g

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, Joe Gu

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

2018-10-19 Thread Joe Guerra
'} At least 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 eithe

[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�[34mSEL

[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 (0.8ms

[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 me

[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.gi

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 f

[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 fr

Re: [Rails] devise & facebook omniauth

2018-10-05 Thread Joe Guerra
27;ve used 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 updat

Re: [Rails] devise & facebook omniauth

2018-10-04 Thread Joe Guerra
th to add a new password 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 Walte

Re: [Rails] devise & facebook omniauth

2018-10-04 Thread Joe Guerra
ight? > > 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 yo

Re: [Rails] devise & facebook omniauth

2018-10-04 Thread Joe Guerra
that you account is registered using facebook - so they remember how they signed up.) . And I guess if they have initially they can't log in using facebook? Thanks, Joe On Thursday, October 4, 2018 at 6:12:07 PM UTC-4, Walter Lee Davis wrote: > > When you authenticate with an OAuth

[Rails] devise & facebook omniauth

2018-10-04 Thread Joe Guerra
account-without-providing-a-password and removed the confirmation to update the profile which worked, but did not update the devise password. has anyone dealt with this and found a way around it? Thanks, Joe -- You received this message because you are subscribed to the Google Groups "Ruby o

[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: 'Cou

[Rails] omniauth facebook api

2018-10-01 Thread Joe Guerra
t.env['omniauth.auth']: I think I would maybe need to fix my callback scope or the info_fields (my callback doesn't include any of these extra parameters). Any suggestions are welcomed. Thanks, Joe -- You received this message because you are subscribed to the Google Groups &

Re: [Rails] something strange with sqlite ?

2018-09-18 Thread Joe Guerra
dates 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 cate

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 201

[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 Googl

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 having a very

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 the

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

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: >

[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 Odin

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. > > wo

Re: [Rails] updating records

2018-08-22 Thread Joe Guerra
te: > > 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 co

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

Re: [Rails] updating records

2018-08-22 Thread Joe Guerra
. Some sort 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 value

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 Goo

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 17:

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 > suit

[Rails] bootstrap cards

2018-08-09 Thread Joe Guerra
'm not having any luck. This is one card(s). I'm trying to combine the iterating thru the actual link to my products (but it's making a mess of it). Thanks, Joe -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" gro

[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 thi

[Rails] sass compass

2018-08-08 Thread Joe Guerra
uot;; followed by the rest of the css. I'm crashing with it not loading breakpoint... File to import not found or unreadable: breakpoint. Has anyone come across this sort of thing? Thanks, Joe -- You received this message because you are subscribed to the Google Groups "Ruby

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   4   5   6   >