[Rails] Re: passing parameters to delete link_to

2017-06-06 Thread fugee ohu
On Tuesday, June 6, 2017 at 11:21:44 PM UTC-4, fugee ohu wrote: > > The rails scaffolding generator creates delete links as objects in index > views so why when I google how to pass params to a delete link all the > answers are examples where a path is used My links don't have a path, they >

[Rails] Chennai based Startup Looking for co-founder with ruby/RoR experience

2017-06-06 Thread skumar
Brand new startup with few ideas on service and product line of business looking for co-founder. It would be nice if you have ruby/RoR experience. Please contact me only if you are really interested and passionate about this opportunity. -- You received this message because you are subscribed

Re: [Rails] passing parameters to delete link_to

2017-06-06 Thread Jim Ruther Nill
On Wed, Jun 7, 2017 at 11:24 AM, Jim Ruther Nill wrote: > > > On Wed, Jun 7, 2017 at 11:21 AM, fugee ohu wrote: > >> The rails scaffolding generator creates delete links as objects in index >> views so why when I google how to pass params to a delete link

Re: [Rails] passing parameters to delete link_to

2017-06-06 Thread Jim Ruther Nill
On Wed, Jun 7, 2017 at 11:21 AM, fugee ohu wrote: > The rails scaffolding generator creates delete links as objects in index > views so why when I google how to pass params to a delete link all the > answers are examples where a path is used My links don't have a path, they >

[Rails] passing parameters to delete link_to

2017-06-06 Thread fugee ohu
The rails scaffolding generator creates delete links as objects in index views so why when I google how to pass params to a delete link all the answers are examples where a path is used My links don't have a path, they have an object That's rails out of the box Like this: <%

[Rails] Re: rubymine 2.4.1

2017-06-06 Thread Joe Guerra
Lol, now I've got to get rails installed for that version. My default version is still 2.3.1. On Tuesday, June 6, 2017 at 7:08:44 PM UTC-4, Joe Guerra wrote: > > Ok, I figured it out. I installed ruby 2.4.1 , but forgot to install > rails for it. lol. > > > > On Tuesday, June 6, 2017 at

[Rails] Re: rubymine 2.4.1

2017-06-06 Thread Joe Guerra
Ok, I figured it out. I installed ruby 2.4.1 , but forgot to install rails for it. lol. On Tuesday, June 6, 2017 at 7:04:21 PM UTC-4, Joe Guerra wrote: > > I just installed a new version of ruby (2.4.1) using rbenv. > > I have 2.3.1 installed as well. I've downloaded some source code that

[Rails] rubymine 2.4.1

2017-06-06 Thread Joe Guerra
I just installed a new version of ruby (2.4.1) using rbenv. I have 2.3.1 installed as well. I've downloaded some source code that requires 2.4.1, and can't seem to figure out how to switch ruby versions in the IDE (for that product). Any suggestions? -- You received this message because

Re: [Rails] http requests

2017-06-06 Thread Joe Guerra
Thanks. If I can figure out to make my own http request to my canada post account, I can possibly grab the shipping rate if I pass it weight, length, height, and width. On Tuesday, June 6, 2017 at 5:02:02 PM UTC-4, Jason FB wrote: > > Joe - > > > This (gems having gone stale) is generally

Re: [Rails] http requests

2017-06-06 Thread Jason Fleetwood-Boldt
Joe - This (gems having gone stale) is generally par for the course in the Ruby world. This is a good resource that gives you some idea of how popular & active any given gem might be: https://www.ruby-toolbox.com Choosing an old gem that is stale (hasn't been updated in a couple of years) is

Re: [Rails] Re: http requests

2017-06-06 Thread Hassan Schroeder
On Tue, Jun 6, 2017 at 1:20 PM, Joe Guerra wrote: > Yes, I'm going to email the author of the gem. Get his take on it. SMH. Apparently my attempt at sarcasm fell straight through... >> > But the gem is not very well documented. I can't get it to work. >> >> That's a

Re: [Rails] Re: http requests

2017-06-06 Thread Joe Guerra
Yes, I'm going to email the author of the gem. Get his take on it. It hasn't been updated for over 2 years. Maybe something has changed on the Canada post side. On Monday, June 5, 2017 at 4:17:20 PM UTC-4, Hassan Schroeder wrote: > > On Mon, Jun 5, 2017 at 12:08 PM, Joe Guerra

Re: [Rails] passing params to controller redirects

2017-06-06 Thread Jason Fleetwood-Boldt
Did you try it without specifying the params? Last I checked if you define a redirect(…) in your routes.rb file, the query params are automatically passed along to the redirected page. (*I'm on an older version of Rails, so if this changed in Rails recently then ask someone who has experience