15 Nov, 2015

1 commit


04 Nov, 2015

3 commits


20 Oct, 2015

1 commit


12 Oct, 2015

3 commits


21 Mar, 2013

1 commit

  • <var> tags with blank values were ending up completely wrong in the
    resulting hash.
    
    This: (a user with a blank name)
        <var key="user">
           <var key="id">123</var>
           <var key="name"/>
        </var>
    
    Gets parsed by hoptoad_notifier into this:
        {
           'key' => 'user',
           'var' => [{
                 'key' => 'id',
                 '__content__' => '123'
              },{
                 'key' => 'name'
              }]
        }
    
    Which when passed through the "rekey" method, ended up like this:
        {
           'user' => {
              'id' => '123',
              'key' => 'name' # bad and wrong
           }
        }
    
    Now, after these changes, it correctly comes through as:
        {
           'user' => {
              'id' => '123',
              'name' => nil # much better!
           }
        }
    Daniel Beardsley
     

06 Mar, 2013

1 commit


28 Jan, 2013

1 commit


11 Sep, 2012

1 commit


30 May, 2012

1 commit


28 May, 2012

2 commits


01 Feb, 2012

1 commit


26 Sep, 2011

1 commit


05 Sep, 2011

1 commit