Add Students to a class in a HABTM relationship !
I have an app designed that I have classrooms and I want to "enroll" students in the class en mass. For example I want to be able to search by name and either add by an enroll or add button or a c...

1
Rails
Finding Users in Group Chat Go Rails Class
Was able to figure it leveraging the great SO commnity. In case anyone else is stuck on a similar issue, here's a link to the solution that worked
(http://stackoverflow.com/questions/44092682/fi...

2
Rails
Extending Rails flash
Hey Jiri,
Do you know for sure if that file is being loaded? I think that it should be since it's in app, but I would just want to verify that.
You can also just simply define this in an init...

3
Rails
Hatch: Deploying my first App
Hmm! I guess probably since you tested it earlier on I probably fixed some of the bugs around the Bitbucket stuff. I will wait until another report of that issue and see if it's a consistent thing ...

8
Servers
Multiple Devise Users sharing a dashboard
Thanks for the super speedy response :)

3
Rails
Rails 5.0 - How to implement in-place editing without using best_in_place gem
I'm building an Events site using RoR which I've just upgraded to v5.0.1 (not moving to 5.1 just yet). My events show page has a comments section at the foot of the page which, so far, only has a c...

1
Rails
Two Forms/Two Controllers/One Page: Passing Instance Variables, Routing, and Error Handling
Evening Chris,
I will be using AJAX in the next refactor. The manner in which I itereated through my test for this project made me realize I didn't have a graceful fallback when JS is turned of...

3
Rails
Email Stripe Receipts
Hey Steve!
Stripe has their own receipts that you can enable but they're very basic. You'll probably want to turn those off and send your own emails here.
Your code for this is exactly right....

2
Rails
Styles not rendering
Thanks for the tip! Yeah, GoRails is pretty awesome and clear :)

6
CSS
Access Rails constants from Webpack-managed JS
I haven't used the erb loader yet, but you might also consider just storing the json for the wizard pages in the DOM somewhere (probably in a head tag) that Webpack stuff loads. That's what I was s...

2
Rails
3rd party integrations using Oauth/omniauth
So the 'user = User.from_omniauth(env["omniauth.auth"])' will still go in the sessions_controller under create method?
Or does it make more sense to put it under the update method in session...

3
Rails
How do I import a Sass library from within a "node_module" (Rails 5.1)?
Yeah, I'm messing with this and running TailwindCSS/SASS in parallel with the Rails Asset Pipeline/Bootstrap.As mentioned, that's what's so powerful about Webpack (as I've recently discovered and l...

12
Rails
How do I Geocode location with either address or Lat / long
Yeah, I was going to suggest the geocoder gem. It's probably the only one I've used over the last few years and it works rather well. Documentation isn't super duper great, but it's not bad.
Let...

3
Rails
How to use In-App Notifications as an activity feed?
@Thomas M,
Looks pretty good alternative but I am not very familiar with Go so it might eat some extra time. Is there a Rails way of implementing Streams(Roshi/Go) ?

7
Rails
How do I give Users the option of either selecting from a dropdown menu or inputting their own and adding it DB for other users
This worked amazing thank you so much Jack for pointing me in the right direction :) In case anyone else looks at Chris' source code - it works amazing the one thing is depending on your text edito...

3
Rails