Skip to content

Commit

Permalink
remove unnecessary module scopes
Browse files Browse the repository at this point in the history
  • Loading branch information
teeparham committed May 24, 2013
1 parent cf34109 commit 2fefbb4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/von/counters/best.rb
@@ -1,7 +1,7 @@
module Von
module Counters
class Best
include Von::Counters::Commands
include Commands

def initialize(field, periods = nil)
@field = field.to_sym
Expand Down
2 changes: 1 addition & 1 deletion lib/von/counters/current.rb
@@ -1,7 +1,7 @@
module Von
module Counters
class Current
include Von::Counters::Commands
include Commands

# Initialize a new Counter
#
Expand Down
2 changes: 1 addition & 1 deletion lib/von/counters/period.rb
@@ -1,7 +1,7 @@
module Von
module Counters
class Period
include Von::Counters::Commands
include Commands

def initialize(field, periods = nil)
@field = field.to_sym
Expand Down
3 changes: 2 additions & 1 deletion lib/von/counters/total.rb
@@ -1,7 +1,8 @@
module Von
module Counters
class Total
include Von::Counters::Commands
include Commands

attr_reader :field

# Initialize a new Counter
Expand Down

0 comments on commit 2fefbb4

Please sign in to comment.