Class: Redmine::Scm::Adapters::Entry
- Inherits:
-
Object
- Object
- Redmine::Scm::Adapters::Entry
- Defined in:
- lib/redmine/scm/adapters/abstract_adapter.rb
Instance Attribute Summary (collapse)
-
- (Object) kind
Returns the value of attribute kind.
-
- (Object) lastrev
Returns the value of attribute lastrev.
-
- (Object) name
Returns the value of attribute name.
-
- (Object) path
Returns the value of attribute path.
-
- (Object) size
Returns the value of attribute size.
Instance Method Summary (collapse)
-
- (Entry) initialize(attributes = {})
constructor
A new instance of Entry.
- - (Boolean) is_dir?
- - (Boolean) is_file?
- - (Boolean) is_text?
Constructor Details
- (Entry) initialize(attributes = {})
A new instance of Entry
228 229 230 231 232 233 234 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 228 def initialize(attributes={}) self.name = attributes[:name] if attributes[:name] self.path = attributes[:path] if attributes[:path] self.kind = attributes[:kind] if attributes[:kind] self.size = attributes[:size].to_i if attributes[:size] self.lastrev = attributes[:lastrev] end |
Instance Attribute Details
- (Object) kind
Returns the value of attribute kind
227 228 229 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 227 def kind @kind end |
- (Object) lastrev
Returns the value of attribute lastrev
227 228 229 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 227 def lastrev @lastrev end |
- (Object) name
Returns the value of attribute name
227 228 229 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 227 def name @name end |
- (Object) path
Returns the value of attribute path
227 228 229 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 227 def path @path end |
- (Object) size
Returns the value of attribute size
227 228 229 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 227 def size @size end |
Instance Method Details
- (Boolean) is_dir?
240 241 242 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 240 def is_dir? 'dir' == self.kind end |
- (Boolean) is_file?
236 237 238 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 236 def is_file? 'file' == self.kind end |
- (Boolean) is_text?
244 245 246 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 244 def is_text? Redmine::MimeType.is_type?('text', name) end |