Module: Redmine::Scm::Adapters::ScmData
- Defined in:
- lib/redmine/scm/adapters/abstract_adapter.rb
Class Method Summary collapse
Class Method Details
.binary?(data) ⇒ Boolean
442 443 444 445 446 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 442 def self.binary?(data) unless data.empty? data.index("\x00") || data.count("\x00-\x1f\x7f", "^\t\r\n").fdiv(data.size) > 0.1 end end |