Skip to content

Instantly share code, notes, and snippets.

@jcosmo
Created June 25, 2019 03:26
Show Gist options
  • Select an option

  • Save jcosmo/45fcae562d790cb64fc113e1bd007261 to your computer and use it in GitHub Desktop.

Select an option

Save jcosmo/45fcae562d790cb64fc113e1bd007261 to your computer and use it in GitHub Desktop.

Revisions

  1. jcosmo created this gist Jun 25, 2019.
    6 changes: 6 additions & 0 deletions buildr_showdeps.rb
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    task 'showdeps' do
    raise 'Need to define ENV property DEP' unless ENV['DEP']
    Buildr.transitive(ENV['DEP']).each do |a|
    puts a.to_spec
    end
    end