summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2018-04-22 13:25:22 +0200
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2018-04-22 13:25:22 +0200
commit145e84b23ecf93f19749f40f619c094da7469f9f (patch)
tree4dd42b32226d95c0882bfd9d5fdd8c657cd90f75
parentb83bc2a22315c35fcd124e1ca649b633738cc9ac (diff)
downloadcarton-145e84b23ecf93f19749f40f619c094da7469f9f.tar.gz
use == in doc for pinning
-rw-r--r--lib/Carton.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Carton.pm b/lib/Carton.pm
index e7d03e8..6c240c3 100644
--- a/lib/Carton.pm
+++ b/lib/Carton.pm
@@ -89,16 +89,16 @@ You can pin a module resolution to a specific distribution using a
combination of C<dist>, C<mirror> and C<url> options in C<cpanfile>.
# specific distribution on PAUSE
- requires 'Plack', '0.9980',
+ requires 'Plack', '== 0.9980',
dist => 'MIYAGAWA/Plack-0.9980.tar.gz';
# local mirror (darkpan)
- requires 'Plack', '0.9981',
+ requires 'Plack', '== 0.9981',
dist => 'MYCOMPANY/Plack-0.9981-p1.tar.gz',
mirror => 'https://pause.local/';
# URL
- requires 'Plack', '1.1000',
+ requires 'Plack', '== 1.1000',
url => 'https://pause.local/authors/id/M/MY/MYCOMPANY/Plack-1.1000.tar.gz';
=head2 Deploying your application