Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warning #12

Merged
merged 4 commits into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@ jobs:
- name: Install Dependencies
run: |
zef install --/test --deps-only .
zef install --/test App::Prove6
- name: Run Tests
run: prove6 -l t
run: zef --debug install .
3 changes: 1 addition & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@ jobs:
- name: Install Dependencies
run: |
zef install --/test --deps-only .
zef install --/test App::Prove6
- name: Run Tests
run: prove6 -l t
run: zef --debug install .
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Revision history for Mi6-Helper

{{$NEXT}}
- Add warning about issue #11
- Use @ugexe's recommended test run line for linux and macos

0.11.1 2023-10-24T21:03:25-05:00
- Major improvements:
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@ NAME

**Mi6::Helper** - An aid for converting Raku modules to use **App::Mi6**

WARNING
========

There is a serious bug in the current version: it is unable to to correctly handle a desired module name with mixed '::' and hyphens ('-'). An issue has been filed, but, unless a user needs it soon, a fix will be delayed. A work-around is to manually make the necessary changes after the failure message. Please comment in the issue entry (#11) if a fix is important for your current project.

SYNOPSIS
========

use Mi6::Helper

$ mi6-helper new=Foo::Bar # uses the 'provides' text in hidden file
# '.Foo-Bar' (recommended method)

Expand Down
10 changes: 9 additions & 1 deletion docs/README.rakudoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,19 @@

B<Mi6::Helper> - An aid for converting Raku modules to use B<App::Mi6>

=head1 WARNING

There is a serious bug in the current version: it is
unable to to correctly handle a desired module name with
mixed '::' and hyphens ('-'). An issue has been filed, but, unless a
user needs it soon, a fix will be delayed. A work-around is to manually
make the necessary changes after the failure message. Please comment
in the issue entry (#11) if a fix is important for your current project.

=head1 SYNOPSIS

=begin code
use Mi6::Helper

$ mi6-helper new=Foo::Bar # uses the 'provides' text in hidden file
# '.Foo-Bar' (recommended method)
=end code
Expand Down
Loading