Activity
I just updated this lesson for Omniauth 2.0. 👍
This episode has been updated for Omniauth 2.0. 👍
Two options that come to mind are:
- Have the link go through your Rails app, track the click, and then redirect to the URL (also get to hide the URL this way)
- Use Javascript to record the event on click (you could use Google Analytics, Mixpanel, Ahoy, etc)
Posted in how to unsubscribe?
You can cancel your subscription in the Billing section of your account.
Using RVM is just fine! Don't worry about switching to rbenv if you're already on RVM.
Post this on the Pay issues. 👍
The timing widget on the page is Rack Mini Profiler: https://github.com/MiniProfiler/rack-mini-profiler
You can query the database if you are using the database delivery method.
Turbo:load runs when a page loads, not a frame. It's the same as the old turbolinks event. Frames are independent from page views which means you need to setup a Stimulus controller instead.
Check out stimulus-flatpickr and you won't have to build anything. 👍
No screencast yet, but their readme is pretty well documented. 👍
Posted in Rails 6 basics issue
Rails comes with the webdrivers gem now and you should use that now. It makes things a lot easier. In fact, there's nothing you have to setup other than just installing the gem (unless you want to customize it).
Posted in get data from once working db
You can run rails db:migrate
to run all the migrations in the db/migrate
folder. That will make sure all your database tables are created. It won't restore any data, just the tables and columns though.
rails db:seed
will populate the database with example records (assuming there is code to create records in db/seeds.rb
. 👍
Upgrading from 4.2 to 5.2 to 6.1 would certainly give you some thorough testing of the changes and would be a bit less daunting.
You can probably upgrade straight to 6.1, but you'll want to go through all the upgrade notes to make sure you know of all the changes between. Things like belongs_to being required by default might catch you off guard if you skip straight to the latest version and miss that in the Rails 5 release notes. 😅
Hey Daniel,
There's a concept called OEmbed that was designed to let services define their own embed codes. You just give their site the URL you want to embed and then send you JSON back on how to embed it.
There's a Ruby library for it that is pretty useful: https://github.com/ruby-oembed/ruby-oembed
This is the approach I'm using on Jumpstart Pro to provide embed codes in ActionText.
Posted in RSpec w/capybara vs Mini Test
@sweedledee there's not a lot of good examples out there! I did a lot of the Testing Rails series in Minitest which is a start. The Rails test suite is where I learned a good bit if you feel like digging through the repository.
I bought betterminitest.com to document common use cases and need to start putting that site together!
That was the first thing I did when I added Noticed to JumpstartRails.com :)
Conceptually all you need to do is:
- Add a dropdown for notifications
- Setup notifications to use Database + Websocket delivery methods
- Have Javascript listen to the websocket and insert the notification when a new one is received
- Add the red dot to the HTML
- Remove the red dot when opening the dropdown
If I'm looking for the template from a brand new Rails app, I'll actually open the github repo for Rails and find the template in there.
And I imagine you'd get answers quickest on StackOverflow. I always forget about the Rails discourse. I need to poke around on there more regularly.
Don't forget the GoRails slack if you're a subscriber! There's always people around to help there.
I spent a lot of time just reading source code for Rails and trying to apply those approaches to my own code.
Most of the deep knowledge is just Ruby, not Rails. I should mention, I made a course last year that digs into all these things that I wish I knew about Ruby when I was learning Rails. Explains a lot of approaches that you'll see in gems like Rails. Took me years to learn all this stuff, so I thought it'd be good to put it into a course. Might be worth checking out. https://courses.gorails.com/advanced-ruby-for-rails-devs
Posted in Multiple user types App design
Generally, the easiest is use 1 Devise model and separate models for the type of user. That way everyone uses the same sign in page.
What glitches are you referring to?
Ruby 2.7 and Rails 6.1 are probably the best to go with for now I'd say.