Permalink
Newer
Older
100644 49 lines (30 sloc) 1.34 KB
f6dcce4 @mmcgrana Refine the README for new project structure, add thanks.
authored Feb 24, 2010
1 # Ring
2
e965929 @weavejester Slimmed down README
weavejester authored Mar 3, 2012
3 Ring is a Clojure web applications library inspired by Python's WSGI
4 and Ruby's Rack. By abstracting the details of HTTP into a simple,
5 unified API, Ring allows web applications to be constructed of modular
6 components that can be shared among a variety of applications, web
7 servers, and web frameworks.
c1b417e @mmcgrana Convert readme to markdown, add simple example code to readme.
authored Sep 7, 2009
8
e965929 @weavejester Slimmed down README
weavejester authored Mar 3, 2012
9 The [SPEC][1] file at the root of this distribution for provides a
10 complete description of the Ring interface.
c1b417e @mmcgrana Convert readme to markdown, add simple example code to readme.
authored Sep 7, 2009
11
e965929 @weavejester Slimmed down README
weavejester authored Mar 3, 2012
12 [1]: https://github.com/mmcgrana/ring/blob/master/SPEC
c1b417e @mmcgrana Convert readme to markdown, add simple example code to readme.
authored Sep 7, 2009
13
e965929 @weavejester Slimmed down README
weavejester authored Mar 3, 2012
14 ## Libraries
c1b417e @mmcgrana Convert readme to markdown, add simple example code to readme.
authored Sep 7, 2009
15
e965929 @weavejester Slimmed down README
weavejester authored Mar 3, 2012
16 * ring-core - essential functions for handling parameters, cookies and more
17 * ring-devel - functions for developing and debugging Ring applications
18 * ring-servlet - construct Java servlets from Ring handlers
19 * ring-jetty-adapter - a Ring adapter that uses the Jetty webserver
4e630cc @weavejester Release 0.2.3.
weavejester authored Jun 16, 2010
20
e965929 @weavejester Slimmed down README
weavejester authored Mar 3, 2012
21 ## Installation
4e630cc @weavejester Release 0.2.3.
weavejester authored Jun 16, 2010
22
e965929 @weavejester Slimmed down README
weavejester authored Mar 3, 2012
23 To include one of the above libraries, for example `ring-core`, add
24 the following to your `:dependencies`:
fd30ea0 @sethtrain update README with new instructions; add subproject jar files to giti…
sethtrain authored Feb 24, 2010
25
5727d4d @weavejester Release 1.0.2
weavejester authored Jan 25, 2012
26 [ring/ring-core "1.0.2"]
fd30ea0 @sethtrain update README with new instructions; add subproject jar files to giti…
sethtrain authored Feb 24, 2010
27
e965929 @weavejester Slimmed down README
weavejester authored Mar 3, 2012
28 To include all of them:
fd30ea0 @sethtrain update README with new instructions; add subproject jar files to giti…
sethtrain authored Feb 24, 2010
29
5727d4d @weavejester Release 1.0.2
weavejester authored Jan 25, 2012
30 [ring "1.0.2"]
c1b417e @mmcgrana Convert readme to markdown, add simple example code to readme.
authored Sep 7, 2009
31
e965929 @weavejester Slimmed down README
weavejester authored Mar 3, 2012
32 ## Documentation
f6dcce4 @mmcgrana Refine the README for new project structure, add thanks.
authored Feb 24, 2010
33
e965929 @weavejester Slimmed down README
weavejester authored Mar 3, 2012
34 * [Wiki](https://github.com/mmcgrana/ring/wiki)
4c849e6 @weavejester Added Google group link to README
weavejester authored Mar 4, 2012
35 * [API docs](http://mmcgrana.github.com/ring)
36
37 ## Community
38
39 * [Google group](http://groups.google.com/group/ring-clojure)
c1b417e @mmcgrana Convert readme to markdown, add simple example code to readme.
authored Sep 7, 2009
40
f6dcce4 @mmcgrana Refine the README for new project structure, add thanks.
authored Feb 24, 2010
41 ## Thanks
42
e965929 @weavejester Slimmed down README
weavejester authored Mar 3, 2012
43 This project borrows heavily from Ruby's Rack and Python's WSGI;
44 thanks to those communities for their work.
fd30ea0 @sethtrain update README with new instructions; add subproject jar files to giti…
sethtrain authored Feb 24, 2010
45
f6dcce4 @mmcgrana Refine the README for new project structure, add thanks.
authored Feb 24, 2010
46 ## License
c1b417e @mmcgrana Convert readme to markdown, add simple example code to readme.
authored Sep 7, 2009
47
e965929 @weavejester Slimmed down README
weavejester authored Mar 3, 2012
48 Copyright (c) 2009-2012 Mark McGranaghan and released under an MIT license.