- actionmailer
- actionpack
- activeresource
- activesupport
I have a basic scaffolded CRUD app that uses ActiveRecord to connect to a SQLite database and I have frozen my Rails gems.
Which of these gems could I delete without affecting my app?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
ActionMailer can go if you’ll never use e-mail, and ActiveResource is just a more REST-ful API to Rails than ActiveRecord is. You’ll need the rest:
But more importantly, why do you need to delete the gems? It’s not like they take up a lot of space.