public this repo is viewable by everyone
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
init
Michael Hartl (author)
2 months ago
commit  189a6c6b9aac2dca36ef9ef46604db12dbf73e44
tree    6b5c4c92edb0caf823dcf55faa1fdfe5945a66a6
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
0
@@ -0,0 +1,14 @@
0
+log/*.log
0
+log/*.out
0
+tmp/**/*
0
+.DS_Store
0
+doc/api
0
+doc/app
0
+db/schema.rb
0
+db/schema.sql
0
+db/*.sqlite3*
0
+config/database.yml
0
+public/photos/*
0
+uuid.state
0
+nbproject*
0
+index/*
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
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
0
@@ -0,0 +1,203 @@
0
+== Welcome to Rails
0
+
0
+Rails is a web-application and persistence framework that includes everything
0
+needed to create database-backed web-applications according to the
0
+Model-View-Control pattern of separation. This pattern splits the view (also
0
+called the presentation) into "dumb" templates that are primarily responsible
0
+for inserting pre-built data in between HTML tags. The model contains the
0
+"smart" domain objects (such as Account, Product, Person, Post) that holds all
0
+the business logic and knows how to persist themselves to a database. The
0
+controller handles the incoming requests (such as Save New Account, Update
0
+Product, Show Post) by manipulating the model and directing data to the view.
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
+
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
+
0
+
0
+== Getting Started
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
+ (If you've downloaded Rails in a complete tgz or zip, this step is already done)
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
+
0
+
0
+== Web Servers
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
+
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
+== 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! 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
+
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.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.erb. Inside default.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
+ This directory is in the load path.
...
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
0
@@ -0,0 +1,10 @@
0
+# Add your own tasks in files placed in lib/tasks ending in .rake,
0
+# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
0
+
0
+require(File.join(File.dirname(__FILE__), 'config', 'boot'))
0
+
0
+require 'rake'
0
+require 'rake/testtask'
0
+require 'rake/rdoctask'
0
+
0
+require 'tasks/rails'
...
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
0
@@ -0,0 +1,10 @@
0
+# Filters added to this controller apply to all controllers in the application.
0
+# Likewise, all the methods added will be available for all controllers.
0
+
0
+class ApplicationController < ActionController::Base
0
+ helper :all # include all helpers, all the time
0
+
0
+ # See ActionController::RequestForgeryProtection for details
0
+ # Uncomment the :secret if you're not using the cookie session store
0
+ protect_from_forgery # :secret => '71a8c82e6d248750397d166001c5e308'
0
+end
...
 
 
 
...
1
2
3
0
@@ -0,0 +1,3 @@
0
+# Methods added to this helper will be available to all templates in the application.
0
+module ApplicationHelper
0
+end
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
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
0
@@ -0,0 +1,109 @@
0
+# Don't change this file!
0
+# Configure your app in config/environment.rb and config/environments/*.rb
0
+
0
+RAILS_ROOT = "#{File.dirname(__FILE__)}/.." unless defined?(RAILS_ROOT)
0
+
0
+module Rails
0
+ class << self
0
+ def boot!
0
+ unless booted?
0
+ preinitialize
0
+ pick_boot.run
0
+ end
0
+ end
0
+
0
+ def booted?
0
+ defined? Rails::Initializer
0
+ end
0
+
0
+ def pick_boot
0
+ (vendor_rails? ? VendorBoot : GemBoot).new
0
+ end
0
+
0
+ def vendor_rails?
0
+ File.exist?("#{RAILS_ROOT}/vendor/rails")
0
+ end
0
+
0
+ # FIXME : Ruby 1.9
0
+ def preinitialize
0
+ load(preinitializer_path) if File.exists?(preinitializer_path)
0
+ end
0
+
0
+ def preinitializer_path
0
+ "#{RAILS_ROOT}/config/preinitializer.rb"
0
+ end
0
+ end
0
+
0
+ class Boot
0
+ def run
0
+ load_initializer
0
+ Rails::Initializer.run(:set_load_path)
0
+ end
0
+ end
0
+
0
+ class VendorBoot < Boot
0
+ def load_initializer
0
+ require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer"
0
+ end
0
+ end
0
+
0
+ class GemBoot < Boot
0
+ def load_initializer
0
+ self.class.load_rubygems
0
+ load_rails_gem
0
+ require 'initializer'
0
+ end
0
+
0
+ def load_rails_gem
0
+ if version = self.class.gem_version
0
+ gem 'rails', version
0
+ else
0
+ gem 'rails'
0
+ end
0
+ rescue Gem::LoadError => load_error
0
+ $stderr.puts %(Missing the Rails #{version} gem. Please `gem install -v=#{version} rails`, update your RAILS_GEM_VERSION setting in config/environment.rb for the Rails version you do have installed, or comment out RAILS_GEM_VERSION to use the latest version installed.)
0
+ exit 1
0
+ end
0
+
0
+ class << self
0
+ def rubygems_version
0
+ Gem::RubyGemsVersion if defined? Gem::RubyGemsVersion
0
+ end
0
+
0
+ def gem_version
0
+ if defined? RAILS_GEM_VERSION
0
+ RAILS_GEM_VERSION
0
+ elsif ENV.include?('RAILS_GEM_VERSION')
0
+ ENV['RAILS_GEM_VERSION']
0
+ else
0
+ parse_gem_version(read_environment_rb)
0
+ end
0
+ end
0
+
0
+ def load_rubygems
0
+ require 'rubygems'
0
+
0
+ unless rubygems_version >= '0.9.4'
0
+ $stderr.puts %(Rails requires RubyGems >= 0.9.4 (you have #{rubygems_version}). Please `gem update --system` and try again.)
0
+ exit 1
0
+ end
0
+
0
+ rescue LoadError
0
+ $stderr.puts %(Rails requires RubyGems >= 0.9.4. Please install RubyGems and try again: http://rubygems.rubyforge.org)
0
+ exit 1
0
+ end
0
+
0
+ def parse_gem_version(text)
0
+ $1 if text =~ /^[^#]*RAILS_GEM_VERSION\s*=\s*["']([!~<>=]*\s*[\d.]+)["']/
0
+ end
0
+
0
+ private
0
+ def read_environment_rb
0
+ File.read("#{RAILS_ROOT}/config/environment.rb")
0
+ end
0
+ end
0
+ end
0
+end
0
+
0
+# All that for this:
0
+Rails.boot!
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
0
@@ -0,0 +1,59 @@
0
+# Be sure to restart your server when you modify this file
0
+
0
+# Uncomment below to force Rails into production mode when
0
+# you don't control web/app server and can't set it the proper way
0
+# ENV['RAILS_ENV'] ||= 'production'
0
+
0
+# Specifies gem version of Rails to use when vendor/rails is not present
0
+RAILS_GEM_VERSION = '2.0.2' unless defined? RAILS_GEM_VERSION
0
+
0
+# Bootstrap the Rails environment, frameworks, and default configuration
0
+require File.join(File.dirname(__FILE__), 'boot')
0
+
0
+Rails::Initializer.run do |config|
0
+ # Settings in config/environments/* take precedence over those specified here.
0
+ # Application configuration should go into files in config/initializers
0
+ # -- all .rb files in that directory are automatically loaded.
0
+ # See Rails::Configuration for more options.
0
+
0
+ # Skip frameworks you're not going to use (only works if using vendor/rails).
0
+ # To use Rails without a database, you must remove the Active Record framework
0
+ # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
0
+
0
+ # Only load the plugins named here, in the order given. By default, all plugins
0
+ # in vendor/plugins are loaded in alphabetical order.
0
+ # :all can be used as a placeholder for all plugins not explicitly named
0
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
0
+
0
+ # Add additional load paths for your own custom dirs
0
+ # config.load_paths += %W( #{RAILS_ROOT}/extras )
0
+
0
+ # Force all environments to use the same logger level
0
+ # (by default production uses :info, the others :debug)
0
+ # config.log_level = :debug
0
+
0
+ # Your secret key for verifying cookie session data integrity.
0
+ # If you change this key, all old sessions will become invalid!
0
+ # Make sure the secret is at least 30 characters and all random,
0
+ # no regular words or you'll be exposed to dictionary attacks.
0
+ config.action_controller.session = {
0
+ :session_key => '_instant_social_session',
0
+ :secret => '63143b62852716dbfd7998e4545370e91baf63e9bc878cbbaaea1fd03e79fd3ff91dc2e8d7b9f637c89d872d3ae536ea09e21e8237de8bb9ef87d9f2168c2327'
0
+ }
0
+
0
+ # Use the database for sessions instead of the cookie-based default,
0
+ # which shouldn't be used to store highly confidential information
0
+ # (create the session table with 'rake db:sessions:create')
0
+ # config.action_controller.session_store = :active_record_store
0
+
0
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
0
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
0
+ # like if you have constraints or database-specific column types
0
+ # config.active_record.schema_format = :sql
0
+
0
+ # Activate observers that should always be running
0
+ # config.active_record.observers = :cacher, :garbage_collector
0
+
0
+ # Make Active Record use UTC-base instead of local time
0
+ # config.active_record.default_timezone = :utc
0
+end
0
\ No newline at end of file
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
0
@@ -0,0 +1,18 @@
0
+# Settings specified here will take precedence over those in config/environment.rb
0
+
0
+# In the development environment your application's code is reloaded on
0
+# every request. This slows down response time but is perfect for development
0
+# since you don't have to restart the webserver when you make code changes.
0
+config.cache_classes = false
0
+
0
+# Log error messages when you accidentally call methods on nil.
0
+config.whiny_nils = true
0
+
0
+# Show full error reports and disable caching
0
+config.action_controller.consider_all_requests_local = true
0
+config.action_view.debug_rjs = true
0
+config.action_controller.perform_caching = false
0
+config.action_view.cache_template_extensions = false
0
+
0
+# Don't care if the mailer can't send
0
+config.action_mailer.raise_delivery_errors = false
0
\ No newline at end of file
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
0
@@ -0,0 +1,19 @@
0
+# Settings specified here will take precedence over those in config/environment.rb
0
+
0
+# The production environment is meant for finished, "live" apps.
0
+# Code is not reloaded between requests
0
+config.cache_classes = true
0
+
0
+# Use a different logger for distributed setups
0
+# config.logger = SyslogLogger.new
0
+
0
+# Full error reports are disabled and caching is turned on
0
+config.action_controller.consider_all_requests_local = false
0
+config.action_controller.perform_caching = true
0
+config.action_view.cache_template_loading = true
0
+
0
+# Enable serving of images, stylesheets, and javascripts from an asset server
0
+# config.action_controller.asset_host = "http://assets.example.com"
0
+
0
+# Disable delivery errors, bad email addresses will be ignored
0
+# config.action_mailer.raise_delivery_errors = false
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
0
@@ -0,0 +1,22 @@
0
+# Settings specified here will take precedence over those in config/environment.rb
0
+
0
+# The test environment is used exclusively to run your application's
0
+# test suite. You never need to work with it otherwise. Remember that
0
+# your test database is "scratch space" for the test suite and is wiped
0
+# and recreated between test runs. Don't rely on the data there!
0
+config.cache_classes = true
0
+
0
+# Log error messages when you accidentally call methods on nil.
0
+config.whiny_nils = true
0
+
0
+# Show full error reports and disable caching
0
+config.action_controller.consider_all_requests_local = true
0
+config.action_controller.perform_caching = false
0
+
0
+# Disable request forgery protection in test environment
0
+config.action_controller.allow_forgery_protection = false
0
+
0
+# Tell ActionMailer not to deliver emails to the real world.
0
+# The :test delivery method accumulates sent emails in the
0
+# ActionMailer::Base.deliveries array.
0
+config.action_mailer.delivery_method = :test
...
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
0
@@ -0,0 +1,10 @@
0
+# Be sure to restart your server when you modify this file.
0
+
0
+# Add new inflection rules using the following format
0
+# (all these examples are active by default):
0
+# Inflector.inflections do |inflect|
0
+# inflect.plural /^(ox)$/i, '\1en'
0
+# inflect.singular /^(ox)en/i, '\1'
0
+# inflect.irregular 'person', 'people'
0
+# inflect.uncountable %w( fish sheep )
0
+# end
...
 
 
 
 
 
...
1
2
3
4
5
0
@@ -0,0 +1,5 @@
0
+# Be sure to restart your server when you modify this file.
0
+
0
+# Add new mime types for use in respond_to blocks:
0
+# Mime::Type.register "text/richtext", :rtf
0
+# Mime::Type.register_alias "text/html", :iphone
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
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
0
@@ -0,0 +1,35 @@
0
+ActionController::Routing::Routes.draw do |map|
0
+ # The priority is based upon order of creation: first created -> highest priority.
0
+
0
+ # Sample of regular route:
0
+ # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
0
+ # Keep in mind you can assign values other than :controller and :action
0
+
0
+ # Sample of named route:
0
+ # map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
0
+ # This route can be invoked with purchase_url(:id => product.id)
0
+
0
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
0
+ # map.resources :products
0
+
0
+ # Sample resource route with options:
0
+ # map.resources :products, :member => { :short => :get, :toggle => :post }, :collection => { :sold => :get }
0
+
0
+ # Sample resource route with sub-resources:
0
+ # map.resources :products, :has_many => [ :comments, :sales ], :has_one => :seller
0
+
0
+ # Sample resource route within a namespace:
0
+ # map.namespace :admin do |admin|
0
+ # # Directs /admin/products/* to Admin::ProductsController (app/controllers/admin/products_controller.rb)
0
+ # admin.resources :products
0
+ # end
0
+
0
+ # You can have the root of your site routed with map.root -- just remember to delete public/index.html.
0
+ # map.root :controller => "welcome"
0
+
0
+ # See how all your routes lay out with "rake routes"
0
+
0
+ # Install the default routes as the lowest priority.
0
+ map.connect ':controller/:action/:id'
0
+ map.connect ':controller/:action/:id.:format'
0
+end
...
 
 
...
1
2
0
@@ -0,0 +1,2 @@
0
+Use this README file to introduce your application and point to useful places in the API for learning more.
0
+Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
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
0
@@ -0,0 +1,40 @@
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
...
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
0
@@ -0,0 +1,30 @@
0
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
0
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
0
+
0
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
0
+
0
+<head>
0
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
0
+ <title>The page you were looking for doesn't exist (404)</title>
0
+  <style type="text/css">
0
+    body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
0
+    div.dialog {
0
+      width: 25em;
0
+      padding: 0 4em;
0
+      margin: 4em auto 0 auto;
0
+      border: 1px solid #ccc;
0
+      border-right-color: #999;
0
+      border-bottom-color: #999;
0
+    }
0
+    h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
0
+  </style>
0
+</head>
0
+
0
+<body>
0
+ <!-- This file lives in public/404.html -->
0
+ <div class="dialog">
0
+ <h1>The page you were looking for doesn't exist.</h1>
0
+ <p>You may have mistyped the address or the page may have moved.</p>
0
+ </div>
0
+</body>
0
+</html>
0
\ No newline at end of file
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
0
@@ -0,0 +1,30 @@
0
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
0
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
0
+
0
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
0
+
0
+<head>
0
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
0
+ <title>The change you wanted was rejected (422)</title>
0
+  <style type="text/css">
0
+    body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
0
+    div.dialog {
0
+      width: 25em;
0
+      padding: 0 4em;
0
+      margin: 4em auto 0 auto;
0
+      border: 1px solid #ccc;
0
+      border-right-color: #999;
0
+      border-bottom-color: #999;
0
+    }
0
+    h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
0
+  </style>
0
+</head>
0
+
0
+<body>
0
+ <!-- This file lives in public/422.html -->
0
+ <div class="dialog">
0
+ <h1>The change you wanted w