Class: Pathname
- Inherits:
-
Object
- Object
- Pathname
- Defined in:
- lib/cocoapods.rb
Instance Method Summary collapse
Instance Method Details
#glob(pattern = '') ⇒ Object
31 32 33 |
# File 'lib/cocoapods.rb', line 31 def glob(pattern = '') Dir.glob((self + pattern).to_s).map { |f| Pathname.new(f) } end |