Skip to content

Commit

Permalink
Fix urls, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gdonald committed Oct 3, 2019
1 parent 0af7b3c commit d95440c
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 29 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.idea
.precomp
blackjack.txt
12 changes: 12 additions & 0 deletions ConsoleBlackjack.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PERL6_MODULE_TYPE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/lib" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/bin" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/t" isTestSource="true" />
</content>
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
22 changes: 14 additions & 8 deletions META6.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,29 @@
{
"name": "Console::Blackjack",
"description": "Console Blackjack",
"version": "1.0.3",
"description": "Console Blackjack for Rakudo Perl 6",
"version": "1.0.4",
"perl": "6.d",
"auth": "github:gdonald",
"authors": ["Greg Donald"],
"authors": [
"Greg Donald"
],
"auth": "github:rakuist",
"depends": [],
"build-depends": [],
"test-depends": [],
"provides": {
"Console::Blackjack": "lib/Console/Blackjack.pm6",
"Console::Blackjack::Card": "lib/Console/Blackjack/Card.pm6",
"Console::Blackjack::DealerHand": "lib/Console/Blackjack/DealerHand.pm6",
"Console::Blackjack::Hand": "lib/Console/Blackjack/Hand.pm6",
"Console::Blackjack::PlayerHand": "lib/Console/Blackjack/PlayerHand.pm6",
"Console::Blackjack::DealerHand": "lib/Console/Blackjack/DealerHand.pm6",
"Console::Blackjack::Shoe": "lib/Console/Blackjack/Shoe.pm6"
},
"resources": [],
"license": "Artistic-2.0",
"source-url": "git://github.com/gdonald/Console-Blackjack.git",
"tags": ["Console", "Blackjack", "Game"]
}
"tags": [
"Console",
"Blackjack",
"Game"
],
"source-url": "git://github.com/rakuist/Console-Blackjack.git"
}
25 changes: 4 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
## Console-Blackjack

Console Blackjack written in Perl6
Console Blackjack written in Rakudo Perl 6

### Get Perl6

#### [https://perl6.org/](https://perl6.org/)

Console Blackjack does not work with Perl5 ☹

### Install Blackjack with zef:
### Install using zef:

```
$ zef update
$ zef install Console::Blackjack
```

Expand All @@ -21,23 +14,13 @@ $ zef install Console::Blackjack
$ console-blackjack
```

#### or

```
$ perl6
perl6> use Console::Blackjack
perl6> Console::Blackjack::Game.new
```

&nbsp;
#### Increase your terminal font size for a better view:

![Blackjack](https://raw.githubusercontent.com/gdonald/Console-Blackjack/master/bj.png)
![Blackjack](https://raw.githubusercontent.com/rakuist/Console-Blackjack/master/bj.png)

### Report Bugs

#### If you find any bugs or have other issues please [report them here](https://github.com/gdonald/Console-Blackjack/issues).
#### If you find any bugs or have other issues please [report them here](https://github.com/rakuist/Console-Blackjack/issues).

### License

Expand Down

0 comments on commit d95440c

Please sign in to comment.