Skip to content

Instantly share code, notes, and snippets.

@malavbhavsar
Created December 14, 2012 21:17
Show Gist options
  • Save malavbhavsar/4288742 to your computer and use it in GitHub Desktop.
Save malavbhavsar/4288742 to your computer and use it in GitHub Desktop.
Simple code to get the authors' names of the gems used in the project. You can use it to create the credit list or thank you slide.
#Run following command in 'rails console' REPL loop
Gem.loaded_specs.values.map {|gem| puts "#{gem.name} #{gem.version} #{gem.authors}"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment