Skip to content

Commit f076409

Browse files
committed
now that github supports renames, coffeescript, not coffee-script
1 parent ade9620 commit f076409

File tree

7 files changed

+102
-52
lines changed

7 files changed

+102
-52
lines changed

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
## How to contribute to CoffeeScript
22

3-
* Before you open a ticket or send a pull request, [search](https://github.com/jashkenas/coffee-script/issues) for previous discussions about the same feature or issue. Add to the earlier ticket if you find one.
3+
* Before you open a ticket or send a pull request, [search](https://github.com/jashkenas/coffeescript/issues) for previous discussions about the same feature or issue. Add to the earlier ticket if you find one.
44

5-
* Before sending a pull request for a feature, be sure to have [tests](https://github.com/jashkenas/coffee-script/tree/master/test).
5+
* Before sending a pull request for a feature, be sure to have [tests](https://github.com/jashkenas/coffeescript/tree/master/test).
66

7-
* Use the same coding style as the rest of the [codebase](https://github.com/jashkenas/coffee-script/tree/master/src). If you're just getting started with CoffeeScript, there's a nice [style guide](https://github.com/polarmobile/coffeescript-style-guide).
7+
* Use the same coding style as the rest of the [codebase](https://github.com/jashkenas/coffeescript/tree/master/src). If you're just getting started with CoffeeScript, there's a nice [style guide](https://github.com/polarmobile/coffeescript-style-guide).
88

99
* In your pull request, do not add documentation to `index.html` or re-build the minified `coffee-script.js` file. We'll do those things before cutting a new release.

Cakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ formatDate = (date) ->
8787
releaseHeader = (date, version, prevVersion) -> """
8888
<div class="anchor" id="#{version}"></div>
8989
<b class="header">
90-
#{prevVersion and "<a href=\"https://github.com/jashkenas/coffee-script/compare/#{prevVersion}...#{version}\">#{version}</a>" or version}
90+
#{prevVersion and "<a href=\"https://github.com/jashkenas/coffeescript/compare/#{prevVersion}...#{version}\">#{version}</a>" or version}
9191
<span class="timestamp"> &mdash; <time datetime="#{date}">#{formatDate date}</time></span>
9292
</b>
9393
"""

README

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
} } {
3+
{ { } }
4+
} }{ {
5+
{ }{ } } _____ __ __
6+
{ }{ }{ { } / ____| / _|/ _|
7+
.- { { } { }} -. | | ___ | |_| |_ ___ ___
8+
( { } { } { } } ) | | / _ \| _| _/ _ \/ _ \
9+
|`-..________ ..-'| | |___| (_) | | | || __/ __/
10+
| | \_____\___/|_| |_| \___|\___|
11+
| ;--.
12+
| (__ \ _____ _ _
13+
| | ) ) / ____| (_) | |
14+
| |/ / | (___ ___ _ __ _ _ __ | |_
15+
| ( / \___ \ / __| '__| | '_ \| __|
16+
| |/ ____) | (__| | | | |_) | |_
17+
| | |_____/ \___|_| |_| .__/ \__|
18+
`-.._________..-' | |
19+
|_|
20+
21+
22+
CoffeeScript is a little language that compiles into JavaScript.
23+
24+
If you have the Node Package Manager installed:
25+
npm install -g coffee-script
26+
(Leave off the -g if you don't wish to install globally.)
27+
28+
Or, if you don't wish to use npm:
29+
sudo bin/cake install
30+
31+
Execute a script:
32+
coffee /path/to/script.coffee
33+
34+
Compile a script:
35+
coffee -c /path/to/script.coffee
36+
37+
For documentation, usage, and examples, see:
38+
http://coffeescript.org/
39+
40+
To suggest a feature, report a bug, or general discussion:
41+
http://github.com/jashkenas/coffeescript/issues/
42+
43+
If you'd like to chat, drop by #coffeescript on Freenode IRC,
44+
or on webchat.freenode.net.
45+
46+
The source repository:
47+
git://github.com/jashkenas/coffeescript.git
48+
49+
Top 100 contributors are listed here:
50+
http://github.com/jashkenas/coffeescript/contributors

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ npm install -g coffee-script
3131
Leave off the `-g` if you don't wish to install globally. If you don't wish to use npm:
3232

3333
```shell
34-
git clone https://github.com/jashkenas/coffee-script.git
34+
git clone https://github.com/jashkenas/coffeescript.git
3535
sudo coffee-script/bin/cake install
3636
```
3737

@@ -51,10 +51,10 @@ coffee -c /path/to/script.coffee
5151

5252
For documentation, usage, and examples, see: http://coffeescript.org/
5353

54-
To suggest a feature or report a bug: http://github.com/jashkenas/coffee-script/issues
54+
To suggest a feature or report a bug: http://github.com/jashkenas/coffeescript/issues
5555

5656
If you'd like to chat, drop by #coffeescript on Freenode IRC.
5757

58-
The source repository: https://github.com/jashkenas/coffee-script.git
58+
The source repository: https://github.com/jashkenas/coffeescript.git
5959

60-
Our lovely and talented contributors are listed here: http://github.com/jashkenas/coffee-script/contributors
60+
Our lovely and talented contributors are listed here: http://github.com/jashkenas/coffeescript/contributors

documentation/index.html.js

+15-15
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110

111111
<p>
112112
<b>Latest Version:</b>
113-
<a href="http://github.com/jashkenas/coffee-script/tarball/1.7.1">1.7.1</a>
113+
<a href="http://github.com/jashkenas/coffeescript/tarball/1.7.1">1.7.1</a>
114114
</p>
115115

116116
<pre>
@@ -160,14 +160,14 @@ npm install --save coffee-script</pre>
160160
<p>
161161
If you'd prefer to install the latest <b>master</b> version of CoffeeScript, you
162162
can clone the CoffeeScript
163-
<a href="http://github.com/jashkenas/coffee-script">source repository</a>
163+
<a href="http://github.com/jashkenas/coffeescript">source repository</a>
164164
from GitHub, or download
165-
<a href="http://github.com/jashkenas/coffee-script/tarball/master">the source</a> directly.
165+
<a href="http://github.com/jashkenas/coffeescript/tarball/master">the source</a> directly.
166166
To install the latest master CoffeeScript compiler with npm:
167167
</p>
168168

169169
<pre>
170-
npm install -g jashkenas/coffee-script</pre>
170+
npm install -g jashkenas/coffeescript</pre>
171171

172172
<p>
173173
Or, if you want to install to <tt>/usr/local</tt>, and don't want to use
@@ -353,7 +353,7 @@ Expressions
353353
Just for kicks, a little bit of the compiler is currently implemented in this fashion:
354354
See it
355355
<a href="https://gist.github.com/jashkenas/3fc3c1a8b1009c00d9df">as a document</a>,
356-
<a href="https://raw.github.com/jashkenas/coffee-script/master/src/scope.litcoffee">raw</a>,
356+
<a href="https://raw.github.com/jashkenas/coffeescript/master/src/scope.litcoffee">raw</a>,
357357
and <a href="http://cl.ly/LxEu">properly highlighted in a text editor</a>.
358358
</p>
359359

@@ -1127,7 +1127,7 @@ Expressions
11271127

11281128
<ul>
11291129
<li>
1130-
<a href="http://github.com/jashkenas/coffee-script/">Source Code</a><br />
1130+
<a href="http://github.com/jashkenas/coffeescript/">Source Code</a><br />
11311131
Use <tt>bin/coffee</tt> to test your changes,<br />
11321132
<tt>bin/cake test</tt> to run the test suite,<br />
11331133
<tt>bin/cake build</tt> to rebuild the CoffeeScript compiler, and <br />
@@ -1140,23 +1140,23 @@ Expressions
11401140
they pass, there's a good chance you've made a successful change.
11411141
</li>
11421142
<li>
1143-
<a href="http://github.com/jashkenas/coffee-script/issues">CoffeeScript Issues</a><br />
1143+
<a href="http://github.com/jashkenas/coffeescript/issues">CoffeeScript Issues</a><br />
11441144
Bug reports, feature proposals, and ideas for changes to the language belong here.
11451145
</li>
11461146
<li>
11471147
<a href="https://groups.google.com/forum/#!forum/coffeescript">CoffeeScript Google Group</a><br />
11481148
If you'd like to ask a question, the mailing list is a good place to get help.
11491149
</li>
11501150
<li>
1151-
<a href="http://github.com/jashkenas/coffee-script/wiki">The CoffeeScript Wiki</a><br />
1151+
<a href="http://github.com/jashkenas/coffeescript/wiki">The CoffeeScript Wiki</a><br />
11521152
If you've ever learned a neat CoffeeScript tip or trick, or ran into a gotcha &mdash; share it on the wiki.
11531153
The wiki also serves as a directory of handy
1154-
<a href="http://github.com/jashkenas/coffee-script/wiki/Text-editor-plugins">text editor extensions</a>,
1155-
<a href="http://github.com/jashkenas/coffee-script/wiki/Web-framework-plugins">web framework plugins</a>,
1156-
and general <a href="http://github.com/jashkenas/coffee-script/wiki/Build-tools">CoffeeScript build tools</a>.
1154+
<a href="http://github.com/jashkenas/coffeescript/wiki/Text-editor-plugins">text editor extensions</a>,
1155+
<a href="http://github.com/jashkenas/coffeescript/wiki/Web-framework-plugins">web framework plugins</a>,
1156+
and general <a href="http://github.com/jashkenas/coffeescript/wiki/Build-tools">CoffeeScript build tools</a>.
11571157
</li>
11581158
<li>
1159-
<a href="http://github.com/jashkenas/coffee-script/wiki/FAQ">The FAQ</a><br />
1159+
<a href="http://github.com/jashkenas/coffeescript/wiki/FAQ">The FAQ</a><br />
11601160
Perhaps your CoffeeScript-related question has been asked before. Check the FAQ first.
11611161
</li>
11621162
<li>
@@ -1167,7 +1167,7 @@ Expressions
11671167
point for converting simple scripts.
11681168
</li>
11691169
<li>
1170-
<a href="https://github.com/jashkenas/coffee-script/downloads">High-Rez Logo</a><br />
1170+
<a href="https://github.com/jashkenas/coffeescript/downloads">High-Rez Logo</a><br />
11711171
The CoffeeScript logo is available in Illustrator, EPS and PSD formats, for use
11721172
in presentations.
11731173
</li>
@@ -1366,7 +1366,7 @@ Expressions
13661366
<li>
13671367
Due to the new semantics of JavaScript's strict mode, CoffeeScript no
13681368
longer guarantees that constructor functions have names in all runtimes.
1369-
See <a href="https://github.com/jashkenas/coffee-script/issues/2052">#2052</a>
1369+
See <a href="https://github.com/jashkenas/coffeescript/issues/2052">#2052</a>
13701370
for discussion.
13711371
</li>
13721372
<li>
@@ -1396,7 +1396,7 @@ Expressions
13961396
a function definition, deleting naked variables, setting the value of
13971397
<tt>eval</tt> or <tt>arguments</tt>, and more.
13981398
See a full discussion at
1399-
<a href="https://github.com/jashkenas/coffee-script/issues/1547">#1547</a>.
1399+
<a href="https://github.com/jashkenas/coffeescript/issues/1547">#1547</a>.
14001400
</li>
14011401
<li>
14021402
The REPL now has a handy new multi-line mode for entering large

0 commit comments

Comments
 (0)