3
4
5
6
7
8
9
10
|
# File 'lib/td/distribution.rb', line 3
def self.files
fs = Dir[File.expand_path("../../../{bin,data,lib}/**/*", __FILE__)].select do |file|
File.file?(file)
end
fs << File.expand_path("../../../Gemfile", __FILE__)
fs << File.expand_path("../../../td.gemspec", __FILE__)
fs
end
|