Class: Debci::HTML
- Inherits:
-
Object
show all
- Defined in:
- lib/debci/html.rb,
lib/debci/html/cli.rb
Defined Under Namespace
Classes: CLI, JSON, Rooted
Class Method Summary
collapse
Class Method Details
.update ⇒ Object
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/debci/html.rb', line 21
def update
Debci.config.suite_list.each do |suite|
Debci.config.arch_list.each do |arch|
json = Debci::HTML::JSON.new(suite, arch)
json.status
json.history
json.packages
end
end
end
|