Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Side by Side Diff: src/site/docs/pub-package-manager/pubspec.markdown

Issue 10891023: add a name: and mark it as required (Closed) Base URL: git@github.com:dart-lang/dartlang.org.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 --- 1 ---
2 layout: default 2 layout: default
3 title: "Pub: What is a Pubspec?" 3 title: "Pub: What is a Pubspec?"
4 description: "More details about the pubspec format and contents." 4 description: "More details about the pubspec format and contents."
5 has-permalinks: true 5 has-permalinks: true
6 --- 6 ---
7 7
8 # {{ page.title }} 8 # {{ page.title }}
9 9
10 Every pub package needs some metadata so it can specify its dependencies. Pub 10 Every pub package needs some metadata so it can specify its dependencies. Pub
(...skipping 11 matching lines...) Expand all
22 Have you been turned into a newt? Would you like to be? This 22 Have you been turned into a newt? Would you like to be? This
23 package can help: it has all of the newt-transmogrification 23 package can help: it has all of the newt-transmogrification
24 functionality you've been looking for. 24 functionality you've been looking for.
25 dependencies: 25 dependencies:
26 efts: '>=2.0.4 <3.0.0' 26 efts: '>=2.0.4 <3.0.0'
27 transmogrify: '>=0.4.0' 27 transmogrify: '>=0.4.0'
28 {% endhighlight %} 28 {% endhighlight %}
29 29
30 ## Name 30 ## Name
31 31
32 Every package needs a name. When your stellar code gets props on the world 32 **Required**: every package needs a name. When your stellar code gets props on t he world
Bob Nystrom 2012/08/29 17:47:32 This seems a bit ugly to me. Is it really necessar
sethladd 2012/08/29 19:49:18 I care less about how we format this, but when I l
Bob Nystrom 2012/08/29 19:53:50 Right now, there are only three fields, and one of
sethladd 2012/08/29 20:01:41 I changed it a bit in the latest patch. I think a
33 stage, this is what they'll be hollering. Also, it's how other packages will 33 stage, this is what they'll be hollering. Also, it's how other packages will
34 refer to yours, and how it will appear on [pub.dartlang.org][pubsite], should 34 refer to yours, and how it will appear on [pub.dartlang.org][pubsite], should
35 you publish it. 35 you publish it.
36 36
37 It should be all lowercase, with underscores to separate words, 37 It should be all lowercase, with underscores to separate words,
38 `just_like_this`. Stick with basic Latin letters and Arabic digits: 38 `just_like_this`. Stick with basic Latin letters and Arabic digits:
39 `[a-z0-9_]` and ensure that it's a valid Dart identifier (i.e. doesn't start 39 `[a-z0-9_]` and ensure that it's a valid Dart identifier (i.e. doesn't start
40 with digits and isn't a reserved word). 40 with digits and isn't a reserved word).
41 41
42 Try to pick a name that is clear, terse, and not already in use. A quick search 42 Try to pick a name that is clear, terse, and not already in use. A quick search
43 on [pub.dartlang.org][pubsite] to make sure nothing else is using your name can 43 on [pub.dartlang.org][pubsite] to make sure nothing else is using your name can
44 save you heartache later. 44 save you heartache later.
45 45
46 ## Version 46 ## Version
47 47
48 Every package has a version. No one really gets excited about versioning, but 48 Every package has a version. A version number is required to host your package o n
Bob Nystrom 2012/08/29 17:47:32 Long line.
sethladd 2012/08/29 19:49:18 Done.
49 [pub.dartlang.org][pubsite], but can be omitted for local-only packages. If you
50 omit it, your package is implicitly versioned `0.0.0`.
51
52 No one really gets excited about versioning, but
49 it's a necessary evil for reusing code while letting it evolve quickly. A 53 it's a necessary evil for reusing code while letting it evolve quickly. A
50 version number is three numbers separated by dots, like `0.2.43`. It can also 54 version number is three numbers separated by dots, like `0.2.43`. It can also
51 optionally have a build (`+hotfix.oopsie`) or pre-release (`-alpha.12`) suffix. 55 optionally have a build (`+hotfix.oopsie`) or pre-release (`-alpha.12`) suffix.
52 56
53 Each time you publish your package, you will publish it at a specific version. 57 Each time you publish your package, you will publish it at a specific version.
54 Once that's been done, consider it hermetically sealed: you can't touch it 58 Once that's been done, consider it hermetically sealed: you can't touch it
55 anymore. To make more changes, you'll need a new version. 59 anymore. To make more changes, you'll need a new version.
56 60
57 When you select a version, follow [semantic versioning][]. When you do, the 61 When you select a version, follow [semantic versioning][]. When you do, the
58 clouds will part and sunshine will pour into your soul. If you don't, prepare 62 clouds will part and sunshine will pour into your soul. If you don't, prepare
59 yourself for hordes of angry users. 63 yourself for hordes of angry users.
60 64
61 [semantic versioning]: http://semver.org 65 [semantic versioning]: http://semver.org
62 66
63 A version number is required to host your package on
64 [pub.dartlang.org][pubsite], but can be omitted for local-only packages. If you
65 omit it, your package is implicitly versioned `0.0.0`.
66
67 ## Description 67 ## Description
68 68
69 This is optional for your own personal packages, but if you intend to share 69 This is optional for your own personal packages, but if you intend to share
70 your package with the world (and you should because, let's be honest with 70 your package with the world (and you should because, let's be honest with
71 ourselves, it's a thing of beauty) you must provide a description. This should 71 ourselves, it's a thing of beauty) you must provide a description. This should
72 be relatively short&mdash;a few sentences, maybe a whole paragraph&mdash;and 72 be relatively short&mdash;a few sentences, maybe a whole paragraph&mdash;and
73 tells a casual reader what they might want to know about your package. 73 tells a casual reader what they might want to know about your package.
74 74
75 Think of the description as the sales pitch for your package. Users will see it 75 Think of the description as the sales pitch for your package. Users will see it
76 when they browse [pub.dartlang.org][pubsite]. It should be simple plain text: 76 when they browse [pub.dartlang.org][pubsite]. It should be simple plain text:
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 <aside><div class="alert alert-warning"> 299 <aside><div class="alert alert-warning">
300 300
301 Note that <code>&gt;</code> is also valid YAML syntax so you will want to quote 301 Note that <code>&gt;</code> is also valid YAML syntax so you will want to quote
302 the version string (like <code>'<=1.2.3 >2.0.0'</code>) if the version 302 the version string (like <code>'<=1.2.3 >2.0.0'</code>) if the version
303 constraint starts with that. 303 constraint starts with that.
304 304
305 </div></aside> 305 </div></aside>
306 306
307 [pubsite]: http://pub.dartlang.org 307 [pubsite]: http://pub.dartlang.org
308 [semantic versioning]: http://semver.org/ 308 [semantic versioning]: http://semver.org/
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698