aboutsummaryrefslogtreecommitdiffstats
path: root/railties
Commit message (Collapse)AuthorAgeFilesLines
* AS guide: small rewordingXavier Noria2009-05-311-1/+1
|
* AS guide: explains class removalXavier Noria2009-05-311-1/+43
|
* use "Subclasses" in title for coherence with method nameXavier Noria2009-05-311-1/+1
|
* Fix url and route helpers to follow the given exampleMike Enriquez2009-05-311-1/+1
|
* Fixed some typos and a more common grammar styles.Joseph Pecoraro2009-05-311-3/+3
|
* Fixed typo.Joseph Pecoraro2009-05-311-1/+1
|
* AS guide: explains Class#subclassesXavier Noria2009-05-311-4/+30
|
* just a typoXavier Noria2009-05-311-1/+1
|
* explains superclass_delegating_accessorXavier Noria2009-05-311-3/+16
|
* form helpers guide: revises a TIP on resourcesXavier Noria2009-05-301-3/+7
|
* Fixed some links pointing to guides.rails.info to relative links. Fixed ↵Joseph Pecoraro2009-05-302-4/+4
| | | | hashs as well.
* Fixed links to the Routing Guide.Joseph Pecoraro2009-05-301-2/+2
|
* Added TIP about resources when using the short form_for syntax.Joseph Pecoraro2009-05-301-0/+2
|
* Link titles are generally capitalized.Joseph Pecoraro2009-05-301-1/+1
|
* Removed the Javascript. It conflicts with the highlighting code.Joseph Pecoraro2009-05-301-10/+0
|
* Grammer: 'a' => 'an' where applicable.Joseph Pecoraro2009-05-296-6/+6
|
* Clarification in an example. Grammar correction.Joseph Pecoraro2009-05-291-7/+3
|
* Semi-fix for Firefox code Copy and PasteJoseph Pecoraro2009-05-291-1/+10
| | | | | | | | | | | | The underlieing problem is that Firefox ignores the css 'white-space:pre' rule when actually copying and pasting. This Javascript turns newlines into <br /> tags inside the code containers. This will run in Safari, Opera, Chrome, Webkit, etc. gracefully. This will not run in IE due to IE not having the methods needed. A permanent solution would be at the Markdown level in such a way that the highlighter still runs on the output with brake tags.
* Linked to the IRC channel.Joseph Pecoraro2009-05-291-1/+1
|
* Capitalized Rails where appropriate.Joseph Pecoraro2009-05-295-7/+7
|
* Corrected path to standard.Joseph Pecoraro2009-05-291-1/+1
|
* Corrected paths to standard.Joseph Pecoraro2009-05-291-3/+3
|
* Typo and Style CorrectionsJoseph Pecoraro2009-05-291-17/+17
|
* fixes markup, thanks to Joseph PecoraroXavier Noria2009-05-271-1/+1
|
* Merge commit 'mainstream/master'Pratik Naik2009-05-2415-43/+37
|\ | | | | | | | | Conflicts: actionpack/lib/action_controller/base/mime_responds.rb
| * Remove 'core' fluff. Hookable ActiveSupport.load_all!Jeremy Kemper2009-05-204-16/+7
| |
| * Lazy-require Kernel#silence_warningsJeremy Kemper2009-05-191-2/+1
| |
| * Extract generic callbacks middleware from dispatcherJoshua Peek2009-05-172-4/+2
| |
| * Merge Failsafe middleware into ShowExceptionsJoshua Peek2009-05-171-1/+1
| |
| * Remove obsolete wiki reference [#2291 state:resolved]Mike Gunderloy2009-05-171-1/+1
| | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
| * Fix typo in the generated routes.rb [#2433 state:resolved]Paulo Schneider2009-05-171-1/+1
| | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
| * Supply valid ruby-prof parameters [#1804 state:resolved]Jacob Kjeldahl2009-05-171-1/+1
| | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
| * Get Railties passing againYehuda Katz2009-05-168-17/+23
| |
* | performance guide: performance tests run in test environment, thanks to ↵Xavier Noria2009-05-241-1/+1
| | | | | | | | Nicholas J Kreucher
* | layouts guide: makes some app paths relativeXavier Noria2009-05-241-1/+1
| |
* | associations guide: find_by_customer_id -> find_all_by_customer_id, thanks ↵Xavier Noria2009-05-241-1/+1
| | | | | | | | to Kai Krakow
* | in associations guide: exist? -> exists?, thanks to Peter ZlatnarXavier Noria2009-05-231-8/+8
| |
* | AS guide: documents class attribute accessors and inheritable attributesXavier Noria2009-05-231-1/+71
| |
* | Add coding style to contributing guidePratik Naik2009-05-201-1/+10
| |
* | attempt at fixing fxn picture in credits pageXavier Noria2009-05-193-1/+1
| |
* | Merge commit 'mainstream/master'Pratik Naik2009-05-161-3/+4
|\|
| * Include guides directory in the rails gemPratik Naik2009-05-161-3/+4
| |
* | Remove some informal sentences and new linesPratik Naik2009-05-161-172/+44
| |
* | Initial version - quick brain dumpPeter Szinek2009-05-161-0/+94
| |
* | Fix comment in seeds.rb to make more sense.Mike Gunderloy2009-05-151-1/+1
| |
* | Merge commit 'mainstream/master'Pratik Naik2009-05-1512-12/+45
|\| | | | | | | | | Conflicts: actionpack/lib/action_view/helpers/form_helper.rb
| * Cherry-pick core extensionsJeremy Kemper2009-05-135-3/+4
| |
| * Defer rake/contrib requires so we can use the stdlib rake instead of the ↵Jeremy Kemper2009-05-131-1/+3
| | | | | | | | full gem
| * Added db/seeds.rb as a default file for storing seed data for the database. ↵David Heinemeier Hansson2009-05-115-2/+31
| | | | | | | | Can be loaded with rake db:seed (or created alongside the db with db:setup). (This is also known as the "Stop Putting Gawd Damn Seed Data In Your Migrations" feature) [DHH]
| * Remove stray call to gems:unpack in gems:build:forceMatt Jones2009-05-061-2/+1
| | | | | | | | | | | | [#2266 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>