Class: Almicube::Bundler::WeeklyBundler

Inherits:
DaysAgoBundler show all
Defined in:
lib/almicube/bundler/weekly_bundler.rb

Instance Attribute Summary

Attributes inherited from DaysAgoBundler

#range

Attributes inherited from Base

#name

Attributes included from Cog

#ranking

Instance Method Summary collapse

Methods inherited from DaysAgoBundler

#keys

Methods inherited from Base

#keys

Methods included from Cog

#active?, #after_aggregate, #before_aggregate

Constructor Details

#initialize(options = {}) ⇒ WeeklyBundler

Returns a new instance of WeeklyBundler.



4
5
6
7
8
# File 'lib/almicube/bundler/weekly_bundler.rb', line 4

def initialize(options={})
  options[:range] = 7
  options[:name] = :weekly
  super(options)
end