Class: Metior::Report::Default::Index
- Inherits:
-
View
- Object
- Mustache
- View
- Metior::Report::Default::Index
show all
- Defined in:
- reports/default/views/index.rb
Overview
Instance Method Summary
collapse
Methods inherited from View
inherited, #initialize, #method_missing, #render, #repository, requires, #respond_to?, #vcs_name
Methods included from ViewHelper
#count, #even_odd, #reset_count
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class Metior::Report::View
Instance Method Details
11
12
13
|
# File 'reports/default/views/index.rb', line 11
def meta_now
now.strftime('%FT%H:%M:%S%z').insert(-3, ':')
end
|
15
16
17
|
# File 'reports/default/views/index.rb', line 15
def now
Time.now
end
|
#repo_name ⇒ Object
19
20
21
|
# File 'reports/default/views/index.rb', line 19
def repo_name
repository.name.empty? ? repository.path : repository.name
end
|
23
24
25
|
# File 'reports/default/views/index.rb', line 23
def title
"Stats for #{repo_name}"
end
|
27
28
29
|
# File 'reports/default/views/index.rb', line 27
def version
Metior::VERSION
end
|