Skip to content

Commit

Permalink
Put one element in one line for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jul 23, 2014
1 parent 7743ee4 commit 92710dd
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions lib/groonga/query-log/analyzer/reporter/console.rb
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2011-2013 Kouhei Sutou <kou@clear-code.com>
# Copyright (C) 2011-2014 Kouhei Sutou <kou@clear-code.com>
# Copyright (C) 2012 Haruka Yoshihara <yoshihara@clear-code.com>
#
# This library is free software; you can redistribute it and/or
Expand All @@ -24,8 +24,16 @@ module QueryLog
class Analyzer
class ConsoleReporter < Reporter
class Color
NAMES = ["black", "red", "green", "yellow",
"blue", "magenta", "cyan", "white"]
NAMES = [
"black",
"red",
"green",
"yellow",
"blue",
"magenta",
"cyan",
"white",
]

attr_reader :name
def initialize(name, options={})
Expand Down

0 comments on commit 92710dd

Please sign in to comment.