Sha256: ff843da9245731bf03d80cb6a672b791562aa0ca9bfa90e25b2808bdd26302e9

Contents?: true

Size: 1.01 KB

Versions: 2

Compression:

Stored size: 1.01 KB

Contents

#!/usr/bin/ruby

#    Copyright (c) 2007, Lin Jen-Shinˇ]a.k.a. godfat Żu±`ˇ^
#
#    Licensed under the Apache License, Version 2.0 (the "License");
#    you may not use this file except in compliance with the License.
#    You may obtain a copy of the License at
#
#        http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.

def require_ludy target = nil
  if target
    require(File.join(File.dirname(__FILE__), 'ludy', target))
  else
    require_all_in_dir __FILE__, 'ludy'
  end
end

def require_all_in_dir target_file, *dirs
  dir = File.join(File.dirname(target_file), *dirs)
  Dir.foreach(dir){ |f|
    next unless f =~ /.rb$/
    require(File.join(dir, f))
  }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ludy-0.0.1 lib/ludy.rb
ludy-0.0.2 lib/ludy.rb