Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
John Crepezzi committed Mar 30, 2010
1 parent d5b96d1 commit bd07c47
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions lib/ice_cube.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,18 @@
require 'ice_cube/schedule'
require 'ice_cube/rule_occurrence'

autoload :DailyRule, 'ice_cube/rules/daily_rule'
autoload :WeeklyRule, 'ice_cube/rules/weekly_rule'
autoload :MonthlyRule, 'ice_cube/rules/monthly_rule'
autoload :YearlyRule, 'ice_cube/rules/yearly_rule'

autoload :HourlyRule, 'ice_cube/rules/hourly_rule'
autoload :MinutelyRule, 'ice_cube/rules/minutely_rule'
autoload :SecondlyRule, 'ice_cube/rules/secondly_rule'

module IceCube
VERSION = '0.1'

autoload :DailyRule, 'ice_cube/rules/daily_rule'
autoload :WeeklyRule, 'ice_cube/rules/weekly_rule'
autoload :MonthlyRule, 'ice_cube/rules/monthly_rule'
autoload :YearlyRule, 'ice_cube/rules/yearly_rule'

autoload :HourlyRule, 'ice_cube/rules/hourly_rule'
autoload :MinutelyRule, 'ice_cube/rules/minutely_rule'
autoload :SecondlyRule, 'ice_cube/rules/secondly_rule'

VERSION = '0.2'

ONE_DAY = 24 * 60 * 60
ONE_HOUR = 60 * 60
Expand All @@ -39,4 +40,5 @@ module IceCube
:september => 9, :october => 10, :november => 11, :december => 12 }

include TimeUtil

end

0 comments on commit bd07c47

Please sign in to comment.