class Almicube::Bundler::WeeklyBundler

Public Class Methods

new(options={}) click to toggle source
Calls superclass method Almicube::Bundler::DaysAgoBundler::new
# File lib/almicube/bundler/weekly_bundler.rb, line 4
def initialize(options={})
  options[:range] = 7
  options[:name] = :weekly
  super(options)
end