Moderizing dev environment.
- Use rake-deveiate. - Fixes for README - Add History, break out Manifest - Remove keyword expansion constant REVISION - Use current Configurability APIs instead of the (now ancient) methods - Whitespace changes FossilOrigin-Name: a778fb275af99a238d9d2311cc601c58adf80e28bd68a37e06acdfb6efeb018d
This commit is contained in:
parent
07c927e13a
commit
2682000224
18 changed files with 210 additions and 227 deletions
|
|
@ -239,7 +239,7 @@ class Symphony::Metronome::IntervalExpression
|
|||
### an expression was generated, you can 'reconstitute' an interval
|
||||
### object this way.
|
||||
###
|
||||
def self::parse( exp, time=nil )
|
||||
def self::parse( exp, time=Time.now )
|
||||
|
||||
# Normalize the expression before parsing
|
||||
#
|
||||
|
|
@ -250,7 +250,7 @@ class Symphony::Metronome::IntervalExpression
|
|||
gsub( /([:\-])+/, '\1' ). # collapse multiple - or : chars
|
||||
gsub( /\.+$/, '' ) # trailing periods
|
||||
|
||||
event = new( exp, time || Time.now )
|
||||
event = new( exp, time )
|
||||
data = event.instance_variable_get( :@data )
|
||||
|
||||
# Ragel interface variables
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue