Method: PodBuilder.gitignoredfiles
- Defined in:
- lib/pod_builder/core.rb
.gitignoredfiles ⇒ Object
53 54 55 56 57 |
# File 'lib/pod_builder/core.rb', line 53 def self.gitignoredfiles Dir.chdir(git_rootpath) do return `git status --ignored -s | grep "^\!\!" | cut -c4-`.strip().split("\n") end end |