Skip to content

Instantly share code, notes, and snippets.

View dylanahsmith's full-sized avatar

Dylan Thacker-Smith dylanahsmith

  • Quebec
  • 08:27 (UTC -04:00)
View GitHub Profile
@dylanahsmith
dylanahsmith / bundle-ctags
Last active December 22, 2021 21:05 — forked from burke/ctags.sh
bundle-ctags
#!/usr/bin/env ruby
bundle_list_paths = `bundle list --paths`
unless $?.success?
print bundle_list_paths
exit 1
end
gem_paths = bundle_list_paths.split.map do |path|
File.join(path, 'lib')
end.select do |path|