public
Description: The PhillyonRails.org website
Homepage: http://www.PhillyonRails.org
Clone URL: git://github.com/cbartlett/phillyonrails.org.git
making README more sensible
cbartlett (author)
Wed Jul 23 05:54:40 -0700 2008
commit  ccc7aea9630288fcb333d50ffd46b52a0a54e1e3
tree    e630fb5fbc399c53651ad4d3aa2823f5b020f5f8
parent  e5e420ecd748307d8ebfc4618db6ba0da377e008
0
...
1
 
2
3
4
 
 
5
6
7
8
9
10
11
 
 
 
12
13
14
15
16
17
 
18
19
20
21
22
23
24
25
 
26
 
 
 
 
 
27
28
 
29
30
31
32
33
34
 
35
 
36
37
 
 
 
 
 
 
38
39
40
41
42
 
 
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
 
 
 
 
 
 
 
257
...
 
1
2
 
 
3
4
5
 
 
 
 
 
 
6
7
8
9
 
 
 
 
 
10
11
 
 
 
 
 
 
 
12
13
14
15
16
17
18
19
 
20
21
 
 
 
 
 
22
23
24
25
 
26
27
28
29
30
31
32
 
 
 
 
33
34
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
37
38
39
40
41
42
43
0
@@ -1,256 +1,42 @@
0
-== Welcome to Rails
0
+== PhillyonRails.org
0
 
0
-Rails is a web-application framework that includes everything needed to create
0
-database-backed web applications according to the Model-View-Control pattern.
0
+This is the software that runs PhillyOnRails.org, the homepage for Philly on Rails,
0
+the Philadelphia-area Ruby enthusiast's user group.
0
 
0
-This pattern splits the view (also called the presentation) into "dumb" templates
0
-that are primarily responsible for inserting pre-built data in between HTML tags.
0
-The model contains the "smart" domain objects (such as Account, Product, Person,
0
-Post) that holds all the business logic and knows how to persist themselves to
0
-a database. The controller handles the incoming requests (such as Save New Account,
0
-Update Product, Show Post) by manipulating the model and directing data to the view.
0
+The site was created by Colin A. Bartlett (colin at kineticweb dot com) and can be
0
+forked and modified by anyone for any purpose. Send cbartlett a pull request if
0
+you want to contribute back.
0
 
0
-In Rails, the model is handled by what's called an object-relational mapping
0
-layer entitled Active Record. This layer allows you to present the data from
0
-database rows as objects and embellish these data objects with business logic
0
-methods. You can read more about Active Record in
0
-link:files/vendor/rails/activerecord/README.html.
0
+== Feature Requests
0
 
0
-The controller and view are handled by the Action Pack, which handles both
0
-layers by its two parts: Action View and Action Controller. These two layers
0
-are bundled in a single package due to their heavy interdependence. This is
0
-unlike the relationship between the Active Record and Action Pack that is much
0
-more separate. Each of these packages can be used independently outside of
0
-Rails. You can read more about Action Pack in
0
-link:files/vendor/rails/actionpack/README.html.
0
+Feel free to add items to this list that you think should be completed:
0
 
0
+* Add hCalendar microformats site-wide
0
+* Make the Resources page wiki-like
0
+* Make a Copy button on events in the Admin
0
+* Add a way to auto-create recurring events
0
+* Some kind of photo gallery for event pics
0
 
0
-== Getting Started
0
+== License
0
 
0
-1. At the command prompt, start a new Rails application using the <tt>rails</tt> command
0
- and your application name. Ex: rails myapp
0
-2. Change directory into myapp and start the web server: <tt>script/server</tt> (run with --help for options)
0
-3. Go to http://localhost:3000/ and get "Welcome aboard: You're riding the Rails!"
0
-4. Follow the guidelines to start developing your application
0
+MIT license is the only way to go in my book:
0
 
0
+Copyright (c) 2008 Kinetic Web Solutions, LLC
0
 
0
-== Web Servers
0
+Permission is hereby granted, free of charge, to any person obtaining a copy
0
+of this software and associated documentation files (the "Software"), to deal
0
+in the Software without restriction, including without limitation the rights
0
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
0
+copies of the Software, and to permit persons to whom the Software is
0
+furnished to do so, subject to the following conditions:
0
 
0
-By default, Rails will try to use Mongrel and lighttpd if they are installed, otherwise
0
-Rails will use WEBrick, the webserver that ships with Ruby. When you run script/server,
0
-Rails will check if Mongrel exists, then lighttpd and finally fall back to WEBrick. This ensures
0
-that you can always get up and running quickly.
0
+The above copyright notice and this permission notice shall be included in
0
+all copies or substantial portions of the Software.
0
 
0
-Mongrel is a Ruby-based webserver with a C component (which requires compilation) that is
0
-suitable for development and deployment of Rails applications. If you have Ruby Gems installed,
0
-getting up and running with mongrel is as easy as: <tt>gem install mongrel</tt>.
0
-More info at: http://mongrel.rubyforge.org
0
-
0
-If Mongrel is not installed, Rails will look for lighttpd. It's considerably faster than
0
-Mongrel and WEBrick and also suited for production use, but requires additional
0
-installation and currently only works well on OS X/Unix (Windows users are encouraged
0
-to start with Mongrel). We recommend version 1.4.11 and higher. You can download it from
0
-http://www.lighttpd.net.
0
-
0
-And finally, if neither Mongrel or lighttpd are installed, Rails will use the built-in Ruby
0
-web server, WEBrick. WEBrick is a small Ruby web server suitable for development, but not
0
-for production.
0
-
0
-But of course its also possible to run Rails on any platform that supports FCGI.
0
-Apache, LiteSpeed, IIS are just a few. For more information on FCGI,
0
-please visit: http://wiki.rubyonrails.com/rails/pages/FastCGI
0
-
0
-
0
-== Apache .htaccess example
0
-
0
-# General Apache options
0
-AddHandler fastcgi-script .fcgi
0
-AddHandler cgi-script .cgi
0
-Options +FollowSymLinks +ExecCGI
0
-
0
-# If you don't want Rails to look in certain directories,
0
-# use the following rewrite rules so that Apache won't rewrite certain requests
0
-#
0
-# Example:
0
-# RewriteCond %{REQUEST_URI} ^/notrails.*
0
-# RewriteRule .* - [L]
0
-
0
-# Redirect all requests not available on the filesystem to Rails
0
-# By default the cgi dispatcher is used which is very slow
0
-#
0
-# For better performance replace the dispatcher with the fastcgi one
0
-#
0
-# Example:
0
-# RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
0
-RewriteEngine On
0
-
0
-# If your Rails application is accessed via an Alias directive,
0
-# then you MUST also set the RewriteBase in this htaccess file.
0
-#
0
-# Example:
0
-# Alias /myrailsapp /path/to/myrailsapp/public
0
-# RewriteBase /myrailsapp
0
-
0
-RewriteRule ^$ index.html [QSA]
0
-RewriteRule ^([^.]+)$ $1.html [QSA]
0
-RewriteCond %{REQUEST_FILENAME} !-f
0
-RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
0
-
0
-# In case Rails experiences terminal errors
0
-# Instead of displaying this message you can supply a file here which will be rendered instead
0
-#
0
-# Example:
0
-# ErrorDocument 500 /500.html
0
-
0
-ErrorDocument 500 "<h2>Application error</h2>Rails application failed to start properly"
0
-
0
-
0
-== Debugging Rails
0
-
0
-Sometimes your application goes wrong. Fortunately there are a lot of tools that
0
-will help you debug it and get it back on the rails.
0
-
0
-First area to check is the application log files. Have "tail -f" commands running
0
-on the server.log and development.log. Rails will automatically display debugging
0
-and runtime information to these files. Debugging info will also be shown in the
0
-browser on requests from 127.0.0.1.
0
-
0
-You can also log your own messages directly into the log file from your code using
0
-the Ruby logger class from inside your controllers. Example:
0
-
0
- class WeblogController < ActionController::Base
0
- def destroy
0
- @weblog = Weblog.find(params[:id])
0
- @weblog.destroy
0
- logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!")
0
- end
0
- end
0
-
0
-The result will be a message in your log file along the lines of:
0
-
0
- Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1
0
-
0
-More information on how to use the logger is at http://www.ruby-doc.org/core/
0
-
0
-Also, Ruby documentation can be found at http://www.ruby-lang.org/ including:
0
-
0
-* The Learning Ruby (Pickaxe) Book: http://www.ruby-doc.org/docs/ProgrammingRuby/
0
-* Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide)
0
-
0
-These two online (and free) books will bring you up to speed on the Ruby language
0
-and also on programming in general.
0
-
0
-
0
-== Debugger
0
-
0
-Debugger support is available through the debugger command when you start your Mongrel or
0
-Webrick server with --debugger. This means that you can break out of execution at any point
0
-in the code, investigate and change the model, AND then resume execution!
0
-You need to install ruby-debug to run the server in debugging mode. With gems, use 'gem install ruby-debug'
0
-Example:
0
-
0
- class WeblogController < ActionController::Base
0
- def index
0
- @posts = Post.find(:all)
0
- debugger
0
- end
0
- end
0
-
0
-So the controller will accept the action, run the first line, then present you
0
-with a IRB prompt in the server window. Here you can do things like:
0
-
0
- >> @posts.inspect
0
- => "[#<Post:0x14a6be8 @attributes={\"title\"=>nil, \"body\"=>nil, \"id\"=>\"1\"}>,
0
- #<Post:0x14a6620 @attributes={\"title\"=>\"Rails you know!\", \"body\"=>\"Only ten..\", \"id\"=>\"2\"}>]"
0
- >> @posts.first.title = "hello from a debugger"
0
- => "hello from a debugger"
0
-
0
-...and even better is that you can examine how your runtime objects actually work:
0
-
0
- >> f = @posts.first
0
- => #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
0
- >> f.
0
- Display all 152 possibilities? (y or n)
0
-
0
-Finally, when you're ready to resume execution, you enter "cont"
0
-
0
-
0
-== Console
0
-
0
-You can interact with the domain model by starting the console through <tt>script/console</tt>.
0
-Here you'll have all parts of the application configured, just like it is when the
0
-application is running. You can inspect domain models, change values, and save to the
0
-database. Starting the script without arguments will launch it in the development environment.
0
-Passing an argument will specify a different environment, like <tt>script/console production</tt>.
0
-
0
-To reload your controllers and models after launching the console run <tt>reload!</tt>
0
-
0
-== dbconsole
0
-
0
-You can go to the command line of your database directly through <tt>script/dbconsole</tt>.
0
-You would be connected to the database with the credentials defined in database.yml.
0
-Starting the script without arguments will connect you to the development database. Passing an
0
-argument will connect you to a different database, like <tt>script/dbconsole production</tt>.
0
-Currently works for mysql, postgresql and sqlite.
0
-
0
-== Description of Contents
0
-
0
-app
0
- Holds all the code that's specific to this particular application.
0
-
0
-app/controllers
0
- Holds controllers that should be named like weblogs_controller.rb for
0
- automated URL mapping. All controllers should descend from ApplicationController
0
- which itself descends from ActionController::Base.
0
-
0
-app/models
0
- Holds models that should be named like post.rb.
0
- Most models will descend from ActiveRecord::Base.
0
-
0
-app/views
0
- Holds the template files for the view that should be named like
0
- weblogs/index.html.erb for the WeblogsController#index action. All views use eRuby
0
- syntax.
0
-
0
-app/views/layouts
0
- Holds the template files for layouts to be used with views. This models the common
0
- header/footer method of wrapping views. In your views, define a layout using the
0
- <tt>layout :default</tt> and create a file named default.html.erb. Inside default.html.erb,
0
- call <% yield %> to render the view using this layout.
0
-
0
-app/helpers
0
- Holds view helpers that should be named like weblogs_helper.rb. These are generated
0
- for you automatically when using script/generate for controllers. Helpers can be used to
0
- wrap functionality for your views into methods.
0
-
0
-config
0
- Configuration files for the Rails environment, the routing map, the database, and other dependencies.
0
-
0
-db
0
- Contains the database schema in schema.rb. db/migrate contains all
0
- the sequence of Migrations for your schema.
0
-
0
-doc
0
- This directory is where your application documentation will be stored when generated
0
- using <tt>rake doc:app</tt>
0
-
0
-lib
0
- Application specific libraries. Basically, any kind of custom code that doesn't
0
- belong under controllers, models, or helpers. This directory is in the load path.
0
-
0
-public
0
- The directory available for the web server. Contains subdirectories for images, stylesheets,
0
- and javascripts. Also contains the dispatchers and the default HTML files. This should be
0
- set as the DOCUMENT_ROOT of your web server.
0
-
0
-script
0
- Helper scripts for automation and generation.
0
-
0
-test
0
- Unit and functional tests along with fixtures. When using the script/generate scripts, template
0
- test files will be generated for you and placed in this directory.
0
-
0
-vendor
0
- External libraries that the application depends on. Also includes the plugins subdirectory.
0
- If the app has frozen rails, those gems also go here, under vendor/rails/.
0
- This directory is in the load path.
0
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
0
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
0
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
0
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
0
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
0
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
0
+THE SOFTWARE.
0
\ No newline at end of file

Comments

    No one has commented yet.