File: distribution.rb

package info (click to toggle)
ruby-foreman 0.90.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 584 kB
  • sloc: ruby: 2,020; sh: 88; makefile: 8
file content (9 lines) | stat: -rw-r--r-- 196 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
module Foreman
  module Distribution
    def self.files
      Dir[File.expand_path("../../../{bin,data,lib}/**/*", __FILE__)].select do |file|
        File.file?(file)
      end
    end
  end
end