Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.02.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index cd7e5a2..e3611e1 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,12 @@ Revision history for Perl extension Locale-Maketext-Lexicon-Properties

 {{$NEXT}}

+0.02 2014-02-02T10:51:24Z
+
+    - Allow to use whitespace which are on the both sides of
+      the delimiter and beginning of line
+    - Improve documentations
+
 0.01 2014-02-01T11:41:28Z

     - original version
  • Loading branch information
moznion committed Feb 2, 2014
1 parent 0e814c7 commit 3ed73f3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ Revision history for Perl extension Locale-Maketext-Lexicon-Properties

{{$NEXT}}

0.02 2014-02-02T10:51:24Z

- Allow to use whitespace which are on the both sides of
the delimiter and beginning of line
- Improve documentations

0.01 2014-02-01T11:41:28Z

- original version
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"web" : "https://github.com/moznion/Locale-Maketext-Lexicon-Properties"
}
},
"version" : "0.01",
"version" : "0.02",
"x_contributors" : [
"moznion <moznion@gmail.com>"
]
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,14 @@ Directly calling `Locale::Maketext::Lexicon::Properties::parse()`:

# DESCRIPTION

This module parses .properties file (from Java) for [Locale::Maketext](https://metacpan.org/pod/Locale::Maketext) by using [Locale::Maketext::Lexicon](https://metacpan.org/pod/Locale::Maketext::Lexicon). And it can also returns a Lexicon hash.
This module parses the properties file (from Java) for [Locale::Maketext](https://metacpan.org/pod/Locale::Maketext) by using [Locale::Maketext::Lexicon](https://metacpan.org/pod/Locale::Maketext::Lexicon). And it can also return a Lexicon hash.

You can lookup the property value by specifying key to `maketext()` or Lexcon hash.
You are able to look up the property value by specifying key to `maketext()` or Lexcon hash.

# NOTES

Properties file can use colon (:) as delimiter as an alternative to equal (=), however this module cannot.
And properties file allows multi-line property, but this module cannot handle it.

# SEE ALSO

Expand Down
2 changes: 1 addition & 1 deletion lib/Locale/Maketext/Lexicon/Properties.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use utf8;
use Encode ();
use Locale::Maketext::Lexicon;

our $VERSION = "0.01";
our $VERSION = "0.02";

sub parse {
my $self = shift;
Expand Down

0 comments on commit 3ed73f3

Please sign in to comment.