I'm learning RoR and I've completed a basic course where I made an application that interacts with a database to store user and other model object data.
Now I'd like to create a simple app where the user enters a keyword into a form, the app pulls info about that keyword from a third party api, and then displays the returned data to the user.
I don't need to persist any of the data for later use. I just want to display it immediately when the form is submitted? Can I create a model class that doesn't interact with the database?
As a disclosure, my understanding of persistance comes from iOS development. I need to persist data if the user needs access to that data in a future session. I don't quite yet understand how data can be stored on the web without a db temporarily for the current session.