README.rdoc 1.9 KB
Newer Older
M
Mislav Marohnić 已提交
1
= Action Pack -- From request to response
D
Initial  
David Heinemeier Hansson 已提交
2

M
Mark Hayes 已提交
3
Action Pack is a framework for handling and responding to web requests. It
M
Mislav Marohnić 已提交
4 5 6 7
provides mechanisms for *routing* (mapping request URLs to actions), defining
*controllers* that implement actions, and generating responses by rendering
*views*, which are templates of various formats. In short, Action Pack
provides the view and controller layers in the MVC paradigm.
D
Initial  
David Heinemeier Hansson 已提交
8

M
Mislav Marohnić 已提交
9
It consists of several modules:
D
Initial  
David Heinemeier Hansson 已提交
10

M
Mislav Marohnić 已提交
11 12
* Action Dispatch, which parses information about the web request, handles
  routing as defined by the user, and does advanced processing related to HTTP
A
Akira Matsuda 已提交
13
  such as MIME-type negotiation, decoding parameters in POST, PATCH, or PUT bodies,
M
Mislav Marohnić 已提交
14
  handling HTTP caching logic, cookies and sessions.
D
Initial  
David Heinemeier Hansson 已提交
15

M
Mislav Marohnić 已提交
16 17 18 19 20 21 22 23 24 25
* Action Controller, which provides a base controller class that can be
  subclassed to implement filters and actions to handle requests. The result
  of an action is typically content generated from views.

With the Ruby on Rails framework, users only directly interface with the
Action Controller module. Necessary Action Dispatch functionality is activated
by default and Action View rendering is implicitly triggered by Action
Controller. However, these modules are designed to function on their own and
can be used outside of Rails.

D
Initial  
David Heinemeier Hansson 已提交
26

27
== Download and installation
D
Initial  
David Heinemeier Hansson 已提交
28

S
Sukeerthi Adiga 已提交
29
The latest version of Action Pack can be installed with RubyGems:
D
Initial  
David Heinemeier Hansson 已提交
30

31
  $ gem install actionpack
D
Initial  
David Heinemeier Hansson 已提交
32

F
Fatos Morina 已提交
33
Source code can be downloaded as part of the Rails project on GitHub:
D
Initial  
David Heinemeier Hansson 已提交
34

35
* https://github.com/rails/rails/tree/master/actionpack
D
Initial  
David Heinemeier Hansson 已提交
36 37 38 39


== License

40 41
Action Pack is released under the MIT license:

42
* https://opensource.org/licenses/MIT
D
Initial  
David Heinemeier Hansson 已提交
43 44 45 46


== Support

F
Fatos Morina 已提交
47
API documentation is at:
D
Initial  
David Heinemeier Hansson 已提交
48

49
* https://api.rubyonrails.org
50

F
Fatos Morina 已提交
51
Bug reports for the Ruby on Rails project can be filed here:
52

A
Arun Agrawal 已提交
53
* https://github.com/rails/rails/issues
54 55 56 57

Feature requests should be discussed on the rails-core mailing list here:

* https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-core