diff --git a/.circleci/config.yml b/.circleci/config.yml index f9a7eab..59d972b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -84,7 +84,7 @@ jobs: - restore_repo - restore_global_deps - restore_deps - - run: ./bin/runner.sh Generators::Atok Kaomojic ./dist/atok/ かお + - run: ./bin/runner.sh Generators::Atok Kaomojic ./dist/atok/ - save_cache: paths: - ./dist/atok @@ -96,7 +96,7 @@ jobs: - restore_repo - restore_global_deps - restore_deps - - run: ./bin/runner.sh Generators::Google Kaomojic ./dist/google-ime/ かお + - run: ./bin/runner.sh Generators::Google Kaomojic ./dist/google-ime/ - save_cache: paths: - ./dist/google-ime diff --git a/lib/Kaomojic/Tasks/Generators/Atok.pm b/lib/Kaomojic/Tasks/Generators/Atok.pm index 8c43495..6b10608 100644 --- a/lib/Kaomojic/Tasks/Generators/Atok.pm +++ b/lib/Kaomojic/Tasks/Generators/Atok.pm @@ -11,7 +11,7 @@ sub run { state $v; $v //= Data::Validator->new( fixture => { isa => 'Str' }, dist => { isa => 'Str' }, - aliased => { isa => 'Str', default => '' }, + aliased => { isa => 'Str', default => 'かお' }, )->with(qw/Method StrictSequenced/); my ($class, $args) = $v->validate(@_); my ($fixture, $dist, $aliased) = @$args{qw/fixture dist aliased/}; @@ -63,6 +63,6 @@ sub run { =head1 SYNOPSIS ./bin/runner.sh Generators::Atok Kaomojic ./dist/atok/kaomojic.txt - ./bin/runner.sh Generators::Atok Kaomojic ./dist/atok/default.txt かお + ./bin/runner.sh Generators::Atok Kaomojic ./dist/atok/default.txt alias =cut diff --git a/lib/Kaomojic/Tasks/Generators/Google.pm b/lib/Kaomojic/Tasks/Generators/Google.pm index 2e9b91b..d3b4e30 100644 --- a/lib/Kaomojic/Tasks/Generators/Google.pm +++ b/lib/Kaomojic/Tasks/Generators/Google.pm @@ -10,7 +10,7 @@ sub run { state $v; $v //= Data::Validator->new( fixture => { isa => 'Str' }, dist => { isa => 'Str' }, - aliased => { isa => 'Str', default => '' }, + aliased => { isa => 'Str', default => 'かお' }, )->with(qw/Method StrictSequenced/); my ($class, $args) = $v->validate(@_); my ($fixture, $dist, $aliased) = @$args{qw/fixture dist aliased/}; @@ -51,6 +51,6 @@ sub run { =head1 SYNOPSIS ./bin/runner.sh Generators::Google Kaomojic ./dist/google-ime/ - ./bin/runner.sh Generators::Google Kaomojic ./dist/google-ime/ かお + ./bin/runner.sh Generators::Google Kaomojic ./dist/google-ime/ alias =cut