Skip to content

Instantly share code, notes, and snippets.

@robdbirch
Created December 2, 2013 18:33
Show Gist options
  • Save robdbirch/7754554 to your computer and use it in GitHub Desktop.
Save robdbirch/7754554 to your computer and use it in GitHub Desktop.
#Detecting Native Gems
#Gems using native libraries can be detected through a Gemfile.lock file.
bundle exec ruby -e 'puts Gem.loaded_specs.values.select{ |i| !i.extensions.empty? }.map{ |i| i.name }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment