
Action Mailbox Routes
2
Rails
I'm adding action mailbox to my Rails + React app, the problem I'm having is that the mounted routes are at the very bottom of the routes file so it will not get called due to the fact that I need ...
Stephen Sizer replied
Solved

Geo-spatial Search with Geocoder and Google Maps Discussion
14
General
Awesome episode! Really enjoying the maps and geolocation episodes!Thanks, Chris!
Amanda replied

How do I add minified JS files to the Rails Webpacker
2
Rails
I am trying to add min.js files - and getting an error.
This works while adding a normal .js file:
*- app/javascript/packs/calendar.js*
alert('Calendar loaded')
*-# app/views/calendars/index.ht...
Arjun Rajkumar replied
Solved

Routing Constraints with Rails Authentication Generator Discussion
3
General
this is a great resource for Rails developers looking to enhance their application's security and routing logic!
Michael S replied

How to build options on select tag with VueJS?
1
Javascript
For example, let's move to episode "using VueJS for Nested Forms in Rails" and adding model called Position, which association with a Player (belongs_to). And how to implement select tag for choos...
Dmitrii Amelchenko replied
Solved

Setup MacOS 10.15 Catalina Discussion
15
General
GJ

See a list of videos I've completed?
3
Site Feedback
Does anyone know of a way to see a list of all the videos I've watched/marked completed? I frequently think "Shoot I saw that in one of the videos I watched, but which ones have I watched?" This ...
LorenzoJeremy replied

Hatchbox CLI
0
General
Hi Chris, when are you adding the CLI Feature like heroku one on hatchbox ?
Felender Hlungwani posted

Rails credentials returning nil
8
General
I have a Rails 6.0.0beta2 app and I'm having trouble reading my credentials.
When I do rails credentials:edit I can add credentials and they're saving just fine.
```
aws:
access_key_id: 123
s...
Valeriia Chavdar replied

Find By Short Code Discussion
0
General
Doesn't this still use the `set_link` code path at the end of the episode? We should be getting rid of that and adding
```
@link = Link.find(params[:id])
```
under the `show` method?
Gaurav Keswani posted

Debugging & Fixing a Bug in Rails 5.2 Active Storage Discussion
3
General
Great episode Chris! This really makes me want to dive into more source code, I admit that I'm always hesitant to do it
tech solver replied

Require Work Email Address on Registration Discussion
2
General
Thanks Chris! Pretty straightforward indeed.
Marc Köhlbrugge replied

How to include javascript node_modules dependencies in Rails Engine?
4
Rails
I'm working on fork of `simple_discussion` gem which is Rails Engine to extend the functionality of forum in the parent Rails application.
I'm adding Markdown support using SimpleMDE. I've thought...
crowdhamburger replied

Refactoring CSV Uploads with ActiveModel::Model Discussion
20
General
Awesome episode, Chris! Would be nice to continue with moving CSV parsing to a background job and adding ajax progress bar to provide visual feedback on import progress
Arthur Ariza replied

Webpack Bundle Analyzer Discussion
2
General
Cant wait for the split chunks episode!
Marc Köhlbrugge replied

Basic CMS: Allow users to add custom CSS
0
Rails
For an App I am building, the platform provides users with a unique subdomain, which they can customize the layout by adding Rows, which have various templates to choose from. I want to allow users...

Continuous Deployment with Rails & GitHub Actions Discussion
0
General
You can use `ruby/setup-ruby`'s `bundler-cache` feature to have it take care of installing your gems and caching it. Saves you from adding those steps yourself.
https://github.com/ruby/setup-ruby#...
Marc Köhlbrugge posted

Timestamp management with ActiveRecord::Events
1
Showcase
Hi guys!
I recently released a gem for managing timestamp fields in ActiveRecord models and I'm excited to share it with you.
By adding convenience methods on top of a `datetime` field, the gem a...
Lardius replied

How do I add Webpack config to Rails?
0
Rails
I'm following the installation guide of Vuetify and it requires me to add the following to `webpack.config.js` but since Rails has no such file, how should I go about adding these rules?
```
modul...

Lazy Requiring Dependencies in Ruby Discussion
9
General
I love removing dependencies. 💖
Also, learning how libraries can make features or dependencies optional is a great thing to learn along the way.
luna-dam replied