summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-09-02 17:50:42 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-09-02 17:50:42 -0700
commitd1280e5be2f45520df2da47498bc28d74dae5f5a (patch)
tree554beffa7ca2060bb957d3a4e1e6b818d16b64f0 /lib
parent2131a6a0d20542575e841a214c84075376c3ce68 (diff)
downloadcarton-d1280e5be2f45520df2da47498bc28d74dae5f5a.tar.gz
quote versions in example
Diffstat (limited to 'lib')
-rw-r--r--lib/Carton.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 86ed7d1..7221328 100644
--- a/lib/Carton.pm
+++ b/lib/Carton.pm
@@ -14,8 +14,8 @@ Carton - Perl module dependency manager (aka Bundler for Perl)
# On your development environment
> cat cpanfile
- requires 'Plack', 0.9980;
- requires 'Starman', 0.2000;
+ requires 'Plack', '0.9980';
+ requires 'Starman', '0.2000';
> carton install
> git add cpanfile cpanfile.snapshot
@@ -63,8 +63,8 @@ system.
You can manage the dependencies of your application via C<cpanfile>.
# cpanfile
- requires 'Plack', 0.9980;
- requires 'Starman', 0.2000;
+ requires 'Plack', '0.9980';
+ requires 'Starman', '0.2000';
And then you can install these dependencies via: