The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 04
META.json 33
META.yml 33
lib/Text/Haml.pm 33
t/filters.t 22
5 files changed (This is a version diff) 1115
@@ -1,5 +1,9 @@
 Revision history for perl module Text::Haml
 
+0.990115 2014-01-18T16:06:12Z
+
+    - Fix comment in :css filter (TheAthlete)
+
 0.990114 2013-12-20T09:47:23Z
 
     - correct behaviour when working with false and undefined values (Keedi Kim)
@@ -57,7 +57,7 @@
    "provides" : {
       "Text::Haml" : {
          "file" : "lib/Text/Haml.pm",
-         "version" : "0.990114"
+         "version" : "0.990115"
       }
    },
    "release_status" : "stable",
@@ -71,7 +71,7 @@
          "web" : "https://github.com/vti/text-haml"
       }
    },
-   "version" : "0.990114",
+   "version" : "0.990115",
    "x_contributors" : [
       "enosis <enosis@github.com>",
       "rightgo09 <skyarrow09@gmail.com>",
@@ -82,8 +82,8 @@
       "Neil Bowers <neil@bowers.com>",
       "Evgenni Grishkovelli <grishkovelli@gmail.com>",
       "Hyungsuk Hong <aanoaa@gmail.com>",
-      "TheAthlete <theathlet@yandex.ru>",
       "Keedi Kim <keedi.k@gmail.com>",
+      "TheAthlete <theathlet@yandex.ru>",
       "Viacheslav Tykhanovskyi <viacheslav.t@gmail.com>"
    ]
 }
@@ -27,7 +27,7 @@ no_index:
 provides:
   Text::Haml:
     file: lib/Text/Haml.pm
-    version: 0.990114
+    version: 0.990115
 requires:
   Carp: 0
   Data::Section::Simple: 0
@@ -41,7 +41,7 @@ resources:
   bugtracker: https://github.com/vti/text-haml/issues
   homepage: https://github.com/vti/text-haml
   repository: git://github.com/vti/text-haml.git
-version: 0.990114
+version: 0.990115
 x_contributors:
   - 'enosis <enosis@github.com>'
   - 'rightgo09 <skyarrow09@gmail.com>'
@@ -52,6 +52,6 @@ x_contributors:
   - 'Neil Bowers <neil@bowers.com>'
   - 'Evgenni Grishkovelli <grishkovelli@gmail.com>'
   - 'Hyungsuk Hong <aanoaa@gmail.com>'
-  - 'TheAthlete <theathlet@yandex.ru>'
   - 'Keedi Kim <keedi.k@gmail.com>'
+  - 'TheAthlete <theathlet@yandex.ru>'
   - 'Viacheslav Tykhanovskyi <viacheslav.t@gmail.com>'
@@ -12,7 +12,7 @@ use File::Basename ();
 use URI::Escape ();
 use Digest::MD5;
 
-our $VERSION = '0.990114';
+our $VERSION = '0.990115';
 
 use constant CHUNK_SIZE => 4096;
 
@@ -112,9 +112,9 @@ EOF
         },
         css => sub {
             "<style type='text/css'>\n"
-              . "  //<![CDATA[\n"
+              . "  /*<![CDATA[*/\n"
               . "    $_[0]\n"
-              . "  //]]>\n"
+              . "  /*]]>*/\n"
               . "</style>";
         },
     };
@@ -65,12 +65,12 @@ $output = $haml->render(<<'EOF');
 EOF
 is($output, <<'EOF');
 <style type='text/css'>
-  //<![CDATA[
+  /*<![CDATA[*/
     #paragraph1 {
 margin: 0;
 padding: 0;
 }
-  //]]>
+  /*]]>*/
 </style>
 <p></p>
 EOF