konyak
konyak

Reputation: 11706

List Gems from Rails Console

From rails console, how can I list the loaded gems in my environment?

I am using Gemfile and Rails 5. I've searched around with no results.

Upvotes: 4

Views: 2185

Answers (1)

nickcamillo
nickcamillo

Reputation: 350

This post has a detailed explanation of what you seem to be asking for: List of installed gems?

Gem::Specification.all_names

Upvotes: 7

Related Questions