Changeset 23f39423df0831397ce16df00f088a26595234ae

Show
Ignore:
Timestamp:
07/10/07 22:47:58 (18 months ago)
Author:
Mark Guzman <segfault@…>
Parents:
25bdc8c7c17080761150f9271d244da73a23a19d
Children:
595f64a7766f13ce42643a7beb5801a16c85e103
git-committer:
Mark Guzman <segfault@hasno.info> / 2007-07-11T02:47:58Z+0000
Message:

added VERSION const

git-svn-id: svn://hasno.info/fastxml/trunk@10 b3082176-f867-4bde-be85-e3c57d66f029

Files:
2 modified

Legend:

Unmodified
Added
Removed
  • Rakefile

    r25bdc8 r23f394  
    1212 
    1313$: << './lib' 
     14$: << './ext' 
    1415require 'fastxml' 
    1516full_name = "FastXml" 
  • ext/fastxml.c

    rf4a170 r23f394  
    4646    xmlXPathInit(); 
    4747    VALUE rb_mFastXml = rb_define_module( "FastXml" ); 
     48    rb_define_const( rb_mFastXml, "VERSION", rb_str_new2( "0.1" ) ); 
    4849    rb_cFastXmlDoc = rb_define_class_under( rb_mFastXml, "Doc", rb_cObject );         
    4950    rb_cFastXmlNode = rb_define_class_under( rb_mFastXml, "Node", rb_cObject );