User contributions
(latest | earliest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 13:53, 31 December 2006 (diff | hist) Ruby on Rails/Getting Started/Install on OS X
- 13:52, 31 December 2006 (diff | hist) N Ruby on Rails/Getting Started/Install on OS X/RMagic Installation Shell Script (New page: <pre><nowiki> # Just put this shell script in the home directory # it will create a folder called "delete_this_later" # and put all the sources in it # once you're done, you can safely del...)
- 19:00, 30 December 2006 (diff | hist) Talk:Ruby on Rails (→Structure)
- 19:00, 30 December 2006 (diff | hist) N Talk:Ruby on Rails (Structure)
- 15:47, 30 December 2006 (diff | hist) Ruby on Rails/ActionView
- 15:47, 30 December 2006 (diff | hist) N Ruby on Rails/ActionView/ERb (New page: ERb (Embedded Ruby) is the default template language included with Rails. It is very similar to PHP, JSP and ASP. === Examples === <pre> <nowiki> <h1>People</h1> <ul> <% @pe...)
- 15:45, 30 December 2006 (diff | hist) N Ruby on Rails/ActionView/Layout Files (New page: == Layouts == You can define a standard layout used for your entire application in the file <tt>app/views/layouts/application.rhtml</tt>. The following is an example of an application.rht...)
- 15:38, 30 December 2006 (diff | hist) Ruby on Rails/ActiveRecord (→Migrations)
- 15:34, 30 December 2006 (diff | hist) N Ruby on Rails/ActiveRecord/Migrations/SQL (New page: The migration system have a lot of helpers you can use to do the stuff you want to do. Sometimes you need to do stuff that's not covered by these helpers, though. That's where the <tt>exec...)
- 15:26, 30 December 2006 (diff | hist) Ruby on Rails/ActiveRecord (→Migrations)
- 15:24, 30 December 2006 (diff | hist) Ruby on Rails/ActiveRecord/Migrations (moved the introduction above the toc)
- 15:23, 30 December 2006 (diff | hist) Ruby on Rails/ActiveRecord (→Migrations)
- 14:57, 30 December 2006 (diff | hist) Ruby on Rails (→Info)
- 14:56, 30 December 2006 (diff | hist) Ruby on Rails/ActiveRecord
- 14:54, 30 December 2006 (diff | hist) Ruby on Rails/ActiveRecord (→Acts as)
- 14:53, 30 December 2006 (diff | hist) Ruby on Rails/ActiveRecord (→Various stuff)
- 06:29, 30 December 2006 (diff | hist) Ruby on Rails
- 06:28, 30 December 2006 (diff | hist) N File:Rails logo.png (The Ruby on Rails logo)
- 06:09, 30 December 2006 (diff | hist) N Ruby on Rails/Contributors (New page: A list of contributors to this book. * User:Aeden * User:Leethal <small>Add your name to the list if you feel like it. No need to pay us or rub our backs.</small>)
- 06:07, 30 December 2006 (diff | hist) Ruby on Rails
- 05:59, 30 December 2006 (diff | hist) m Ruby on Rails/Built-In Rails Tools (moved introduction to above toc)
- 05:29, 30 December 2006 (diff | hist) N Ruby on Rails/Getting Started/Running the Server (New page: == The bundled Webrick server == Rails includes a built-in server application to make developing and testing easy. To start the built in server, get to the command line, change to the hom...)
- 05:28, 30 December 2006 (diff | hist) N Ruby on Rails/Getting Started/Creating a Rails application (New page: == Using the <tt>rails</tt> command == On the command line type <code>rails appname</code> replacing __appname__ with the name of your application. This will create a directory called __a...)
- 05:27, 30 December 2006 (diff | hist) Ruby on Rails/ActiveRecord (→Callbacks: removed unneeded stuff)
- 05:27, 30 December 2006 (diff | hist) Ruby on Rails/ActiveRecord (major extravaganza cleanup)
- 05:26, 30 December 2006 (diff | hist) N Ruby on Rails/ActiveRecord/Attributes (New page: ActiveRecord attributes are automatically determined from the underlying database schema. For example: class Person < ActiveRecord::Base end table persons column fi...)
- 05:25, 30 December 2006 (diff | hist) Ruby on Rails/ActiveRecord/Migrations (New page: == Introduction == <ref>Excerpts modified and republished from Steve Eichert's [http://www.emxsoftware.com/RubyOnRails/Ruby+on+Rails+Migrations+Explained Ruby on rails Migrations Explaine...)
- 05:23, 30 December 2006 (diff | hist) N Ruby on Rails/ActiveRecord/Naming (New page: ActiveRecord classes are named in singluar form. Tables for ActiveRecord objects are named in plural form by default. This pluralization is often an initial point of contention for new Rai...)
- 05:21, 30 December 2006 (diff | hist) Ruby on Rails/ActiveRecord/Callbacks (New page: Callbacks provide a means of hooking into an ActiveRecord object's lifecycle. == Implementing Callbacks == There are four types of callbacks accepted by the callback macros: * Method re...)
- 05:19, 30 December 2006 (diff | hist) N Ruby on Rails/ActiveRecord/Associations (New page: Associations provide mappings between ActiveRecord objects. The easiest way to understand what associations are is by example: class Person < ActiveRecord::Base has_many :pets ...)
- 05:18, 30 December 2006 (diff | hist) N Ruby on Rails/ActiveRecord/Timestamps (New page: Active Record automatically timestamps during create and update operations if the table has fields created_at/created_on or updated_at/updated_on. This can be disabled on individual models...)
- 05:17, 30 December 2006 (diff | hist) N Ruby on Rails/ActiveRecord/Connection adapters (New page: ActiveRecord abstracts the connection to the database through connection adapters. It currently supports the following databases: * DB2 * Firebird * FrontBase * MySQL * OpenBase * Oracle ...)
- 05:15, 30 December 2006 (diff | hist) N Ruby on Rails/ActiveRecord/Validations (New page: ctiveRecord supports a variety of model validation methods and allows for addition of new methods as needed. Built in validations include: * validates_confirmation_of * validates_accepta...)
- 05:11, 30 December 2006 (diff | hist) Ruby on Rails/ActiveRecord/acts as (New page: The acts_as_tree directive will add methods to the ActiveRecord object to make each instance acts as a node in a tree.)
- 05:11, 30 December 2006 (diff | hist) N Ruby on Rails/ActiveRecord/acts as (New page: The acts_as_list directive will add methods to the ActiveRecord object to make each instance act as an element in a list.)
- 05:08, 30 December 2006 (diff | hist) N Ruby on Rails/ActiveRecord/Calculations (New page: Calculations provide methods for calculating aggregate values of columns in ActiveRecord models. === Calculate === All calculations are handled through the calculate method. The calculat...)
- 05:07, 30 December 2006 (diff | hist) N Ruby on Rails/ActiveRecord/Aggregations (New page: Active Record implements aggregation through a macro-like class method called composed_of for representing attributes as value objects. It expresses relationships like "Account [is] compos...)
- 05:02, 30 December 2006 (diff | hist) Ruby on Rails/Getting Started (cleaned up sections, moved content to sub-pages)
- 05:00, 30 December 2006 (diff | hist) N Ruby on Rails/Getting Started/Install on Windows (New page: * Install Ruby using the Installer. Include RubyGems in the install. * Get to the DOS prompt and type: gem install rails --include-dependencies)
- 05:00, 30 December 2006 (diff | hist) N Ruby on Rails/Getting Started/Install on OS X (New page: * Install Ruby * Install RubyGems * Get to the command-line and type: sudo gem install rails --include-dependencies)
- 05:00, 30 December 2006 (diff | hist) N Ruby on Rails/Getting Started/Install on Linux (New page: * Install or update Ruby * Install RubyGems * Get to the command-line and type: sudo gem install rails --include-dependencies)
- 04:46, 30 December 2006 (diff | hist) Ruby on Rails (removed an underscore for prettyness)
- 04:46, 30 December 2006 (diff | hist) Ruby on Rails
- 04:41, 30 December 2006 (diff | hist) Ruby on Rails/Full Table of Contents
- 04:40, 30 December 2006 (diff | hist) N Ruby on Rails/Full Table of Contents (New page: * /Getting Started/ ** /Getting Started/Model-View-Controller/ * /Tools/ ** /Tools/Generators/ * /ActiveRecord/ ** /ActiveRecord/Migrations/ * [[/ActionController/]...)
- 04:40, 30 December 2006 (diff | hist) Ruby on Rails
- 04:37, 30 December 2006 (diff | hist) Ruby on Rails/Built-In Rails Tools (added some links)
- 04:31, 30 December 2006 (diff | hist) Ruby on Rails/Built-In Rails Tools (→Development Environments)
- 19:58, 29 December 2006 (diff | hist) User:August (Redirecting to User:Leethal) (top)
- 19:56, 29 December 2006 (diff | hist) N User:Leethal (New page: * Name: August Lilleaas * Location: Norway, Oslo (GMT+1) === Stuff I did === * Made the Mambo Open Source book (under the "august" username) * WIP at [[Ruby on Rails]...) (top)
(latest | earliest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)