Ruby on Rails
Go to file
Piotr Sarnacki ced8ebcee0 Change inside_namespace method to inside_template and use it in all templates by default
The initial implementation of namespacing was based on wrong
assumptions. Namespacing path and class names in templates
should be based on current namespace and skip_namespace attribute,
but it should be not necessary to wrap content on all the templates
into additional block methods.
2010-11-16 16:38:14 +01:00
actionmailer Revert "Bump up mail dependency to take advantage of relaxed i18n version requirement" 2010-11-16 00:23:03 +11:00
actionpack Brought the domain method in AD http url inline with subdomain where @@tld_length is used by default. Also set the default value of @@tld_length to 1. 2010-11-16 18:57:51 +08:00
activemodel Fix when database column name has some symbolic characters. [#5818 state:resolved] 2010-11-14 17:24:31 +08:00
activerecord revises RDoc of AR::Base#== 2010-11-16 15:58:37 +01:00
activeresource syncs CHANGELOGs for 3.0.2 in 3-0-stable with the ones in master 2010-11-09 20:56:41 +01:00
activesupport Add support for try to just yield the object to a block if no method is to be called. Kind of like a tap_if_present. 2010-11-14 17:23:44 +08:00
bin add missing shebang to rails bin. LH [#4885 state:resolved] 2010-06-19 00:54:42 -07:00
ci copy-edits some CI traces 2010-10-22 17:34:22 +02:00
railties Change inside_namespace method to inside_template and use it in all templates by default 2010-11-16 16:38:14 +01:00
tools Support an extra profile printer arg 2010-06-24 01:08:12 -07:00
.gitignore Bump bundler dependency to 1.0.0.beta.2 or later 2010-07-01 10:44:53 -07:00
.yardopts Let YARD document the railties gem 2010-09-09 18:24:34 -07:00
Gemfile Bring back ruby-debug19 for Ruby versions < 1.9.3 2010-11-05 19:11:58 -02:00
RAILS_VERSION Master is now targeting 3.1.0.beta 2010-08-23 21:43:47 -05:00
README.rdoc revises a few link texts 2010-08-26 15:54:53 +02:00
Rakefile adds a publish_docs task to force stable docs generation and publishing after a new stable tag has been pushed 2010-11-16 14:07:55 +01:00
install.rb Add install script for testing gems locally 2010-07-26 16:09:10 -05:00
load_paths.rb Bust gem prelude to ensure bundler's in the load path. Not sure what's broken here. 2010-03-27 12:06:27 -07:00
rails.gemspec Allow bundler 1.1 (and 1.2, etc.) in Rails 1.0.2 and above 2010-11-12 18:36:55 -06:00
release.rb Simple release script 2010-04-13 12:26:15 -07:00
version.rb Master is now targeting 3.1.0.beta 2010-08-23 21:44:57 -05:00

README.rdoc

== Welcome to \Rails

\Rails is a web-application framework that includes everything needed to create
database-backed web applications according to the Model-View-Control pattern.

This pattern splits the view (also called the presentation) into "dumb"
templates that are primarily responsible for inserting pre-built data in between
HTML tags. The model contains the "smart" domain objects (such as Account,
Product, Person, Post) that holds all the business logic and knows how to
persist themselves to a database. The controller handles the incoming requests
(such as Save New Account, Update Product, Show Post) by manipulating the model
and directing data to the view.

In \Rails, the model is handled by what's called an object-relational mapping
layer entitled Active Record. This layer allows you to present the data from
database rows as objects and embellish these data objects with business logic
methods. You can read more about Active Record in its
{README}[link:files/activerecord/README_rdoc.html].

The controller and view are handled by the Action Pack, which handles both
layers by its two parts: Action View and Action Controller. These two layers
are bundled in a single package due to their heavy interdependence. This is
unlike the relationship between the Active Record and Action Pack that is much
more separate. Each of these packages can be used independently outside of
\Rails. You can read more about Action Pack in its
{README}[link:files/actionpack/README_rdoc.html].


== Getting Started

1. Install \Rails at the command prompt if you haven't yet:

    gem install rails

2. At the command prompt, create a new \Rails application:

    rails new myapp

   where "myapp" is the application name.

3. Change directory to +myapp+ and start the web server:

    cd myapp; rails server

   Run with <tt>--help</tt> for options.

4. Go to http://localhost:3000/ and you'll see:

    "Welcome aboard: You're riding Ruby on Rails!"

5. Follow the guidelines to start developing your application. You can find the following resources handy:

* The README file created within your application.
* The {Getting Started with Rails}[http://guides.rubyonrails.org/getting_started.html].
* The {Ruby on Rails Tutorial}[http://railstutorial.org/book].
* The {Ruby on Rails guides}[http://guides.rubyonrails.org/getting_started.html].
* The {API documentation}[http://api.rubyonrails.org].


== Contributing

We encourage you to contribute to Ruby on \Rails! Please check out the {Contributing to Rails
guide}[http://edgeguides.rubyonrails.org/contributing_to_rails.html] for guidelines about how
to proceed. {Join us}[http://contributors.rubyonrails.org]!

== License

Ruby on \Rails is released under the MIT license.