Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tags format #1180

Merged
merged 1 commit into from
Apr 27, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions app/helpers/container_build_helper/textual_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ def textual_group_relationships
end

def textual_group_smart_management
items = %w(tags)
i = items.collect { |m| send("textual_#{m}") }.flatten.compact
TextualTags.new(_("Smart Management"), i)
TextualTags.new(_("Smart Management"), %i(tags))
end

def textual_group_build_instances
Expand Down
4 changes: 1 addition & 3 deletions app/helpers/container_group_helper/textual_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ def textual_group_conditions
end

def textual_group_smart_management
items = %w(tags)
i = items.collect { |m| send("textual_#{m}") }.flatten.compact
TextualTags.new(_("Smart Management"), i)
TextualTags.new(_("Smart Management"), %i(tags))
end

@@key_dictionary = [
Expand Down
4 changes: 1 addition & 3 deletions app/helpers/container_helper/textual_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ def textual_group_relationships
end

def textual_group_smart_management
items = %w(tags)
i = items.collect { |m| send("textual_#{m}") }.flatten.compact
TextualTags.new(_("Smart Management"), i)
TextualTags.new(_("Smart Management"), %i(tags))
end

#
Expand Down
4 changes: 1 addition & 3 deletions app/helpers/container_image_helper/textual_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ def textual_group_configuration
end

def textual_group_smart_management
items = %w(tags)
i = items.collect { |m| send("textual_#{m}") }.flatten.compact
TextualTags.new(_("Smart Management"), i)
TextualTags.new(_("Smart Management"), %i(tags))
end

def textual_group_openscap_failed_rules
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ def textual_group_relationships
end

def textual_group_smart_management
items = %w(tags)
i = items.collect { |m| send("textual_#{m}") }.flatten.compact
TextualGroup.new(_("Smart Management"), i)
TextualTags.new(_("Smart Management"), %i(tags))
end

#
Expand Down
4 changes: 1 addition & 3 deletions app/helpers/container_node_helper/textual_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ def textual_group_conditions
end

def textual_group_smart_management
items = %w(tags)
i = items.collect { |m| send("textual_#{m}") }.flatten.compact
TextualGroup.new(_("Smart Management"), i)
TextualTags.new(_("Smart Management"), %i(tags))
end

#
Expand Down
4 changes: 1 addition & 3 deletions app/helpers/container_project_helper/textual_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ def textual_group_relationships
end

def textual_group_smart_management
items = %w(tags)
i = items.collect { |m| send("textual_#{m}") }.flatten.compact
TextualTags.new(_("Smart Management"), i)
TextualTags.new(_("Smart Management"), %i(tags))
end

def textual_group_quota
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ def textual_group_relationships
end

def textual_group_smart_management
items = %w(tags)
i = items.collect { |m| send("textual_#{m}") }.flatten.compact
TextualTags.new(_("Smart Management"), i)
TextualTags.new(_("Smart Management"), %i(tags))
end

#
Expand Down
4 changes: 1 addition & 3 deletions app/helpers/container_route_helper/textual_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ def textual_group_relationships
end

def textual_group_smart_management
items = %w(tags)
i = items.collect { |m| send("textual_#{m}") }.flatten.compact
TextualGroup.new(_("Smart Management"), i)
TextualTags.new(_("Smart Management"), %i(tags))
end

#
Expand Down
4 changes: 1 addition & 3 deletions app/helpers/container_service_helper/textual_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ def textual_group_relationships
end

def textual_group_smart_management
items = %w(tags)
i = items.collect { |m| send("textual_#{m}") }.flatten.compact
TextualGroup.new(_("Smart Management"), i)
TextualTags.new(_("Smart Management"), %i(tags))
end

#
Expand Down
4 changes: 1 addition & 3 deletions app/helpers/container_template_helper/textual_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ def textual_group_relationships
end

def textual_group_smart_management
items = %w(tags)
i = items.collect { |m| send("textual_#{m}") }.flatten.compact
TextualGroup.new(_("Smart Management"), i)
TextualTags.new(_("Smart Management"), %i(tags))
end

def textual_group_objects
Expand Down
4 changes: 1 addition & 3 deletions app/helpers/persistent_volume_helper/textual_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ def textual_group_relationships
end

def textual_group_smart_management
items = %w(tags)
i = items.collect { |m| send("textual_#{m}") }.flatten.compact
TextualTags.new(_("Smart Management"), i)
TextualTags.new(_("Smart Management"), %i(tags))
end

def textual_group_capacity
Expand Down