Commit 6ce830e1

mista mo <cake-eater@mokhan.ca>
2012-05-13 01:05:06
fix broken tests and remove unneccessary items from gemlock.
1 parent 15b95b4
db/schema.rb
@@ -19,8 +19,8 @@ ActiveRecord::Schema.define(:version => 20120301034745) do
     t.integer  "author_id"
     t.string   "author_type"
     t.text     "body"
-    t.datetime "created_at"
-    t.datetime "updated_at"
+    t.datetime "created_at",    :null => false
+    t.datetime "updated_at",    :null => false
     t.string   "namespace"
   end
 
@@ -48,8 +48,8 @@ ActiveRecord::Schema.define(:version => 20120301034745) do
 
   create_table "categories", :force => true do |t|
     t.string   "name"
-    t.datetime "created_at"
-    t.datetime "updated_at"
+    t.datetime "created_at", :null => false
+    t.datetime "updated_at", :null => false
     t.string   "slug"
   end
 
@@ -70,15 +70,15 @@ ActiveRecord::Schema.define(:version => 20120301034745) do
   create_table "favorites", :force => true do |t|
     t.integer  "user_id"
     t.integer  "creation_id"
-    t.datetime "created_at"
-    t.datetime "updated_at"
+    t.datetime "created_at",  :null => false
+    t.datetime "updated_at",  :null => false
   end
 
   create_table "photos", :force => true do |t|
     t.integer  "creation_id"
     t.string   "image"
-    t.datetime "created_at"
-    t.datetime "updated_at"
+    t.datetime "created_at",  :null => false
+    t.datetime "updated_at",  :null => false
   end
 
   create_table "users", :force => true do |t|
spec/controllers/favorites_controller_spec.rb
@@ -1,58 +0,0 @@
-require 'spec_helper'
-
-# This spec was generated by rspec-rails when you ran the scaffold generator.
-# It demonstrates how one might use RSpec to specify the controller code that
-# was generated by Rails when you ran the scaffold generator.
-#
-# It assumes that the implementation code is generated by the rails scaffold
-# generator.  If you are using any extension libraries to generate different
-# controller code, this generated spec may or may not pass.
-#
-# It only uses APIs available in rails and/or rspec-rails.  There are a number
-# of tools you can use to make these specs even more expressive, but we're
-# sticking to rails and rspec-rails APIs to keep things simple and stable.
-#
-# Compared to earlier versions of this generator, there is very limited use of
-# stubs and message expectations in this spec.  Stubs are only used when there
-# is no simpler way to get a handle on the object needed for the example.
-# Message expectations are only used when there is no simpler way to specify
-# that an instance is receiving a specific message.
-
-describe FavoritesController do
-
-  # This should return the minimal set of attributes required to create a valid
-  # Like. As you add validations to Like, be sure to
-  # update the return value of this method accordingly.
-  def valid_attributes
-    {}
-  end
-
-  describe "GET index" do
-    it "assigns all favorites as @favorites" do
-      favorite = Favorite.create! valid_attributes
-      get :index, :creation_id => "1"
-      assigns(:favorites).should eq([favorite])
-    end
-  end
-
-  describe "POST create" do
-    describe "with valid params" do
-      it "creates a new Favorite" do
-        expect {
-          post :create, :favorite => valid_attributes
-        }.to change(Favorite, :count).by(1)
-      end
-
-      it "assigns a newly created favorite as @favorite" do
-        post :create, :favorite => valid_attributes
-        assigns(:favorite).should be_a(favorite)
-        assigns(:favorite).should be_persisted
-      end
-
-      it "redirects to the created favorite" do
-        post :create, :favorite => valid_attributes
-        response.should redirect_to(Favorite.last)
-      end
-    end
-  end
-end
spec/factories/creation.rb
@@ -2,5 +2,5 @@ Factory.define :creation, :class => Creation do |c|
   include ActionDispatch::TestProcess
   c.name 'cake'
   c.story 'whats the story morning glory?'
-  # c.image fixture_file_upload("/files/example.jpg", "image/jpg")
+  #c.image fixture_file_upload("/files/example.jpg", "image/jpg")
 end
spec/models/user_spec.rb
@@ -3,8 +3,7 @@ require 'spec_helper'
 describe User do
   describe "when a user already likes a creation" do 
     it "should not let the user like it again" do
-      # creation = Creation.new
-      creation = FactoryGirl.build(:creation)
+      creation = FactoryGirl.create(:creation)
       user = FactoryGirl.create(:user)
       user.add_favorite(creation)
       user.add_favorite(creation)
spec/requests/favorites_spec.rb
@@ -1,11 +0,0 @@
-require 'spec_helper'
-
-describe "Favorites" do
-  describe "GET /favorites" do
-    it "works! (now write some real specs)" do
-      # Run the generator again with the --webrat flag if you want to use webrat methods/matchers
-      get creation_favorites_path
-      response.status.should be(200)
-    end
-  end
-end
spec/routing/favorites_routing_spec.rb
@@ -4,11 +4,19 @@ describe FavoritesController do
   describe "routing" do
 
     it "routes to #index" do
-      get("/creations/1/favorites").should route_to("favorites#index")
+      get("/creations/1/favorites").should route_to({
+        :controller => "favorites",
+        :action => "index",
+        :creation_id => "1"
+      })
     end
 
     it "routes to #create" do
-      post("/creations/1/favorites").should route_to("favorites#create")
+      post("/creations/1/favorites").should route_to({
+        :controller => "favorites",
+        :action => "create",
+        :creation_id => "1"
+      })
     end
   end
 end
.gitignore
@@ -8,3 +8,4 @@ db/sphinx/
 log/*
 .DS_Store
 NERD_tree_*
+tags
Gemfile.lock
@@ -110,9 +110,6 @@ GEM
     formatador (0.2.1)
     formtastic (2.1.1)
       actionpack (~> 3.0)
-    growl (1.0.3)
-    growl_notify (0.0.3)
-      rb-appscript
     guard (1.0.2)
       ffi (>= 0.5.0)
       thor (~> 0.14.6)
@@ -137,7 +134,7 @@ GEM
     jasmine-core (1.1.0)
     journey (1.0.3)
     jquery-rails (2.0.2)
-      railties (< 5.0, >= 3.2.0)
+      railties (>= 3.2.0, < 5.0)
       thor (~> 0.14)
     json (1.7.1)
     kaminari (0.13.0)
@@ -193,8 +190,6 @@ GEM
       rdoc (~> 3.4)
       thor (~> 0.14.6)
     rake (0.9.2.2)
-    rb-appscript (0.6.1)
-    rb-fsevent (0.9.1)
     rdoc (3.12)
       json (~> 1.4)
     responders (0.9.1)
@@ -232,7 +227,7 @@ GEM
     sprockets (2.1.3)
       hike (~> 1.2)
       rack (~> 1.0)
-      tilt (!= 1.3.0, ~> 1.1)
+      tilt (~> 1.1, != 1.3.0)
     sqlite3 (1.3.6)
     sqlite3-ruby (1.3.3)
       sqlite3 (>= 1.3.3)
@@ -278,8 +273,6 @@ DEPENDENCIES
   factory_girl_rails
   fog
   formtastic (~> 2.1.1)
-  growl
-  growl_notify
   guard-livereload
   guard-rspec
   jasmine
@@ -290,7 +283,6 @@ DEPENDENCIES
   pg
   rails
   rake
-  rb-fsevent
   rmagick
   rspec-rails
   rvm-capistrano
tags
@@ -1,3094 +0,0 @@
-!_TAG_FILE_FORMAT	2	/extended format; --format=1 will not append ;" to lines/
-!_TAG_FILE_SORTED	1	/0=unsorted, 1=sorted, 2=foldcase/
-!_TAG_PROGRAM_AUTHOR	Darren Hiebert	/dhiebert@users.sourceforge.net/
-!_TAG_PROGRAM_NAME	Exuberant Ctags	//
-!_TAG_PROGRAM_URL	http://ctags.sourceforge.net	/official site/
-!_TAG_PROGRAM_VERSION	5.8	//
-$.Jcrop.defaults.addClass	vendor/assets/javascripts/jquery.Jcrop.js	/^    baseClass: 'jcrop',$/;"	p
-$.Jcrop.defaults.allowMove	vendor/assets/javascripts/jquery.Jcrop.js	/^    allowSelect: true,$/;"	p
-$.Jcrop.defaults.allowResize	vendor/assets/javascripts/jquery.Jcrop.js	/^    allowMove: true,$/;"	p
-$.Jcrop.defaults.allowSelect	vendor/assets/javascripts/jquery.Jcrop.js	/^  $.Jcrop.defaults = {$/;"	p
-$.Jcrop.defaults.baseClass	vendor/assets/javascripts/jquery.Jcrop.js	/^    trackDocument: true,$/;"	p
-$.Jcrop.defaults.bgColor	vendor/assets/javascripts/jquery.Jcrop.js	/^    addClass: null,$/;"	p
-$.Jcrop.defaults.bgOpacity	vendor/assets/javascripts/jquery.Jcrop.js	/^    bgColor: 'black',$/;"	p
-$.Jcrop.defaults.trackDocument	vendor/assets/javascripts/jquery.Jcrop.js	/^    allowResize: true,$/;"	p
-$.fn.Jcrop	vendor/assets/javascripts/jquery.Jcrop.js	/^  };$/;"	c
-$.fn.Jcrop.attachWhenDone	vendor/assets/javascripts/jquery.Jcrop.js	/^    function attachWhenDone(from) \/\/{{{$/;"	f
-$.fn.alert	vendor/assets/javascripts/bootstrap-alerts.js	/^  }$/;"	f
-$.fn.alert.defaults.selector	vendor/assets/javascripts/bootstrap-alerts.js	/^  $.fn.alert.defaults = {$/;"	p
-$.fn.button	vendor/assets/javascripts/bootstrap-buttons.js	/^  }$/;"	f
-$.fn.button.defaults.loadingText	vendor/assets/javascripts/bootstrap-buttons.js	/^  $.fn.button.defaults = {$/;"	p
-$.fn.twipsy	vendor/assets/javascripts/bootstrap-twipsy.js	/^   }$/;"	f
-$img	vendor/assets/javascripts/jquery.Jcrop.js	/^    var $img = $origimg.clone().removeAttr('id').css(img_css);$/;"	v
-$img2	vendor/assets/javascripts/jquery.Jcrop.js	/^    var $img2 = $('<img \/>')$/;"	v
-$origimg	vendor/assets/javascripts/jquery.Jcrop.js	/^    var $origimg = $(obj);$/;"	v
-ACTIONS_FOR_VERBS	doc/api/ActionController/Responder.html	/^				<dt><a name="ACTIONS_FOR_VERBS">ACTIONS_FOR_VERBS<\/a><\/dt>$/;"	a
-ADAPTER_NAME	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<dt><a name="ADAPTER_NAME">ADAPTER_NAME<\/a><\/dt>$/;"	a
-ADAPTER_NAME	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<dt><a name="ADAPTER_NAME">ADAPTER_NAME<\/a><\/dt>$/;"	a
-AJAX_OPTIONS	doc/api/ActionView/Helpers/PrototypeHelper.html	/^				<dt><a name="AJAX_OPTIONS">AJAX_OPTIONS<\/a><\/dt>$/;"	a
-ASSOCIATION_METHODS	doc/api/ActiveRecord/Relation.html	/^				<dt><a name="ASSOCIATION_METHODS">ASSOCIATION_METHODS<\/a><\/dt>$/;"	a
-ASSOCIATION_TYPES	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<dt><a name="ASSOCIATION_TYPES">ASSOCIATION_TYPES<\/a><\/dt>$/;"	a
-ATTRIBUTES	doc/api/ActiveSupport/Multibyte/Unicode/UnicodeDatabase.html	/^				<dt><a name="ATTRIBUTES">ATTRIBUTES<\/a><\/dt>$/;"	a
-ATTRIBUTE_TYPES_CACHED_BY_DEFAULT	doc/api/ActiveRecord/AttributeMethods/Read.html	/^				<dt><a name="ATTRIBUTE_TYPES_CACHED_BY_DEFAULT">ATTRIBUTE_TYPES_CACHED_BY_DEFAULT<\/a><\/dt>$/;"	a
-AUTO_EMAIL_RE	doc/api/ActionView/Helpers/TextHelper.html	/^				<dt><a name="AUTO_EMAIL_RE">AUTO_EMAIL_RE<\/a><\/dt>$/;"	a
-AUTO_LINK_CRE	doc/api/ActionView/Helpers/TextHelper.html	/^				<dt><a name="AUTO_LINK_CRE">AUTO_LINK_CRE<\/a><\/dt>$/;"	a
-AUTO_LINK_RE	doc/api/ActionView/Helpers/TextHelper.html	/^				<dt><a name="AUTO_LINK_RE">AUTO_LINK_RE<\/a><\/dt>$/;"	a
-AddImageToCreations	db/migrate/20110504144954_add_image_to_creations.rb	/^class AddImageToCreations < ActiveRecord::Migration$/;"	c
-AddNameToUsers	db/migrate/20110505035236_add_name_to_users.rb	/^class AddNameToUsers < ActiveRecord::Migration$/;"	c
-AddSlugToCategories	db/migrate/20110808024353_add_slug_to_categories.rb	/^class AddSlugToCategories < ActiveRecord::Migration$/;"	c
-AddUserIdToCreations	db/migrate/20110504010209_add_user_id_to_creations.rb	/^class AddUserIdToCreations < ActiveRecord::Migration$/;"	c
-Alert	vendor/assets/javascripts/bootstrap-alerts.js	/^  }$/;"	c
-Alert.close	vendor/assets/javascripts/bootstrap-alerts.js	/^  Alert.prototype = {$/;"	m
-Application	config/application.rb	/^  class Application < Rails::Application$/;"	c	class:Cake
-ApplicationController	app/controllers/application_controller.rb	/^class ApplicationController < ActionController::Base$/;"	c
-ApplicationHelper	app/helpers/application_helper.rb	/^module ApplicationHelper$/;"	m
-Assertion	doc/api/ActiveSupport/TestCase.html	/^				<dt><a name="Assertion">Assertion<\/a><\/dt>$/;"	a
-AttributeMethodMatch	doc/api/ActiveModel/AttributeMethods/ClassMethods/AttributeMethodMatcher.html	/^				<dt><a name="AttributeMethodMatch">AttributeMethodMatch<\/a><\/dt>$/;"	a
-AuthenticationsHelper	app/helpers/authentications_helper.rb	/^module AuthenticationsHelper$/;"	m
-BLACK	doc/api/ActiveSupport/LogSubscriber.html	/^				<dt><a name="BLACK">BLACK<\/a><\/dt>$/;"	a
-BLOCK_EXPR	doc/api/ActionView/Template/Handlers/Erubis.html	/^				<dt><a name="BLOCK_EXPR">BLOCK_EXPR<\/a><\/dt>$/;"	a
-BLUE	doc/api/ActiveSupport/LogSubscriber.html	/^				<dt><a name="BLUE">BLUE<\/a><\/dt>$/;"	a
-BOLD	doc/api/ActiveSupport/LogSubscriber.html	/^				<dt><a name="BOLD">BOLD<\/a><\/dt>$/;"	a
-BOOLEAN_ATTRIBUTES	doc/api/ActionView/Helpers/TagHelper.html	/^				<dt><a name="BOOLEAN_ATTRIBUTES">BOOLEAN_ATTRIBUTES<\/a><\/dt>$/;"	a
-BRACKETS	doc/api/ActionView/Helpers/TextHelper.html	/^				<dt><a name="BRACKETS">BRACKETS<\/a><\/dt>$/;"	a
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushAS3.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushAppleScript.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushBash.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushCSharp.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushColdFusion.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushCpp.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushCss.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushDelphi.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushDiff.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushErlang.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushGroovy.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushJScript.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushJava.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushJavaFX.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushPerl.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushPhp.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushPlain.js	/^	function Brush()$/;"	f
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushPlain.js	/^	};$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushPowerShell.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushPython.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushRuby.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushSass.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushScala.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushSql.js	/^	function Brush()$/;"	c
-Brush	doc/guides/javascripts/syntaxhighlighter/shBrushXml.js	/^	function Brush()$/;"	c
-Brush.fixComments	doc/guides/javascripts/syntaxhighlighter/shBrushCSharp.js	/^		function fixComments(match, regexInfo)$/;"	f
-Brush.getKeywordsCSS	doc/guides/javascripts/syntaxhighlighter/shBrushCss.js	/^		function getKeywordsCSS(str)$/;"	f
-Brush.getKeywordsCSS	doc/guides/javascripts/syntaxhighlighter/shBrushSass.js	/^		function getKeywordsCSS(str)$/;"	f
-Brush.getValuesCSS	doc/guides/javascripts/syntaxhighlighter/shBrushCss.js	/^		function getValuesCSS(str)$/;"	f
-Brush.getValuesCSS	doc/guides/javascripts/syntaxhighlighter/shBrushSass.js	/^		function getValuesCSS(str)$/;"	f
-Brush.process	doc/guides/javascripts/syntaxhighlighter/shBrushXml.js	/^		function process(match, regexInfo)$/;"	f
-CALLBACKS	doc/api/ActionView/Helpers/PrototypeHelper.html	/^				<dt><a name="CALLBACKS">CALLBACKS<\/a><\/dt>$/;"	a
-CALLBACKS	doc/api/ActiveRecord/Callbacks.html	/^				<dt><a name="CALLBACKS">CALLBACKS<\/a><\/dt>$/;"	a
-CALLBACKS_OPTIONS	doc/api/ActiveModel/Errors.html	/^				<dt><a name="CALLBACKS_OPTIONS">CALLBACKS_OPTIONS<\/a><\/dt>$/;"	a
-CHECKS	doc/api/ActiveModel/Validations/LengthValidator.html	/^				<dt><a name="CHECKS">CHECKS<\/a><\/dt>$/;"	a
-CHECKS	doc/api/ActiveModel/Validations/NumericalityValidator.html	/^				<dt><a name="CHECKS">CHECKS<\/a><\/dt>$/;"	a
-CLEAR	doc/api/ActiveSupport/LogSubscriber.html	/^				<dt><a name="CLEAR">CLEAR<\/a><\/dt>$/;"	a
-COMMON_YEAR_DAYS_IN_MONTH	doc/api/Time.html	/^				<dt><a name="COMMON_YEAR_DAYS_IN_MONTH">COMMON_YEAR_DAYS_IN_MONTH<\/a><\/dt>$/;"	a
-CONTENT_KEY	doc/api/ActiveSupport/XmlMini_LibXMLSAX/HashBuilder.html	/^				<dt><a name="CONTENT_KEY">CONTENT_KEY<\/a><\/dt>$/;"	a
-CONTENT_KEY	doc/api/ActiveSupport/XmlMini_NokogiriSAX/HashBuilder.html	/^				<dt><a name="CONTENT_KEY">CONTENT_KEY<\/a><\/dt>$/;"	a
-CYAN	doc/api/ActiveSupport/LogSubscriber.html	/^				<dt><a name="CYAN">CYAN<\/a><\/dt>$/;"	a
-Cake	config/application.rb	/^module Cake$/;"	m
-CategoriesController	app/controllers/categories_controller.rb	/^class CategoriesController < ApplicationController$/;"	c
-CategoriesHelper	app/helpers/categories_helper.rb	/^module CategoriesHelper$/;"	m
-Category	app/models/category.rb	/^class Category < ActiveRecord::Base$/;"	c
-CircularReferenceError	doc/api/ActiveSupport/JSON.html	/^				<dt><a name="CircularReferenceError">CircularReferenceError<\/a><\/dt>$/;"	a
-Config	spec/javascripts/support/jasmine_config.rb	/^  class Config$/;"	c	class:Jasmine
-CreateAuthentications	db/migrate/20110419012853_create_authentications.rb	/^class CreateAuthentications < ActiveRecord::Migration$/;"	c
-CreateCategories	db/migrate/20110803020957_create_categories.rb	/^class CreateCategories < ActiveRecord::Migration$/;"	c
-CreateCreationCategoryJoinTable	db/migrate/20110803021631_create_creation_category_join_table.rb	/^class CreateCreationCategoryJoinTable < ActiveRecord::Migration$/;"	c
-CreateCreations	db/migrate/20110503032142_create_creations.rb	/^class CreateCreations < ActiveRecord::Migration$/;"	c
-CreateLikes	db/migrate/20120106021715_create_likes.rb	/^class CreateLikes < ActiveRecord::Migration$/;"	c
-CreatePhotos	db/migrate/20111216042304_create_photos.rb	/^class CreatePhotos < ActiveRecord::Migration$/;"	c
-Creation	app/models/creation.rb	/^class Creation < ActiveRecord::Base$/;"	c
-CreationsController	app/controllers/creations_controller.rb	/^class CreationsController < ApplicationController$/;"	c
-CreationsHelper	app/helpers/creations_helper.rb	/^module CreationsHelper$/;"	m
-DATE_FORMATS	doc/api/Time.html	/^				<dt><a name="DATE_FORMATS">DATE_FORMATS<\/a><\/dt>$/;"	a
-DATE_REGEX	doc/api/ActiveSupport/JSON.html	/^				<dt><a name="DATE_REGEX">DATE_REGEX<\/a><\/dt>$/;"	a
-DAYS_INTO_WEEK	doc/api/Time.html	/^				<dt><a name="DAYS_INTO_WEEK">DAYS_INTO_WEEK<\/a><\/dt>$/;"	a
-DEBUG	doc/api/ActiveSupport/BufferedLogger/Severity.html	/^				<dt><a name="DEBUG">DEBUG<\/a><\/dt>$/;"	a
-DECIMAL_UNITS	doc/api/ActionView/Helpers/NumberHelper.html	/^				<dt><a name="DECIMAL_UNITS">DECIMAL_UNITS<\/a><\/dt>$/;"	a
-DECODERS	doc/api/ActiveSupport/JSON.html	/^				<dt><a name="DECODERS">DECODERS<\/a><\/dt>$/;"	a
-DEFAULTS	doc/api/ActiveSupport/Testing/Performance.html	/^				<dt><a name="DEFAULTS">DEFAULTS<\/a><\/dt>$/;"	a
-DEFAULT_COMPRESS_LIMIT	doc/api/ActiveSupport/Cache/Entry.html	/^				<dt><a name="DEFAULT_COMPRESS_LIMIT">DEFAULT_COMPRESS_LIMIT<\/a><\/dt>$/;"	a
-DEFAULT_CURRENCY_VALUES	doc/api/ActionView/Helpers/NumberHelper.html	/^				<dt><a name="DEFAULT_CURRENCY_VALUES">DEFAULT_CURRENCY_VALUES<\/a><\/dt>$/;"	a
-DEFAULT_ENCODINGS	doc/api/ActiveSupport/XmlMini.html	/^				<dt><a name="DEFAULT_ENCODINGS">DEFAULT_ENCODINGS<\/a><\/dt>$/;"	a
-DEFAULT_FILTER_RE	doc/api/Fixtures.html	/^				<dt><a name="DEFAULT_FILTER_RE">DEFAULT_FILTER_RE<\/a><\/dt>$/;"	a
-DEFAULT_LOCKING_COLUMN	doc/api/ActiveRecord/Locking/Optimistic/ClassMethods.html	/^				<dt><a name="DEFAULT_LOCKING_COLUMN">DEFAULT_LOCKING_COLUMN<\/a><\/dt>$/;"	a
-DEFAULT_SEND_FILE_OPTIONS	doc/api/ActionController/Streaming.html	/^				<dt><a name="DEFAULT_SEND_FILE_OPTIONS">DEFAULT_SEND_FILE_OPTIONS<\/a><\/dt>$/;"	a
-DEFAULT_STRING_FORMAT	doc/api/BigDecimal.html	/^				<dt><a name="DEFAULT_STRING_FORMAT">DEFAULT_STRING_FORMAT<\/a><\/dt>$/;"	a
-DEFAULT_TOKENIZER	doc/api/ActiveModel/Validations/LengthValidator.html	/^				<dt><a name="DEFAULT_TOKENIZER">DEFAULT_TOKENIZER<\/a><\/dt>$/;"	a
-DIR_FORMATTER	doc/api/ActiveSupport/Cache/FileStore.html	/^				<dt><a name="DIR_FORMATTER">DIR_FORMATTER<\/a><\/dt>$/;"	a
-DeviseCreateUsers	db/migrate/20110417070236_devise_create_users.rb	/^class DeviseCreateUsers < ActiveRecord::Migration$/;"	c
-DoubleRenderError	doc/api/ActionController/Compatibility.html	/^				<dt><a name="DoubleRenderError">DoubleRenderError<\/a><\/dt>$/;"	a
-DropAuthentications	db/migrate/20111125071349_drop_authentications.rb	/^class DropAuthentications < ActiveRecord::Migration$/;"	c
-ENCODING_TAG	doc/api/ActionView/Template/Handlers/ERB.html	/^				<dt><a name="ENCODING_TAG">ENCODING_TAG<\/a><\/dt>$/;"	a
-ERROR	doc/api/ActiveSupport/BufferedLogger/Severity.html	/^				<dt><a name="ERROR">ERROR<\/a><\/dt>$/;"	a
-ESCAPE_KEY_CHARS	doc/api/ActiveSupport/Cache/MemCacheStore.html	/^				<dt><a name="ESCAPE_KEY_CHARS">ESCAPE_KEY_CHARS<\/a><\/dt>$/;"	a
-EXTENSION_ORDER	doc/api/ActionView/PathResolver.html	/^				<dt><a name="EXTENSION_ORDER">EXTENSION_ORDER<\/a><\/dt>$/;"	a
-FALSE_VALUES	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<dt><a name="FALSE_VALUES">FALSE_VALUES<\/a><\/dt>$/;"	a
-FATAL	doc/api/ActiveSupport/BufferedLogger/Severity.html	/^				<dt><a name="FATAL">FATAL<\/a><\/dt>$/;"	a
-FORMATTING	doc/api/ActiveSupport/XmlMini.html	/^				<dt><a name="FORMATTING">FORMATTING<\/a><\/dt>$/;"	a
-Finalizer	doc/api/ActionView/Template.html	/^				<dt><a name="Finalizer">Finalizer<\/a><\/dt>$/;"	a
-GREEN	doc/api/ActiveSupport/LogSubscriber.html	/^				<dt><a name="GREEN">GREEN<\/a><\/dt>$/;"	a
-HANGUL_JAMO_FIRST	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="HANGUL_JAMO_FIRST">HANGUL_JAMO_FIRST<\/a><\/dt>$/;"	a
-HANGUL_JAMO_LAST	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="HANGUL_JAMO_LAST">HANGUL_JAMO_LAST<\/a><\/dt>$/;"	a
-HANGUL_LBASE	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="HANGUL_LBASE">HANGUL_LBASE<\/a><\/dt>$/;"	a
-HANGUL_LCOUNT	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="HANGUL_LCOUNT">HANGUL_LCOUNT<\/a><\/dt>$/;"	a
-HANGUL_NCOUNT	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="HANGUL_NCOUNT">HANGUL_NCOUNT<\/a><\/dt>$/;"	a
-HANGUL_SBASE	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="HANGUL_SBASE">HANGUL_SBASE<\/a><\/dt>$/;"	a
-HANGUL_SCOUNT	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="HANGUL_SCOUNT">HANGUL_SCOUNT<\/a><\/dt>$/;"	a
-HANGUL_SLAST	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="HANGUL_SLAST">HANGUL_SLAST<\/a><\/dt>$/;"	a
-HANGUL_TBASE	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="HANGUL_TBASE">HANGUL_TBASE<\/a><\/dt>$/;"	a
-HANGUL_TCOUNT	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="HANGUL_TCOUNT">HANGUL_TCOUNT<\/a><\/dt>$/;"	a
-HANGUL_VBASE	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="HANGUL_VBASE">HANGUL_VBASE<\/a><\/dt>$/;"	a
-HANGUL_VCOUNT	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="HANGUL_VCOUNT">HANGUL_VCOUNT<\/a><\/dt>$/;"	a
-HASH_SIZE_KEY	doc/api/ActiveSupport/XmlMini_LibXMLSAX/HashBuilder.html	/^				<dt><a name="HASH_SIZE_KEY">HASH_SIZE_KEY<\/a><\/dt>$/;"	a
-HASH_SIZE_KEY	doc/api/ActiveSupport/XmlMini_NokogiriSAX/HashBuilder.html	/^				<dt><a name="HASH_SIZE_KEY">HASH_SIZE_KEY<\/a><\/dt>$/;"	a
-HEADER	doc/api/ActiveSupport/Testing/Performance/Benchmarker.html	/^				<dt><a name="HEADER">HEADER<\/a><\/dt>$/;"	a
-HTML_ESCAPE	doc/api/ERB/Util.html	/^				<dt><a name="HTML_ESCAPE">HTML_ESCAPE<\/a><\/dt>$/;"	a
-HTTP_FORMAT_HEADER_NAMES	doc/api/ActiveResource/Connection.html	/^				<dt><a name="HTTP_FORMAT_HEADER_NAMES">HTTP_FORMAT_HEADER_NAMES<\/a><\/dt>$/;"	a
-HomeController	app/controllers/home_controller.rb	/^class HomeController < ApplicationController$/;"	c
-HomeHelper	app/helpers/home_helper.rb	/^module HomeHelper$/;"	m
-INCLUDED	doc/api/ActionController/Renderers/All.html	/^				<dt><a name="INCLUDED">INCLUDED<\/a><\/dt>$/;"	a
-INFO	doc/api/ActiveSupport/BufferedLogger/Severity.html	/^				<dt><a name="INFO">INFO<\/a><\/dt>$/;"	a
-INTERNAL_IVARS	doc/api/ActionView/TestCase/Behavior.html	/^				<dt><a name="INTERNAL_IVARS">INTERNAL_IVARS<\/a><\/dt>$/;"	a
-INTERNAL_PARAMS	doc/api/ActionController/LogSubscriber.html	/^				<dt><a name="INTERNAL_PARAMS">INTERNAL_PARAMS<\/a><\/dt>$/;"	a
-ISO_DATE	doc/api/ActiveRecord/ConnectionAdapters/Column/Format.html	/^				<dt><a name="ISO_DATE">ISO_DATE<\/a><\/dt>$/;"	a
-ISO_DATETIME	doc/api/ActiveRecord/ConnectionAdapters/Column/Format.html	/^				<dt><a name="ISO_DATETIME">ISO_DATETIME<\/a><\/dt>$/;"	a
-ImageUploader	app/uploaders/image_uploader.rb	/^class ImageUploader < CarrierWave::Uploader::Base$/;"	c
-JSON_ESCAPE	doc/api/ERB/Util.html	/^				<dt><a name="JSON_ESCAPE">JSON_ESCAPE<\/a><\/dt>$/;"	a
-JS_ESCAPE_MAP	doc/api/ActionView/Helpers/JavaScriptHelper.html	/^				<dt><a name="JS_ESCAPE_MAP">JS_ESCAPE_MAP<\/a><\/dt>$/;"	a
-Jasmine	spec/javascripts/support/jasmine_config.rb	/^module Jasmine$/;"	m
-Jcrop	vendor/assets/javascripts/jquery.Jcrop.js	/^\/**$/;"	f
-Jcrop.cssClass	vendor/assets/javascripts/jquery.Jcrop.js	/^    function cssClass(cl) {$/;"	f
-Jcrop.dragmodeHandler	vendor/assets/javascripts/jquery.Jcrop.js	/^    function dragmodeHandler(mode, f) \/\/{{{$/;"	f
-Jcrop.getPos	vendor/assets/javascripts/jquery.Jcrop.js	/^    function getPos(obj) \/\/{{{$/;"	f
-Jcrop.mouseAbs	vendor/assets/javascripts/jquery.Jcrop.js	/^    function mouseAbs(e) \/\/{{{$/;"	f
-Jcrop.myCursor	vendor/assets/javascripts/jquery.Jcrop.js	/^    function myCursor(type) \/\/{{{$/;"	f
-Jcrop.pct	vendor/assets/javascripts/jquery.Jcrop.js	/^    function pct(n) {$/;"	f
-Jcrop.px	vendor/assets/javascripts/jquery.Jcrop.js	/^    function px(n) {$/;"	f
-Jcrop.setOptions	vendor/assets/javascripts/jquery.Jcrop.js	/^    function setOptions(opt) \/\/{{{$/;"	f
-Jcrop.startDragMode	vendor/assets/javascripts/jquery.Jcrop.js	/^    function startDragMode(mode, pos) \/\/{{{$/;"	f
-Jcrop.supportsColorFade	vendor/assets/javascripts/jquery.Jcrop.js	/^    function supportsColorFade() {$/;"	f
-JoinOperation	doc/api/ActiveRecord/Relation.html	/^				<dt><a name="JoinOperation">JoinOperation<\/a><\/dt>$/;"	a
-Kaminari	spec/support/kaminari.rb	/^module Kaminari::ActionViewExtension::InstanceMethods$/;"	m
-LEADERS_AND_TRAILERS	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="LEADERS_AND_TRAILERS">LEADERS_AND_TRAILERS<\/a><\/dt>$/;"	a
-LEADERS_PAT	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="LEADERS_PAT">LEADERS_PAT<\/a><\/dt>$/;"	a
-LOST_CONNECTION_ERROR_MESSAGES	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<dt><a name="LOST_CONNECTION_ERROR_MESSAGES">LOST_CONNECTION_ERROR_MESSAGES<\/a><\/dt>$/;"	a
-Like	app/models/like.rb	/^class Like < ActiveRecord::Base$/;"	c
-LikesController	app/controllers/likes_controller.rb	/^class LikesController < ApplicationController$/;"	c
-LikesHelper	app/helpers/likes_helper.rb	/^module LikesHelper$/;"	m
-MAGENTA	doc/api/ActiveSupport/LogSubscriber.html	/^				<dt><a name="MAGENTA">MAGENTA<\/a><\/dt>$/;"	a
-MAPPING	doc/api/ActiveSupport/TimeZone.html	/^				<dt><a name="MAPPING">MAPPING<\/a><\/dt>$/;"	a
-MAX_BUFFER_SIZE	doc/api/ActiveSupport/BufferedLogger.html	/^				<dt><a name="MAX_BUFFER_SIZE">MAX_BUFFER_SIZE<\/a><\/dt>$/;"	a
-MAX_ID	doc/api/Fixtures.html	/^				<dt><a name="MAX_ID">MAX_ID<\/a><\/dt>$/;"	a
-MESSAGES	doc/api/ActiveModel/Validations/LengthValidator.html	/^				<dt><a name="MESSAGES">MESSAGES<\/a><\/dt>$/;"	a
-MODULES	doc/api/ActionController/Base.html	/^				<dt><a name="MODULES">MODULES<\/a><\/dt>$/;"	a
-MULTI_VALUE_METHODS	doc/api/ActiveRecord/Relation.html	/^				<dt><a name="MULTI_VALUE_METHODS">MULTI_VALUE_METHODS<\/a><\/dt>$/;"	a
-Modal	vendor/assets/javascripts/bootstrap-modal.js	/^  }$/;"	c
-Modal.show	vendor/assets/javascripts/bootstrap-modal.js	/^    , show: function () {$/;"	m
-Modal.toggle	vendor/assets/javascripts/bootstrap-modal.js	/^  Modal.prototype = {$/;"	m
-Mode	doc/api/ActiveSupport/Testing/Performance/Metrics/CpuTime.html	/^				<dt><a name="Mode">Mode<\/a><\/dt>$/;"	a
-Mode	doc/api/ActiveSupport/Testing/Performance/Metrics/GcRuns.html	/^				<dt><a name="Mode">Mode<\/a><\/dt>$/;"	a
-Mode	doc/api/ActiveSupport/Testing/Performance/Metrics/GcTime.html	/^				<dt><a name="Mode">Mode<\/a><\/dt>$/;"	a
-Mode	doc/api/ActiveSupport/Testing/Performance/Metrics/Memory.html	/^				<dt><a name="Mode">Mode<\/a><\/dt>$/;"	a
-Mode	doc/api/ActiveSupport/Testing/Performance/Metrics/Objects.html	/^				<dt><a name="Mode">Mode<\/a><\/dt>$/;"	a
-Mode	doc/api/ActiveSupport/Testing/Performance/Metrics/ProcessTime.html	/^				<dt><a name="Mode">Mode<\/a><\/dt>$/;"	a
-Mode	doc/api/ActiveSupport/Testing/Performance/Metrics/WallTime.html	/^				<dt><a name="Mode">Mode<\/a><\/dt>$/;"	a
-NATIVE_DATABASE_TYPES	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<dt><a name="NATIVE_DATABASE_TYPES">NATIVE_DATABASE_TYPES<\/a><\/dt>$/;"	a
-NATIVE_DATABASE_TYPES	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<dt><a name="NATIVE_DATABASE_TYPES">NATIVE_DATABASE_TYPES<\/a><\/dt>$/;"	a
-NORMALIZATION_FORMS	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="NORMALIZATION_FORMS">NORMALIZATION_FORMS<\/a><\/dt>$/;"	a
-ORIG_ARGV	doc/api/ActiveSupport/Testing/Isolation/Subprocess.html	/^				<dt><a name="ORIG_ARGV">ORIG_ARGV<\/a><\/dt>$/;"	a
-OpenSSLCipherError	doc/api/ActiveSupport/MessageEncryptor.html	/^				<dt><a name="OpenSSLCipherError">OpenSSLCipherError<\/a><\/dt>$/;"	a
-PARSING	doc/api/ActiveSupport/XmlMini.html	/^				<dt><a name="PARSING">PARSING<\/a><\/dt>$/;"	a
-PASSTHROUGH_EXCEPTIONS	doc/api/ActiveSupport/Testing/SetupAndTeardown/ForClassicTestUnit.html	/^				<dt><a name="PASSTHROUGH_EXCEPTIONS">PASSTHROUGH_EXCEPTIONS<\/a><\/dt>$/;"	a
-ParseError	doc/api/ActiveSupport/JSON/Backends/JSONGem.html	/^				<dt><a name="ParseError">ParseError<\/a><\/dt>$/;"	a
-ParseError	doc/api/ActiveSupport/JSON/Backends/Yajl.html	/^				<dt><a name="ParseError">ParseError<\/a><\/dt>$/;"	a
-ParseError	doc/api/ActiveSupport/JSON/Backends/Yaml.html	/^				<dt><a name="ParseError">ParseError<\/a><\/dt>$/;"	a
-Photo	app/models/photo.rb	/^class Photo < ActiveRecord::Base$/;"	c
-PhotoUploader	app/uploaders/photo_uploader.rb	/^class PhotoUploader < CarrierWave::Uploader::Base$/;"	c
-PhotosController	app/controllers/photos_controller.rb	/^class PhotosController < ApplicationController$/;"	c
-PhotosHelper	app/helpers/photos_helper.rb	/^module PhotosHelper$/;"	m
-Player	app/assets/javascripts/Player.js	/^function Player() {$/;"	f
-Player	app/assets/javascripts/Player.js	/^}$/;"	c
-Player.makeFavorite	app/assets/javascripts/Player.js	/^Player.prototype.makeFavorite = function() {$/;"	m
-Player.pause	app/assets/javascripts/Player.js	/^Player.prototype.pause = function() {$/;"	m
-Player.play	app/assets/javascripts/Player.js	/^Player.prototype.play = function(song) {$/;"	m
-Player.resume	app/assets/javascripts/Player.js	/^Player.prototype.resume = function() {$/;"	m
-Popover	vendor/assets/javascripts/bootstrap-popover.js	/^  }$/;"	c
-Popover	vendor/assets/javascripts/bootstrap-popover.js	/^  }$/;"	m
-ProfilesController	app/controllers/profiles_controller.rb	/^class ProfilesController < ApplicationController$/;"	c
-ProfilesHelper	app/helpers/profiles_helper.rb	/^module ProfilesHelper$/;"	m
-QUOTED_FALSE	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<dt><a name="QUOTED_FALSE">QUOTED_FALSE<\/a><\/dt>$/;"	a
-RED	doc/api/ActiveSupport/LogSubscriber.html	/^				<dt><a name="RED">RED<\/a><\/dt>$/;"	a
-REGEXPS	doc/api/LoadError.html	/^				<dt><a name="REGEXPS">REGEXPS<\/a><\/dt>$/;"	a
-REJECT_ALL_BLANK_PROC	doc/api/ActiveRecord/NestedAttributes/ClassMethods.html	/^				<dt><a name="REJECT_ALL_BLANK_PROC">REJECT_ALL_BLANK_PROC<\/a><\/dt>$/;"	a
-RENDERERS	doc/api/ActionController/Renderers.html	/^				<dt><a name="RENDERERS">RENDERERS<\/a><\/dt>$/;"	a
-RESERVED_OPTIONS	doc/api/ActiveModel/Validations/LengthValidator.html	/^				<dt><a name="RESERVED_OPTIONS">RESERVED_OPTIONS<\/a><\/dt>$/;"	a
-RESERVED_OPTIONS	doc/api/ActiveModel/Validations/NumericalityValidator.html	/^				<dt><a name="RESERVED_OPTIONS">RESERVED_OPTIONS<\/a><\/dt>$/;"	a
-RegistrationsController	app/controllers/registrations_controller.rb	/^class RegistrationsController < Devise::RegistrationsController$/;"	c
-RegistrationsHelper	app/helpers/registrations_helper.rb	/^module RegistrationsHelper$/;"	m
-Routes	doc/api/ActionController/Railtie.html	/^				<dt><a name="Routes">Routes<\/a><\/dt>$/;"	a
-SESSION_RECORD_KEY	doc/api/ActiveRecord/SessionStore.html	/^				<dt><a name="SESSION_RECORD_KEY">SESSION_RECORD_KEY<\/a><\/dt>$/;"	a
-SINGLE_VALUE_METHODS	doc/api/ActiveRecord/Relation.html	/^				<dt><a name="SINGLE_VALUE_METHODS">SINGLE_VALUE_METHODS<\/a><\/dt>$/;"	a
-STORAGE_UNITS	doc/api/ActionView/Helpers/NumberHelper.html	/^				<dt><a name="STORAGE_UNITS">STORAGE_UNITS<\/a><\/dt>$/;"	a
-ScrollSpy	vendor/assets/javascripts/bootstrap-scrollspy.js	/^  }$/;"	c
-ScrollSpy.refresh	vendor/assets/javascripts/bootstrap-scrollspy.js	/^  ScrollSpy.prototype = {$/;"	m
-SearchController	app/controllers/search_controller.rb	/^class SearchController < ApplicationController$/;"	c
-SearchHelper	app/helpers/search_helper.rb	/^module SearchHelper$/;"	m
-Song	app/assets/javascripts/Song.js	/^function Song() {$/;"	f
-Song	app/assets/javascripts/Song.js	/^}$/;"	c
-Song.persistFavoriteStatus	app/assets/javascripts/Song.js	/^Song.prototype.persistFavoriteStatus = function(value) {$/;"	m
-SpecBuilder	spec/javascripts/support/jasmine_config.rb	/^  class SpecBuilder$/;"	c	class:Jasmine
-TOGGLE_EFFECTS	doc/api/ActionView/Helpers/ScriptaculousHelper.html	/^				<dt><a name="TOGGLE_EFFECTS">TOGGLE_EFFECTS<\/a><\/dt>$/;"	a
-TRAILERS_PAT	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="TRAILERS_PAT">TRAILERS_PAT<\/a><\/dt>$/;"	a
-TRUE_VALUES	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<dt><a name="TRUE_VALUES">TRUE_VALUES<\/a><\/dt>$/;"	a
-TYPE_NAMES	doc/api/ActiveSupport/XmlMini.html	/^				<dt><a name="TYPE_NAMES">TYPE_NAMES<\/a><\/dt>$/;"	a
-Twipsy	vendor/assets/javascripts/bootstrap-twipsy.js	/^  }$/;"	c
-Twipsy.show	vendor/assets/javascripts/bootstrap-twipsy.js	/^  Twipsy.prototype = {$/;"	m
-UNICODE_VERSION	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="UNICODE_VERSION">UNICODE_VERSION<\/a><\/dt>$/;"	a
-UNIVERSAL_OPTIONS	doc/api/ActiveSupport/Cache.html	/^				<dt><a name="UNIVERSAL_OPTIONS">UNIVERSAL_OPTIONS<\/a><\/dt>$/;"	a
-UNKNOWN	doc/api/ActiveSupport/BufferedLogger/Severity.html	/^				<dt><a name="UNKNOWN">UNKNOWN<\/a><\/dt>$/;"	a
-UTC_OFFSET_WITHOUT_COLON	doc/api/ActiveSupport/TimeZone.html	/^				<dt><a name="UTC_OFFSET_WITHOUT_COLON">UTC_OFFSET_WITHOUT_COLON<\/a><\/dt>$/;"	a
-UTC_OFFSET_WITH_COLON	doc/api/ActiveSupport/TimeZone.html	/^				<dt><a name="UTC_OFFSET_WITH_COLON">UTC_OFFSET_WITH_COLON<\/a><\/dt>$/;"	a
-UnknownAction	doc/api/ActionController/Compatibility.html	/^				<dt><a name="UnknownAction">UnknownAction<\/a><\/dt>$/;"	a
-User	app/models/user.rb	/^class User < ActiveRecord::Base$/;"	c
-VALID_FIND_OPTIONS	doc/api/ActiveRecord/SpawnMethods.html	/^				<dt><a name="VALID_FIND_OPTIONS">VALID_FIND_OPTIONS<\/a><\/dt>$/;"	a
-WARN	doc/api/ActiveSupport/BufferedLogger/Severity.html	/^				<dt><a name="WARN">WARN<\/a><\/dt>$/;"	a
-WHITE	doc/api/ActiveSupport/LogSubscriber.html	/^				<dt><a name="WHITE">WHITE<\/a><\/dt>$/;"	a
-WHITESPACE	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<dt><a name="WHITESPACE">WHITESPACE<\/a><\/dt>$/;"	a
-XHTML_TAG_NAMES	doc/api/ActionView/Helpers/AtomFeedHelper/AtomBuilder.html	/^				<dt><a name="XHTML_TAG_NAMES">XHTML_TAG_NAMES<\/a><\/dt>$/;"	a
-YAML_MAPPING	doc/api/BigDecimal.html	/^				<dt><a name="YAML_MAPPING">YAML_MAPPING<\/a><\/dt>$/;"	a
-YAML_TAG	doc/api/BigDecimal.html	/^				<dt><a name="YAML_TAG">YAML_TAG<\/a><\/dt>$/;"	a
-YELLOW	doc/api/ActiveSupport/LogSubscriber.html	/^				<dt><a name="YELLOW">YELLOW<\/a><\/dt>$/;"	a
-abstract_class	doc/api/ActiveRecord/Base.html	/^				<a name="abstract_class"><\/a>$/;"	a
-abstract_class=	doc/api/ActiveRecord/Base.html	/^				<a name="abstract_class="><\/a>$/;"	a
-active_record	doc/api/ActiveRecord/Reflection/MacroReflection.html	/^				<a name="active_record"><\/a>$/;"	a
-already_likes	app/models/user.rb	/^  def already_likes(creation)$/;"	f	class:User
-animateTo	vendor/assets/javascripts/jquery.Jcrop.js	/^    function animateTo(a, callback) \/\/{{{$/;"	f
-animateTo.queueAnimator	vendor/assets/javascripts/jquery.Jcrop.js	/^      function queueAnimator() {$/;"	f
-api.animateTo	vendor/assets/javascripts/jquery.Jcrop.js	/^      setImage: setImage,$/;"	p
-api.cancel	vendor/assets/javascripts/jquery.Jcrop.js	/^      enable: enableCrop,$/;"	p
-api.disable	vendor/assets/javascripts/jquery.Jcrop.js	/^      setClass: setClass,$/;"	p
-api.enable	vendor/assets/javascripts/jquery.Jcrop.js	/^      disable: disableCrop,$/;"	p
-api.release	vendor/assets/javascripts/jquery.Jcrop.js	/^      cancel: cancelCrop,$/;"	p
-api.setClass	vendor/assets/javascripts/jquery.Jcrop.js	/^      tellScaled: tellScaled,$/;"	p
-api.setImage	vendor/assets/javascripts/jquery.Jcrop.js	/^    var api = {$/;"	p
-api.setOptions	vendor/assets/javascripts/jquery.Jcrop.js	/^      setSelect: setSelect,$/;"	p
-api.setSelect	vendor/assets/javascripts/jquery.Jcrop.js	/^      animateTo: animateTo,$/;"	p
-api.tellScaled	vendor/assets/javascripts/jquery.Jcrop.js	/^      tellSelect: tellSelect,$/;"	p
-api.tellSelect	vendor/assets/javascripts/jquery.Jcrop.js	/^      setOptions: setOptionsNew,$/;"	p
-attribute	doc/api/ActiveRecord/AttributeAssignmentError.html	/^				<a name="attribute"><\/a>$/;"	a
-attribute_names	doc/api/ActiveRecord/DynamicFinderMatch.html	/^				<a name="attribute_names"><\/a>$/;"	a
-attribute_names	doc/api/ActiveRecord/DynamicScopeMatch.html	/^				<a name="attribute_names"><\/a>$/;"	a
-attributes	doc/api/ActiveModel/EachValidator.html	/^				<a name="attributes"><\/a>$/;"	a
-auth_type	doc/api/ActiveResource/Connection.html	/^				<a name="auth_type"><\/a>$/;"	a
-auto_flushing	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="auto_flushing"><\/a>$/;"	a
-avatar_url	app/helpers/application_helper.rb	/^  def avatar_url(user)$/;"	f	class:ApplicationHelper
-backend	doc/api/ActiveSupport/XmlMini.html	/^				<a name="backend"><\/a>$/;"	a
-backtrace	doc/api/ActiveSupport/Testing/RemoteError.html	/^				<a name="backtrace"><\/a>$/;"	a
-bgopacity	vendor/assets/javascripts/jquery.Jcrop.js	/^    var bgopacity = options.bgOpacity,$/;"	v
-bindMatcher	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^  var bindMatcher = function(methodName) {$/;"	f
-body	doc/api/ActiveResource/Request.html	/^				<a name="body"><\/a>$/;"	a
-body	doc/api/ActiveResource/Response.html	/^				<a name="body"><\/a>$/;"	a
-body=	doc/api/ActiveResource/Request.html	/^				<a name="body="><\/a>$/;"	a
-body=	doc/api/ActiveResource/Response.html	/^				<a name="body="><\/a>$/;"	a
-bound	vendor/assets/javascripts/jquery.Jcrop.js	/^    var bound = options.boundary;$/;"	v
-boundx	vendor/assets/javascripts/jquery.Jcrop.js	/^    var boundx = $img.width(),$/;"	v
-break.top	vendor/assets/javascripts/bootstrap-twipsy.js	/^            tp = {top: pos.top + pos.height \/ 2 - actualHeight \/ 2, left: pos.left + pos.width + this.options.offset}$/;"	p
-break.top	vendor/assets/javascripts/bootstrap-twipsy.js	/^            tp = {top: pos.top + pos.height \/ 2 - actualHeight \/ 2, left: pos.left - actualWidth - this.options.offset}$/;"	p
-break.top	vendor/assets/javascripts/bootstrap-twipsy.js	/^            tp = {top: pos.top - actualHeight - this.options.offset, left: pos.left + pos.width \/ 2 - actualWidth \/ 2}$/;"	p
-build_resource	app/controllers/registrations_controller.rb	/^  def build_resource(*args)$/;"	f	class:RegistrationsController
-cache_path	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="cache_path"><\/a>$/;"	a
-cancelCrop	vendor/assets/javascripts/jquery.Jcrop.js	/^    function cancelCrop() \/\/{{{$/;"	f
-case.top	vendor/assets/javascripts/bootstrap-twipsy.js	/^            tp = {top: pos.top + pos.height + this.options.offset, left: pos.left + pos.width \/ 2 - actualWidth \/ 2}$/;"	p
-chain	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="chain"><\/a>$/;"	a
-chain=	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="chain="><\/a>$/;"	a
-change	db/migrate/20111216042304_create_photos.rb	/^  def change$/;"	f	class:CreatePhotos
-change	db/migrate/20120106021715_create_likes.rb	/^  def change$/;"	f	class:CreateLikes
-code	doc/api/ActiveResource/Response.html	/^				<a name="code"><\/a>$/;"	a
-code	doc/api/ActiveSupport/Multibyte/Unicode/Codepoint.html	/^				<a name="code"><\/a>$/;"	a
-code=	doc/api/ActiveResource/Response.html	/^				<a name="code="><\/a>$/;"	a
-code=	doc/api/ActiveSupport/Multibyte/Unicode/Codepoint.html	/^				<a name="code="><\/a>$/;"	a
-collection	doc/api/ActiveModel/Name.html	/^				<a name="collection"><\/a>$/;"	a
-colors.aqua	vendor/assets/javascripts/jquery.color.js	/^	var colors = {$/;"	p
-columns	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="columns"><\/a>$/;"	a
-columns=	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="columns="><\/a>$/;"	a
-combining_class	doc/api/ActiveSupport/Multibyte/Unicode/Codepoint.html	/^				<a name="combining_class"><\/a>$/;"	a
-combining_class=	doc/api/ActiveSupport/Multibyte/Unicode/Codepoint.html	/^				<a name="combining_class="><\/a>$/;"	a
-config	doc/api/ActiveSupport/Callbacks/CallbackChain.html	/^				<a name="config"><\/a>$/;"	a
-connection_pools	doc/api/ActiveRecord/ConnectionAdapters/ConnectionHandler.html	/^				<a name="connection_pools"><\/a>$/;"	a
-connections	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="connections"><\/a>$/;"	a
-controller	doc/api/ActionController/Responder.html	/^				<a name="controller"><\/a>$/;"	a
-controller	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="controller"><\/a>$/;"	a
-controller=	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="controller="><\/a>$/;"	a
-controller_path	doc/api/ActionView/TestCase/TestController.html	/^				<a name="controller_path"><\/a>$/;"	a
-controller_path=	doc/api/ActionView/TestCase/TestController.html	/^				<a name="controller_path="><\/a>$/;"	a
-create	app/controllers/creations_controller.rb	/^  def create$/;"	f	class:CreationsController
-create	app/controllers/likes_controller.rb	/^  def create$/;"	f	class:LikesController
-create	app/controllers/photos_controller.rb	/^  def create$/;"	f	class:PhotosController
-create	app/controllers/registrations_controller.rb	/^  def create$/;"	f	class:RegistrationsController
-createDragger	vendor/assets/javascripts/jquery.Jcrop.js	/^    function createDragger(ord) \/\/{{{$/;"	f
-createMover	vendor/assets/javascripts/jquery.Jcrop.js	/^    function createMover(pos) \/\/{{{$/;"	f
-create_with_value	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="create_with_value"><\/a>$/;"	a
-create_with_value=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="create_with_value="><\/a>$/;"	a
-created_at	doc/api/ActiveSupport/Cache/Entry.html	/^				<a name="created_at"><\/a>$/;"	a
-crop	app/controllers/creations_controller.rb	/^  def crop$/;"	f	class:CreationsController
-crop_update	app/controllers/creations_controller.rb	/^  def crop_update$/;"	f	class:CreationsController
-cropping?	app/models/creation.rb	/^  def cropping?$/;"	f	class:Creation
-data	doc/api/ActiveRecord/SessionStore/Session.html	/^				<a name="data"><\/a>$/;"	a
-data	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="data"><\/a>$/;"	a
-data=	doc/api/ActiveRecord/SessionStore/Session.html	/^				<a name="data="><\/a>$/;"	a
-data=	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="data="><\/a>$/;"	a
-declare_spec	spec/javascripts/support/jasmine_config.rb	/^    def declare_spec(parent, spec)$/;"	f	class:Jasmine.SpecBuilder
-decomp_mapping	doc/api/ActiveSupport/Multibyte/Unicode/Codepoint.html	/^				<a name="decomp_mapping"><\/a>$/;"	a
-decomp_mapping=	doc/api/ActiveSupport/Multibyte/Unicode/Codepoint.html	/^				<a name="decomp_mapping="><\/a>$/;"	a
-decomp_type	doc/api/ActiveSupport/Multibyte/Unicode/Codepoint.html	/^				<a name="decomp_type"><\/a>$/;"	a
-decomp_type=	doc/api/ActiveSupport/Multibyte/Unicode/Codepoint.html	/^				<a name="decomp_type="><\/a>$/;"	a
-default	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="default"><\/a>$/;"	a
-default_normalization_form	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="default_normalization_form"><\/a>$/;"	a
-default_normalization_form=	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="default_normalization_form="><\/a>$/;"	a
-destroy	app/controllers/creations_controller.rb	/^  def destroy$/;"	f	class:CreationsController
-destroy	app/controllers/photos_controller.rb	/^  def destroy$/;"	f	class:PhotosController
-destroy	vendor/assets/javascripts/jquery.Jcrop.js	/^    function destroy() \/\/{{{$/;"	f
-disableCrop	vendor/assets/javascripts/jquery.Jcrop.js	/^    function disableCrop() \/\/{{{$/;"	f
-document_class	doc/api/ActiveSupport/XmlMini_LibXMLSAX.html	/^				<a name="document_class"><\/a>$/;"	a
-document_class	doc/api/ActiveSupport/XmlMini_NokogiriSAX.html	/^				<a name="document_class"><\/a>$/;"	a
-document_class=	doc/api/ActiveSupport/XmlMini_LibXMLSAX.html	/^				<a name="document_class="><\/a>$/;"	a
-document_class=	doc/api/ActiveSupport/XmlMini_NokogiriSAX.html	/^				<a name="document_class="><\/a>$/;"	a
-doneSelect	vendor/assets/javascripts/jquery.Jcrop.js	/^    function doneSelect(pos) \/\/{{{$/;"	f
-down	db/migrate/20110417070236_devise_create_users.rb	/^  def self.down$/;"	F	class:DeviseCreateUsers
-down	db/migrate/20110419012853_create_authentications.rb	/^  def self.down$/;"	F	class:CreateAuthentications
-down	db/migrate/20110503032142_create_creations.rb	/^  def self.down$/;"	F	class:CreateCreations
-down	db/migrate/20110504010209_add_user_id_to_creations.rb	/^  def self.down$/;"	F	class:AddUserIdToCreations
-down	db/migrate/20110504144954_add_image_to_creations.rb	/^  def self.down$/;"	F	class:AddImageToCreations
-down	db/migrate/20110505035236_add_name_to_users.rb	/^  def self.down$/;"	F	class:AddNameToUsers
-down	db/migrate/20110803020957_create_categories.rb	/^  def self.down$/;"	F	class:CreateCategories
-down	db/migrate/20110803021631_create_creation_category_join_table.rb	/^  def self.down$/;"	F	class:CreateCreationCategoryJoinTable
-down	db/migrate/20110808024353_add_slug_to_categories.rb	/^  def self.down$/;"	F	class:AddSlugToCategories
-down	db/migrate/20111125071349_drop_authentications.rb	/^  def down$/;"	f	class:DropAuthentications
-duration	doc/api/ActiveSupport/Notifications/Event.html	/^				<a name="duration"><\/a>$/;"	a
-eager_load_values	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="eager_load_values"><\/a>$/;"	a
-eager_load_values=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="eager_load_values="><\/a>$/;"	a
-edit	app/controllers/creations_controller.rb	/^  def edit$/;"	f	class:CreationsController
-element	doc/api/ActiveModel/Name.html	/^				<a name="element"><\/a>$/;"	a
-enableCrop	vendor/assets/javascripts/jquery.Jcrop.js	/^    function enableCrop() \/\/{{{$/;"	f
-end	doc/api/ActiveSupport/Notifications/Event.html	/^				<a name="end"><\/a>$/;"	a
-errors	doc/api/ActiveRecord/MultiparameterAssignmentErrors.html	/^				<a name="errors"><\/a>$/;"	a
-exception	doc/api/ActiveRecord/AttributeAssignmentError.html	/^				<a name="exception"><\/a>$/;"	a
-expires_in	doc/api/ActiveSupport/Cache/Entry.html	/^				<a name="expires_in"><\/a>$/;"	a
-extension	doc/api/ActionController/Caching/Actions/ActionCachePath.html	/^				<a name="extension"><\/a>$/;"	a
-extension_white_list	app/uploaders/image_uploader.rb	/^  def extension_white_list$/;"	f	class:ImageUploader
-extension_white_list	app/uploaders/photo_uploader.rb	/^  def extension_white_list$/;"	f	class:PhotoUploader
-extensions	doc/api/ActiveRecord/Relation.html	/^				<a name="extensions"><\/a>$/;"	a
-extensions=	doc/api/ActiveRecord/Relation.html	/^				<a name="extensions="><\/a>$/;"	a
-filename	app/uploaders/image_uploader.rb	/^  def filename$/;"	f	class:ImageUploader
-filename	app/uploaders/photo_uploader.rb	/^  def filename$/;"	f	class:PhotoUploader
-filename	doc/api/ActiveRecord/MigrationProxy.html	/^				<a name="filename"><\/a>$/;"	a
-filename=	doc/api/ActiveRecord/MigrationProxy.html	/^				<a name="filename="><\/a>$/;"	a
-filter	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="filter"><\/a>$/;"	a
-filter=	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="filter="><\/a>$/;"	a
-find_creation	app/controllers/likes_controller.rb	/^  def find_creation$/;"	f	class:LikesController
-find_creation	app/controllers/photos_controller.rb	/^  def find_creation$/;"	f	class:PhotosController
-find_or_build_photo	app/controllers/photos_controller.rb	/^  def find_or_build_photo$/;"	f	class:PhotosController
-finder	doc/api/ActiveRecord/DynamicFinderMatch.html	/^				<a name="finder"><\/a>$/;"	a
-flush_count	doc/api/ActiveSupport/LogSubscriber/TestHelper/MockLogger.html	/^				<a name="flush_count"><\/a>$/;"	a
-fn.dropdown	vendor/assets/javascripts/bootstrap-dropdown.js	/^\/* ============================================================$/;"	f
-format	doc/api/ActionController/Responder.html	/^				<a name="format"><\/a>$/;"	a
-format	doc/api/ActiveResource/Connection.html	/^				<a name="format"><\/a>$/;"	a
-format=	doc/api/ActiveResource/Connection.html	/^				<a name="format="><\/a>$/;"	a
-formats	doc/api/ActionView/Template.html	/^				<a name="formats"><\/a>$/;"	a
-from_value	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="from_value"><\/a>$/;"	a
-from_value=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="from_value="><\/a>$/;"	a
-function.$	vendor/assets/javascripts/bootstrap-modal.js	/^  }$/;"	m
-function.$.$.function.$.options.show	vendor/assets/javascripts/bootstrap-modal.js	/^        options = {$/;"	p
-function.enter	vendor/assets/javascripts/bootstrap-twipsy.js	/^    function enter() {$/;"	f
-function.leave	vendor/assets/javascripts/bootstrap-twipsy.js	/^    function leave() {$/;"	f
-function.removeBackdrop	vendor/assets/javascripts/bootstrap-modal.js	/^  function removeBackdrop() {$/;"	c
-function.removeBackdrop.escape	vendor/assets/javascripts/bootstrap-modal.js	/^  function escape() {$/;"	f
-getColor	vendor/assets/javascripts/jquery.color.js	/^	function getColor(elem, attr) {$/;"	f
-getRGB	vendor/assets/javascripts/jquery.color.js	/^	function getRGB(color) {$/;"	f
-group_values	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="group_values"><\/a>$/;"	a
-group_values=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="group_values="><\/a>$/;"	a
-guideMenu	doc/guides/javascripts/guides.js	/^function guideMenu(){$/;"	f
-handler	doc/api/ActionView/Template.html	/^				<a name="handler"><\/a>$/;"	a
-hasProperty	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^  var hasProperty = function(actualValue, expectedValue) {$/;"	f
-hash	doc/api/ActionView/FixtureResolver.html	/^				<a name="hash"><\/a>$/;"	a
-hash	doc/api/ActiveSupport/XmlMini_LibXMLSAX/HashBuilder.html	/^				<a name="hash"><\/a>$/;"	a
-hash	doc/api/ActiveSupport/XmlMini_NokogiriSAX/HashBuilder.html	/^				<a name="hash"><\/a>$/;"	a
-having_values	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="having_values"><\/a>$/;"	a
-having_values=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="having_values="><\/a>$/;"	a
-headers	doc/api/ActiveResource/Request.html	/^				<a name="headers"><\/a>$/;"	a
-headers	doc/api/ActiveResource/Response.html	/^				<a name="headers"><\/a>$/;"	a
-headers=	doc/api/ActiveResource/Request.html	/^				<a name="headers="><\/a>$/;"	a
-headers=	doc/api/ActiveResource/Response.html	/^				<a name="headers="><\/a>$/;"	a
-helper_class	doc/api/ActionView/TestCase/Behavior/ClassMethods.html	/^				<a name="helper_class"><\/a>$/;"	a
-helper_class=	doc/api/ActionView/TestCase/Behavior/ClassMethods.html	/^				<a name="helper_class="><\/a>$/;"	a
-humans	doc/api/ActiveSupport/Inflector/Inflections.html	/^				<a name="humans"><\/a>$/;"	a
-i18n_key	doc/api/ActiveModel/Name.html	/^				<a name="i18n_key"><\/a>$/;"	a
-id	doc/api/ActiveSupport/Notifications/Instrumenter.html	/^				<a name="id"><\/a>$/;"	a
-identifier	doc/api/ActionView/Template.html	/^				<a name="identifier"><\/a>$/;"	a
-img.onload	vendor/assets/javascripts/jquery.Jcrop.js	/^      var img = new Image();$/;"	f
-img.onload.attachAttempt	vendor/assets/javascripts/jquery.Jcrop.js	/^        function attachAttempt() {$/;"	f
-img.onload.attachJcrop	vendor/assets/javascripts/jquery.Jcrop.js	/^        function attachJcrop() {$/;"	f
-img_css.border	vendor/assets/javascripts/jquery.Jcrop.js	/^    var img_css = {$/;"	p
-img_css.margin	vendor/assets/javascripts/jquery.Jcrop.js	/^      border: 'none',$/;"	p
-img_css.padding	vendor/assets/javascripts/jquery.Jcrop.js	/^      margin: 0,$/;"	p
-img_css.position	vendor/assets/javascripts/jquery.Jcrop.js	/^      padding: 0,$/;"	p
-includes_values	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="includes_values"><\/a>$/;"	a
-includes_values=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="includes_values="><\/a>$/;"	a
-index	app/controllers/creations_controller.rb	/^  def index$/;"	f	class:CreationsController
-index	app/controllers/home_controller.rb	/^  def index$/;"	f	class:HomeController
-index	app/controllers/likes_controller.rb	/^  def index$/;"	f	class:LikesController
-index	app/controllers/profiles_controller.rb	/^  def index$/;"	f	class:ProfilesController
-index	app/controllers/search_controller.rb	/^  def index$/;"	f	class:SearchController
-instantiator	doc/api/ActiveRecord/DynamicFinderMatch.html	/^				<a name="instantiator"><\/a>$/;"	a
-interfaceUpdate	vendor/assets/javascripts/jquery.Jcrop.js	/^    function interfaceUpdate(alt) \/\/{{{$/;"	f
-jasmine.Fixtures	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^};$/;"	c
-jasmine.Fixtures.cleanUp	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^jasmine.Fixtures.prototype.cleanUp = function() {$/;"	m
-jasmine.Fixtures.clearCache	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^jasmine.Fixtures.prototype.clearCache = function() {$/;"	m
-jasmine.Fixtures.createContainer_	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^jasmine.Fixtures.prototype.createContainer_ = function(html) {$/;"	m
-jasmine.Fixtures.load	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^jasmine.Fixtures.prototype.load = function() {$/;"	m
-jasmine.Fixtures.loadFixtureIntoCache_	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^jasmine.Fixtures.prototype.loadFixtureIntoCache_ = function(relativeUrl) {$/;"	m
-jasmine.Fixtures.preload	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^jasmine.Fixtures.prototype.preload = function() {$/;"	m
-jasmine.Fixtures.proxyCallTo_	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^jasmine.Fixtures.prototype.proxyCallTo_ = function(methodName, passedArguments) {$/;"	m
-jasmine.Fixtures.read	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^jasmine.Fixtures.prototype.read = function() {$/;"	m
-jasmine.Fixtures.sandbox	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^jasmine.Fixtures.prototype.sandbox = function(attributes) {$/;"	m
-jasmine.Fixtures.set	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^jasmine.Fixtures.prototype.set = function(html) {$/;"	m
-jasmine.JQuery	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^};$/;"	f
-jasmine.JQuery.browserTagCaseIndependentHtml	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^jasmine.JQuery = function() {};$/;"	f
-jasmine.JQuery.elementToString	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^};$/;"	f
-jasmine.JQuery.matchersClass	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    var builtInMatcher = jasmine.Matchers.prototype[methodName];$/;"	f
-jasmine.getFixtures	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^}$/;"	f
-joins_values	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="joins_values"><\/a>$/;"	a
-joins_values=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="joins_values="><\/a>$/;"	a
-kind	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="kind"><\/a>$/;"	a
-kind=	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="kind="><\/a>$/;"	a
-klass	doc/api/ActiveRecord/Relation.html	/^				<a name="klass"><\/a>$/;"	a
-klass	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="klass"><\/a>$/;"	a
-klass=	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="klass="><\/a>$/;"	a
-last_update_at	doc/api/ActiveSupport/FileUpdateChecker.html	/^				<a name="last_update_at"><\/a>$/;"	a
-level	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="level"><\/a>$/;"	a
-level	doc/api/ActiveSupport/LogSubscriber/TestHelper/MockLogger.html	/^				<a name="level"><\/a>$/;"	a
-level=	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="level="><\/a>$/;"	a
-level=	doc/api/ActiveSupport/LogSubscriber/TestHelper/MockLogger.html	/^				<a name="level="><\/a>$/;"	a
-like	app/models/user.rb	/^  def like( creation )$/;"	f	class:User
-limit	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="limit"><\/a>$/;"	a
-limit_value	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="limit_value"><\/a>$/;"	a
-limit_value=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="limit_value="><\/a>$/;"	a
-loadFixtures	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^var loadFixtures = function() {$/;"	f
-loaded	doc/api/ActiveRecord/Relation.html	/^				<a name="loaded"><\/a>$/;"	a
-locals	doc/api/ActionView/TestCase/Behavior/Locals.html	/^				<a name="locals"><\/a>$/;"	a
-locals=	doc/api/ActionView/TestCase/Behavior/Locals.html	/^				<a name="locals="><\/a>$/;"	a
-lock_value	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="lock_value"><\/a>$/;"	a
-lock_value=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="lock_value="><\/a>$/;"	a
-logger	doc/api/ActiveModel/MassAssignmentSecurity/PermissionSet.html	/^				<a name="logger"><\/a>$/;"	a
-logger=	doc/api/ActiveModel/MassAssignmentSecurity/PermissionSet.html	/^				<a name="logger="><\/a>$/;"	a
-lowercase_mapping	doc/api/ActiveSupport/Multibyte/Unicode/Codepoint.html	/^				<a name="lowercase_mapping"><\/a>$/;"	a
-lowercase_mapping=	doc/api/ActiveSupport/Multibyte/Unicode/Codepoint.html	/^				<a name="lowercase_mapping="><\/a>$/;"	a
-macro	doc/api/ActiveRecord/Reflection/MacroReflection.html	/^				<a name="macro"><\/a>$/;"	a
-mailer_name	doc/api/ActionMailer/Base.html	/^				<a name="mailer_name"><\/a>$/;"	a
-mailer_name=	doc/api/ActionMailer/Base.html	/^				<a name="mailer_name="><\/a>$/;"	a
-manualcrop	app/uploaders/image_uploader.rb	/^  def manualcrop$/;"	f	class:ImageUploader
-message	doc/api/ActiveResource/Response.html	/^				<a name="message"><\/a>$/;"	a
-message	doc/api/ActiveSupport/Testing/RemoteError.html	/^				<a name="message"><\/a>$/;"	a
-message=	doc/api/ActiveResource/Response.html	/^				<a name="message="><\/a>$/;"	a
-method	doc/api/ActiveResource/Request.html	/^				<a name="method"><\/a>$/;"	a
-method-c-%3D%3D%3D	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-%3D%3D%3D"><\/a>$/;"	a
-method-c-%3D%3D%3D	doc/api/Time.html	/^				<a name="method-c-%3D%3D%3D"><\/a>$/;"	a
-method-c-%5B%5D	doc/api/ActiveResource/Formats.html	/^				<a name="method-c-%5B%5D"><\/a>$/;"	a
-method-c-%5B%5D	doc/api/ActiveSupport/Testing/Performance/Metrics.html	/^				<a name="method-c-%5B%5D"><\/a>$/;"	a
-method-c-%5B%5D	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-c-%5B%5D"><\/a>$/;"	a
-method-c-_load	doc/api/Time.html	/^				<a name="method-c-_load"><\/a>$/;"	a
-method-c-_load_without_utc_flag	doc/api/Time.html	/^				<a name="method-c-_load_without_utc_flag"><\/a>$/;"	a
-method-c-_load_without_zone	doc/api/Time.html	/^				<a name="method-c-_load_without_zone"><\/a>$/;"	a
-method-c-_write_render_options	doc/api/ActionController/Renderers/All.html	/^				<a name="method-c-_write_render_options"><\/a>$/;"	a
-method-c-abstract_class%3F	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-abstract_class%3F"><\/a>$/;"	a
-method-c-action	doc/api/ActionController/Metal.html	/^				<a name="method-c-action"><\/a>$/;"	a
-method-c-add	doc/api/ActionController/Renderers.html	/^				<a name="method-c-add"><\/a>$/;"	a
-method-c-after_dispatch	doc/api/ActionController/Dispatcher.html	/^				<a name="method-c-after_dispatch"><\/a>$/;"	a
-method-c-aggregate_mapping	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-aggregate_mapping"><\/a>$/;"	a
-method-c-all	doc/api/ActiveResource/Base.html	/^				<a name="method-c-all"><\/a>$/;"	a
-method-c-all	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-c-all"><\/a>$/;"	a
-method-c-all_attributes_exists%3F	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-all_attributes_exists%3F"><\/a>$/;"	a
-method-c-announce	doc/api/ActiveRecord/Migration.html	/^				<a name="method-c-announce"><\/a>$/;"	a
-method-c-application	doc/api/Rails.html	/^				<a name="method-c-application"><\/a>$/;"	a
-method-c-application%3D	doc/api/Rails.html	/^				<a name="method-c-application%3D"><\/a>$/;"	a
-method-c-arel_engine	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-arel_engine"><\/a>$/;"	a
-method-c-arel_table	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-arel_table"><\/a>$/;"	a
-method-c-atomic_write	doc/api/File.html	/^				<a name="method-c-atomic_write"><\/a>$/;"	a
-method-c-attach_to	doc/api/ActiveSupport/LogSubscriber.html	/^				<a name="method-c-attach_to"><\/a>$/;"	a
-method-c-attr_readonly	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-attr_readonly"><\/a>$/;"	a
-method-c-attribute_method%3F	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-attribute_method%3F"><\/a>$/;"	a
-method-c-attributes_protected_by_default	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-attributes_protected_by_default"><\/a>$/;"	a
-method-c-auth_type	doc/api/ActiveResource/Base.html	/^				<a name="method-c-auth_type"><\/a>$/;"	a
-method-c-auth_type%3D	doc/api/ActiveResource/Base.html	/^				<a name="method-c-auth_type%3D"><\/a>$/;"	a
-method-c-backend	doc/api/ActiveSupport/JSON.html	/^				<a name="method-c-backend"><\/a>$/;"	a
-method-c-backend%3D	doc/api/ActiveSupport/JSON.html	/^				<a name="method-c-backend%3D"><\/a>$/;"	a
-method-c-backtrace_cleaner	doc/api/Rails.html	/^				<a name="method-c-backtrace_cleaner"><\/a>$/;"	a
-method-c-base64	doc/api/ActiveSupport/SecureRandom.html	/^				<a name="method-c-base64"><\/a>$/;"	a
-method-c-base_class	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-base_class"><\/a>$/;"	a
-method-c-before_dispatch	doc/api/ActionController/Dispatcher.html	/^				<a name="method-c-before_dispatch"><\/a>$/;"	a
-method-c-binary_to_string	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-binary_to_string"><\/a>$/;"	a
-method-c-build	doc/api/ActionController/Middleware.html	/^				<a name="method-c-build"><\/a>$/;"	a
-method-c-build	doc/api/ActiveResource/Base.html	/^				<a name="method-c-build"><\/a>$/;"	a
-method-c-build_mem_cache	doc/api/ActiveSupport/Cache/MemCacheStore.html	/^				<a name="method-c-build_mem_cache"><\/a>$/;"	a
-method-c-cache	doc/api/Rails.html	/^				<a name="method-c-cache"><\/a>$/;"	a
-method-c-cache_fixtures	doc/api/Fixtures.html	/^				<a name="method-c-cache_fixtures"><\/a>$/;"	a
-method-c-cache_for_connection	doc/api/Fixtures.html	/^				<a name="method-c-cache_for_connection"><\/a>$/;"	a
-method-c-cached_fixtures	doc/api/Fixtures.html	/^				<a name="method-c-cached_fixtures"><\/a>$/;"	a
-method-c-call	doc/api/ActionController/Metal.html	/^				<a name="method-c-call"><\/a>$/;"	a
-method-c-call	doc/api/ActionController/Responder.html	/^				<a name="method-c-call"><\/a>$/;"	a
-method-c-call	doc/api/ActionView/Template/Handler.html	/^				<a name="method-c-call"><\/a>$/;"	a
-method-c-civil_from_format	doc/api/DateTime.html	/^				<a name="method-c-civil_from_format"><\/a>$/;"	a
-method-c-class_of_active_record_descendant	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-class_of_active_record_descendant"><\/a>$/;"	a
-method-c-clear	doc/api/ActiveSupport/DescendantsTracker.html	/^				<a name="method-c-clear"><\/a>$/;"	a
-method-c-clear%21	doc/api/ActiveSupport/Dependencies/Reference.html	/^				<a name="method-c-clear%21"><\/a>$/;"	a
-method-c-collection_path	doc/api/ActiveResource/Base.html	/^				<a name="method-c-collection_path"><\/a>$/;"	a
-method-c-colorize_logging	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-colorize_logging"><\/a>$/;"	a
-method-c-column_names	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-column_names"><\/a>$/;"	a
-method-c-columns	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-columns"><\/a>$/;"	a
-method-c-columns_hash	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-columns_hash"><\/a>$/;"	a
-method-c-compress	doc/api/ActiveSupport/Gzip.html	/^				<a name="method-c-compress"><\/a>$/;"	a
-method-c-compute_table_name	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-compute_table_name"><\/a>$/;"	a
-method-c-compute_type	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-compute_type"><\/a>$/;"	a
-method-c-configuration	doc/api/Rails.html	/^				<a name="method-c-configuration"><\/a>$/;"	a
-method-c-configurations	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-configurations"><\/a>$/;"	a
-method-c-connected%3F	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-connected%3F"><\/a>$/;"	a
-method-c-connection	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-connection"><\/a>$/;"	a
-method-c-connection	doc/api/ActiveRecord/Migration.html	/^				<a name="method-c-connection"><\/a>$/;"	a
-method-c-connection	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="method-c-connection"><\/a>$/;"	a
-method-c-connection	doc/api/ActiveResource/Base.html	/^				<a name="method-c-connection"><\/a>$/;"	a
-method-c-connection_handler	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-connection_handler"><\/a>$/;"	a
-method-c-connection_pool	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-connection_pool"><\/a>$/;"	a
-method-c-construct_attributes_from_arguments	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-construct_attributes_from_arguments"><\/a>$/;"	a
-method-c-construct_finder_arel	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-construct_finder_arel"><\/a>$/;"	a
-method-c-consumes%3F	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-c-consumes%3F"><\/a>$/;"	a
-method-c-content_columns	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-content_columns"><\/a>$/;"	a
-method-c-controller_name	doc/api/ActionController/Metal.html	/^				<a name="method-c-controller_name"><\/a>$/;"	a
-method-c-count_by_sql	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-count_by_sql"><\/a>$/;"	a
-method-c-create	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-create"><\/a>$/;"	a
-method-c-create	doc/api/ActiveResource/Base.html	/^				<a name="method-c-create"><\/a>$/;"	a
-method-c-create	doc/api/ActiveSupport/Cache/Entry.html	/^				<a name="method-c-create"><\/a>$/;"	a
-method-c-create	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-c-create"><\/a>$/;"	a
-method-c-create_fixtures	doc/api/Fixtures.html	/^				<a name="method-c-create_fixtures"><\/a>$/;"	a
-method-c-create_proxy_uri_from	doc/api/ActiveResource/Base.html	/^				<a name="method-c-create_proxy_uri_from"><\/a>$/;"	a
-method-c-create_site_uri_from	doc/api/ActiveResource/Base.html	/^				<a name="method-c-create_site_uri_from"><\/a>$/;"	a
-method-c-current	doc/api/DateTime.html	/^				<a name="method-c-current"><\/a>$/;"	a
-method-c-current	doc/api/Time.html	/^				<a name="method-c-current"><\/a>$/;"	a
-method-c-daemon	doc/api/Process.html	/^				<a name="method-c-daemon"><\/a>$/;"	a
-method-c-data_column	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="method-c-data_column"><\/a>$/;"	a
-method-c-data_column_name	doc/api/ActiveRecord/SessionStore/Session.html	/^				<a name="method-c-data_column_name"><\/a>$/;"	a
-method-c-data_column_size_limit	doc/api/ActiveRecord/SessionStore/Session.html	/^				<a name="method-c-data_column_size_limit"><\/a>$/;"	a
-method-c-days_in_month	doc/api/Time.html	/^				<a name="method-c-days_in_month"><\/a>$/;"	a
-method-c-decode64	doc/api/ActiveSupport/Base64.html	/^				<a name="method-c-decode64"><\/a>$/;"	a
-method-c-decompress	doc/api/ActiveSupport/Gzip.html	/^				<a name="method-c-decompress"><\/a>$/;"	a
-method-c-default	doc/api/ActionMailer/Base.html	/^				<a name="method-c-default"><\/a>$/;"	a
-method-c-default_scope	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-default_scope"><\/a>$/;"	a
-method-c-default_timezone	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-default_timezone"><\/a>$/;"	a
-method-c-define	doc/api/ActiveRecord/Schema.html	/^				<a name="method-c-define"><\/a>$/;"	a
-method-c-delete	doc/api/ActiveResource/Base.html	/^				<a name="method-c-delete"><\/a>$/;"	a
-method-c-delete	doc/api/ActiveResource/CustomMethods.html	/^				<a name="method-c-delete"><\/a>$/;"	a
-method-c-descendants	doc/api/ActiveSupport/DescendantsTracker.html	/^				<a name="method-c-descendants"><\/a>$/;"	a
-method-c-descends_from_active_record%3F	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-descends_from_active_record%3F"><\/a>$/;"	a
-method-c-describe	doc/api/ActiveSupport/Testing/Declarative.html	/^				<a name="method-c-describe"><\/a>$/;"	a
-method-c-direct_descendants	doc/api/ActiveSupport/DescendantsTracker.html	/^				<a name="method-c-direct_descendants"><\/a>$/;"	a
-method-c-dirname	doc/api/ActiveSupport/Multibyte/Unicode/UnicodeDatabase.html	/^				<a name="method-c-dirname"><\/a>$/;"	a
-method-c-dirties_query_cache	doc/api/ActiveRecord/ConnectionAdapters/QueryCache.html	/^				<a name="method-c-dirties_query_cache"><\/a>$/;"	a
-method-c-eager_autoload%21	doc/api/ActiveSupport/Autoload.html	/^				<a name="method-c-eager_autoload%21"><\/a>$/;"	a
-method-c-element_path	doc/api/ActiveResource/Base.html	/^				<a name="method-c-element_path"><\/a>$/;"	a
-method-c-emulate_booleans	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-c-emulate_booleans"><\/a>$/;"	a
-method-c-encode	doc/api/ActiveSupport/JSON.html	/^				<a name="method-c-encode"><\/a>$/;"	a
-method-c-encode64	doc/api/ActiveSupport/Base64.html	/^				<a name="method-c-encode64"><\/a>$/;"	a
-method-c-env	doc/api/Rails.html	/^				<a name="method-c-env"><\/a>$/;"	a
-method-c-env%3D	doc/api/Rails.html	/^				<a name="method-c-env%3D"><\/a>$/;"	a
-method-c-erb_trim_mode	doc/api/ActionView/Template/Handlers/ERB.html	/^				<a name="method-c-erb_trim_mode"><\/a>$/;"	a
-method-c-establish_connection	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-establish_connection"><\/a>$/;"	a
-method-c-exists%3F	doc/api/ActiveResource/Base.html	/^				<a name="method-c-exists%3F"><\/a>$/;"	a
-method-c-expand_attribute_names_for_aggregates	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-expand_attribute_names_for_aggregates"><\/a>$/;"	a
-method-c-expand_cache_key	doc/api/ActiveSupport/Cache.html	/^				<a name="method-c-expand_cache_key"><\/a>$/;"	a
-method-c-expand_hash_conditions_for_aggregates	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-expand_hash_conditions_for_aggregates"><\/a>$/;"	a
-method-c-extended	doc/api/ActiveModel/Callbacks.html	/^				<a name="method-c-extended"><\/a>$/;"	a
-method-c-extended	doc/api/ActiveSupport/Concern.html	/^				<a name="method-c-extended"><\/a>$/;"	a
-method-c-extended	doc/api/ActiveSupport/Testing/Declarative.html	/^				<a name="method-c-extended"><\/a>$/;"	a
-method-c-extract_value_from_default	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLColumn.html	/^				<a name="method-c-extract_value_from_default"><\/a>$/;"	a
-method-c-fallback_string_to_date	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-fallback_string_to_date"><\/a>$/;"	a
-method-c-fallback_string_to_time	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-fallback_string_to_time"><\/a>$/;"	a
-method-c-fast_string_to_date	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-fast_string_to_date"><\/a>$/;"	a
-method-c-fast_string_to_time	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-fast_string_to_time"><\/a>$/;"	a
-method-c-filename	doc/api/ActiveSupport/Multibyte/Unicode/UnicodeDatabase.html	/^				<a name="method-c-filename"><\/a>$/;"	a
-method-c-find	doc/api/ActiveResource/Base.html	/^				<a name="method-c-find"><\/a>$/;"	a
-method-c-find_by_session_id	doc/api/ActiveRecord/SessionStore/Session.html	/^				<a name="method-c-find_by_session_id"><\/a>$/;"	a
-method-c-find_by_session_id	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="method-c-find_by_session_id"><\/a>$/;"	a
-method-c-find_by_sql	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-find_by_sql"><\/a>$/;"	a
-method-c-find_every	doc/api/ActiveResource/Base.html	/^				<a name="method-c-find_every"><\/a>$/;"	a
-method-c-find_one	doc/api/ActiveResource/Base.html	/^				<a name="method-c-find_one"><\/a>$/;"	a
-method-c-find_single	doc/api/ActiveResource/Base.html	/^				<a name="method-c-find_single"><\/a>$/;"	a
-method-c-find_sti_class	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-find_sti_class"><\/a>$/;"	a
-method-c-find_tzinfo	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-c-find_tzinfo"><\/a>$/;"	a
-method-c-first	doc/api/ActiveResource/Base.html	/^				<a name="method-c-first"><\/a>$/;"	a
-method-c-fixture_is_cached%3F	doc/api/Fixtures.html	/^				<a name="method-c-fixture_is_cached%3F"><\/a>$/;"	a
-method-c-flush_all%21	doc/api/ActiveSupport/LogSubscriber.html	/^				<a name="method-c-flush_all%21"><\/a>$/;"	a
-method-c-flushable_loggers	doc/api/ActiveSupport/LogSubscriber.html	/^				<a name="method-c-flushable_loggers"><\/a>$/;"	a
-method-c-for_class	doc/api/HTML/Selector.html	/^				<a name="method-c-for_class"><\/a>$/;"	a
-method-c-for_id	doc/api/HTML/Selector.html	/^				<a name="method-c-for_id"><\/a>$/;"	a
-method-c-for_tag	doc/api/ActiveSupport/TestCase.html	/^				<a name="method-c-for_tag"><\/a>$/;"	a
-method-c-forking_env%3F	doc/api/ActiveSupport/Testing/Isolation.html	/^				<a name="method-c-forking_env%3F"><\/a>$/;"	a
-method-c-format	doc/api/ActiveResource/Base.html	/^				<a name="method-c-format"><\/a>$/;"	a
-method-c-format%3D	doc/api/ActiveResource/Base.html	/^				<a name="method-c-format%3D"><\/a>$/;"	a
-method-c-get	doc/api/ActiveResource/CustomMethods.html	/^				<a name="method-c-get"><\/a>$/;"	a
-method-c-get_zone	doc/api/Time.html	/^				<a name="method-c-get_zone"><\/a>$/;"	a
-method-c-h	doc/api/ERB/Util.html	/^				<a name="method-c-h"><\/a>$/;"	a
-method-c-handles_encoding%3F	doc/api/ActionView/Template/Handlers/ERB.html	/^				<a name="method-c-handles_encoding%3F"><\/a>$/;"	a
-method-c-headers	doc/api/ActiveResource/Base.html	/^				<a name="method-c-headers"><\/a>$/;"	a
-method-c-hex	doc/api/ActiveSupport/SecureRandom.html	/^				<a name="method-c-hex"><\/a>$/;"	a
-method-c-html_escape	doc/api/ERB/Util.html	/^				<a name="method-c-html_escape"><\/a>$/;"	a
-method-c-identify	doc/api/Fixtures.html	/^				<a name="method-c-identify"><\/a>$/;"	a
-method-c-include_fallbacks_module	doc/api/I18n/Railtie.html	/^				<a name="method-c-include_fallbacks_module"><\/a>$/;"	a
-method-c-included	doc/api/ActionController/TestCase/RaiseActionExceptions.html	/^				<a name="method-c-included"><\/a>$/;"	a
-method-c-included	doc/api/ActionController/UrlWriter.html	/^				<a name="method-c-included"><\/a>$/;"	a
-method-c-included	doc/api/ActionView/Template/Handlers/Compilable.html	/^				<a name="method-c-included"><\/a>$/;"	a
-method-c-included	doc/api/ActiveRecord/ConnectionAdapters/QueryCache.html	/^				<a name="method-c-included"><\/a>$/;"	a
-method-c-included	doc/api/ActiveSupport/Memoizable/InstanceMethods.html	/^				<a name="method-c-included"><\/a>$/;"	a
-method-c-included	doc/api/ActiveSupport/Testing/Isolation.html	/^				<a name="method-c-included"><\/a>$/;"	a
-method-c-included	doc/api/ActiveSupport/Testing/Performance.html	/^				<a name="method-c-included"><\/a>$/;"	a
-method-c-inheritance_column	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-inheritance_column"><\/a>$/;"	a
-method-c-inherited	doc/api/ActionController/Base.html	/^				<a name="method-c-inherited"><\/a>$/;"	a
-method-c-inherited	doc/api/ActionController/Metal.html	/^				<a name="method-c-inherited"><\/a>$/;"	a
-method-c-init_fallbacks	doc/api/I18n/Railtie.html	/^				<a name="method-c-init_fallbacks"><\/a>$/;"	a
-method-c-initialize%21	doc/api/Rails.html	/^				<a name="method-c-initialize%21"><\/a>$/;"	a
-method-c-initialized%3D	doc/api/Rails.html	/^				<a name="method-c-initialized%3D"><\/a>$/;"	a
-method-c-initialized%3F	doc/api/Rails.html	/^				<a name="method-c-initialized%3F"><\/a>$/;"	a
-method-c-inspect	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-inspect"><\/a>$/;"	a
-method-c-instance	doc/api/ActiveSupport/Inflector/Inflections.html	/^				<a name="method-c-instance"><\/a>$/;"	a
-method-c-instantiate	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-instantiate"><\/a>$/;"	a
-method-c-instantiate_all_loaded_fixtures	doc/api/Fixtures.html	/^				<a name="method-c-instantiate_all_loaded_fixtures"><\/a>$/;"	a
-method-c-instantiate_collection	doc/api/ActiveResource/Base.html	/^				<a name="method-c-instantiate_collection"><\/a>$/;"	a
-method-c-instantiate_fixtures	doc/api/Fixtures.html	/^				<a name="method-c-instantiate_fixtures"><\/a>$/;"	a
-method-c-instantiate_record	doc/api/ActiveResource/Base.html	/^				<a name="method-c-instantiate_record"><\/a>$/;"	a
-method-c-instrument	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-c-instrument"><\/a>$/;"	a
-method-c-instrument	doc/api/ActiveSupport/Notifications.html	/^				<a name="method-c-instrument"><\/a>$/;"	a
-method-c-instrument%3D	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-c-instrument%3D"><\/a>$/;"	a
-method-c-instrumenter	doc/api/ActiveSupport/Notifications.html	/^				<a name="method-c-instrumenter"><\/a>$/;"	a
-method-c-j	doc/api/ERB/Util.html	/^				<a name="method-c-j"><\/a>$/;"	a
-method-c-json_escape	doc/api/ERB/Util.html	/^				<a name="method-c-json_escape"><\/a>$/;"	a
-method-c-kind	doc/api/ActiveModel/Validator.html	/^				<a name="method-c-kind"><\/a>$/;"	a
-method-c-known_attributes	doc/api/ActiveResource/Base.html	/^				<a name="method-c-known_attributes"><\/a>$/;"	a
-method-c-last	doc/api/ActiveResource/Base.html	/^				<a name="method-c-last"><\/a>$/;"	a
-method-c-local_offset	doc/api/DateTime.html	/^				<a name="method-c-local_offset"><\/a>$/;"	a
-method-c-local_time	doc/api/Time.html	/^				<a name="method-c-local_time"><\/a>$/;"	a
-method-c-log_subscribers	doc/api/ActiveSupport/LogSubscriber.html	/^				<a name="method-c-log_subscribers"><\/a>$/;"	a
-method-c-logger	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-logger"><\/a>$/;"	a
-method-c-logger	doc/api/ActiveResource/Base.html	/^				<a name="method-c-logger"><\/a>$/;"	a
-method-c-logger	doc/api/ActiveSupport/LogSubscriber.html	/^				<a name="method-c-logger"><\/a>$/;"	a
-method-c-logger	doc/api/Rails.html	/^				<a name="method-c-logger"><\/a>$/;"	a
-method-c-logger%3D	doc/api/Rails.html	/^				<a name="method-c-logger%3D"><\/a>$/;"	a
-method-c-lookup	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-c-lookup"><\/a>$/;"	a
-method-c-lookup_store	doc/api/ActiveSupport/Cache.html	/^				<a name="method-c-lookup_store"><\/a>$/;"	a
-method-c-mailer_name	doc/api/ActionMailer/Base.html	/^				<a name="method-c-mailer_name"><\/a>$/;"	a
-method-c-match	doc/api/ActiveRecord/DynamicFinderMatch.html	/^				<a name="method-c-match"><\/a>$/;"	a
-method-c-match	doc/api/ActiveRecord/DynamicScopeMatch.html	/^				<a name="method-c-match"><\/a>$/;"	a
-method-c-memoized_ivar_for	doc/api/ActiveSupport/Memoizable.html	/^				<a name="method-c-memoized_ivar_for"><\/a>$/;"	a
-method-c-method_added	doc/api/ActiveRecord/Observer.html	/^				<a name="method-c-method_added"><\/a>$/;"	a
-method-c-method_missing	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-method_missing"><\/a>$/;"	a
-method-c-method_missing	doc/api/ActiveRecord/Migration.html	/^				<a name="method-c-method_missing"><\/a>$/;"	a
-method-c-microseconds	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-microseconds"><\/a>$/;"	a
-method-c-middleware	doc/api/ActionController/Metal.html	/^				<a name="method-c-middleware"><\/a>$/;"	a
-method-c-migrate	doc/api/ActiveRecord/Migration.html	/^				<a name="method-c-migrate"><\/a>$/;"	a
-method-c-migrations_path	doc/api/ActiveRecord/Schema.html	/^				<a name="method-c-migrations_path"><\/a>$/;"	a
-method-c-model_name_from_record_or_class	doc/api/ActiveModel/Naming.html	/^				<a name="method-c-model_name_from_record_or_class"><\/a>$/;"	a
-method-c-ms	doc/api/Benchmark.html	/^				<a name="method-c-ms"><\/a>$/;"	a
-method-c-name	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-c-name"><\/a>$/;"	a
-method-c-new	doc/api/ActionController/Caching/Actions/ActionCachePath.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionController/Dispatcher.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionController/Metal.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionController/Middleware.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionController/Middleware/ActionMiddleware.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionController/Responder.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionController/UrlRewriter.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionMailer/Base.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionMailer/Base/DeprecatedHeaderProxy.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionView/FileSystemResolver.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionView/FixtureResolver.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionView/Helpers/AtomFeedHelper/AtomBuilder.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionView/Helpers/AtomFeedHelper/AtomFeedBuilder.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionView/Helpers/NumberHelper/InvalidNumberError.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionView/OutputBuffer.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionView/Resolver.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionView/Template.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActionView/TestCase/TestController.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveModel/AttributeMethods/ClassMethods/AttributeMethodMatcher.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveModel/BlockValidator.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveModel/EachValidator.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveModel/Errors.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveModel/Name.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveModel/Observer.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveModel/Validations/AcceptanceValidator.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveModel/Validations/LengthValidator.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveModel/Validations/NumericalityValidator.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveModel/Validator.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/AttributeAssignmentError.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/ConnectionAdapters/ConnectionHandler.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/ConnectionAdapters/ConnectionManagement.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter/Version.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/DynamicFinderMatch.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/DynamicScopeMatch.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/LogSubscriber.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/MultiparameterAssignmentErrors.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/Observer.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/PredicateBuilder.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/QueryCache.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/RecordInvalid.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/Reflection/MacroReflection.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/Relation.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/SessionStore/Session.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/Validations/UniquenessValidator.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveRecord/WrappedDatabaseException.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveResource/Base.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveResource/Connection.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveResource/Request.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveResource/Response.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveResource/SSLError.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveResource/TimeoutError.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/BacktraceCleaner.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Cache/CompressedMemCacheStore.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Cache/Entry.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Cache/MemCacheStore.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Cache/MemoryStore.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Cache/Strategy/LocalCache/LocalStore.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Cache/SynchronizedMemoryStore.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Callbacks/CallbackChain.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Dependencies/Reference.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Dependencies/WatchStack.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/FileUpdateChecker.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Inflector/Inflections.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/InheritableOptions.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/JSON/Encoding/Encoder.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/LogSubscriber/TestHelper/MockLogger.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/MessageEncryptor.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/MessageVerifier.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Multibyte/Unicode/UnicodeDatabase.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Notifications/Event.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Notifications/Fanout.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Notifications/Instrumenter.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Testing/Performance/Metrics/Base.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Testing/Performance/Metrics/CpuTime.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Testing/Performance/Performer.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Testing/Performance/Profiler.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Testing/ProxyTestResult.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/Testing/RemoteError.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/Fixtures.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new	doc/api/HTML/Selector.html	/^				<a name="method-c-new"><\/a>$/;"	a
-method-c-new_date	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-new_date"><\/a>$/;"	a
-method-c-new_element_path	doc/api/ActiveResource/Base.html	/^				<a name="method-c-new_element_path"><\/a>$/;"	a
-method-c-new_from_hash_copying_default	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-c-new_from_hash_copying_default"><\/a>$/;"	a
-method-c-new_time	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-new_time"><\/a>$/;"	a
-method-c-notifier	doc/api/ActiveSupport/Notifications.html	/^				<a name="method-c-notifier"><\/a>$/;"	a
-method-c-observe	doc/api/ActiveModel/Observer.html	/^				<a name="method-c-observe"><\/a>$/;"	a
-method-c-observed_class	doc/api/ActiveModel/Observer.html	/^				<a name="method-c-observed_class"><\/a>$/;"	a
-method-c-observed_classes	doc/api/ActiveModel/Observer.html	/^				<a name="method-c-observed_classes"><\/a>$/;"	a
-method-c-orig_delete	doc/api/ActiveResource/CustomMethods.html	/^				<a name="method-c-orig_delete"><\/a>$/;"	a
-method-c-password	doc/api/ActiveResource/Base.html	/^				<a name="method-c-password"><\/a>$/;"	a
-method-c-password%3D	doc/api/ActiveResource/Base.html	/^				<a name="method-c-password%3D"><\/a>$/;"	a
-method-c-plural	doc/api/ActiveModel/Naming.html	/^				<a name="method-c-plural"><\/a>$/;"	a
-method-c-pluralize_table_names	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-pluralize_table_names"><\/a>$/;"	a
-method-c-post	doc/api/ActiveResource/CustomMethods.html	/^				<a name="method-c-post"><\/a>$/;"	a
-method-c-prefix	doc/api/ActiveResource/Base.html	/^				<a name="method-c-prefix"><\/a>$/;"	a
-method-c-prefix%3D	doc/api/ActiveResource/Base.html	/^				<a name="method-c-prefix%3D"><\/a>$/;"	a
-method-c-prefix_parameters	doc/api/ActiveResource/Base.html	/^				<a name="method-c-prefix_parameters"><\/a>$/;"	a
-method-c-prefix_source	doc/api/ActiveResource/Base.html	/^				<a name="method-c-prefix_source"><\/a>$/;"	a
-method-c-primary_key_prefix_type	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-primary_key_prefix_type"><\/a>$/;"	a
-method-c-proxy	doc/api/ActiveResource/Base.html	/^				<a name="method-c-proxy"><\/a>$/;"	a
-method-c-proxy%3D	doc/api/ActiveResource/Base.html	/^				<a name="method-c-proxy%3D"><\/a>$/;"	a
-method-c-public_path	doc/api/Rails.html	/^				<a name="method-c-public_path"><\/a>$/;"	a
-method-c-public_path%3D	doc/api/Rails.html	/^				<a name="method-c-public_path%3D"><\/a>$/;"	a
-method-c-put	doc/api/ActiveResource/CustomMethods.html	/^				<a name="method-c-put"><\/a>$/;"	a
-method-c-query_string	doc/api/ActiveResource/Base.html	/^				<a name="method-c-query_string"><\/a>$/;"	a
-method-c-quoted_table_name	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-quoted_table_name"><\/a>$/;"	a
-method-c-random_bytes	doc/api/ActiveSupport/SecureRandom.html	/^				<a name="method-c-random_bytes"><\/a>$/;"	a
-method-c-random_number	doc/api/ActiveSupport/SecureRandom.html	/^				<a name="method-c-random_number"><\/a>$/;"	a
-method-c-readonly_attributes	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-readonly_attributes"><\/a>$/;"	a
-method-c-receive	doc/api/ActionMailer/Base.html	/^				<a name="method-c-receive"><\/a>$/;"	a
-method-c-register_javascript_expansion	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-c-register_javascript_expansion"><\/a>$/;"	a
-method-c-register_javascript_include_default	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-c-register_javascript_include_default"><\/a>$/;"	a
-method-c-register_stylesheet_expansion	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-c-register_stylesheet_expansion"><\/a>$/;"	a
-method-c-reloader	doc/api/I18n/Railtie.html	/^				<a name="method-c-reloader"><\/a>$/;"	a
-method-c-remove_connection	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-remove_connection"><\/a>$/;"	a
-method-c-requests	doc/api/ActiveResource/Connection.html	/^				<a name="method-c-requests"><\/a>$/;"	a
-method-c-requests	doc/api/ActiveResource/HttpMock.html	/^				<a name="method-c-requests"><\/a>$/;"	a
-method-c-reset%21	doc/api/ActiveResource/HttpMock.html	/^				<a name="method-c-reset%21"><\/a>$/;"	a
-method-c-reset_cache	doc/api/Fixtures.html	/^				<a name="method-c-reset_cache"><\/a>$/;"	a
-method-c-reset_column_information	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-reset_column_information"><\/a>$/;"	a
-method-c-reset_javascript_include_default	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-c-reset_javascript_include_default"><\/a>$/;"	a
-method-c-reset_runtime	doc/api/ActiveRecord/LogSubscriber.html	/^				<a name="method-c-reset_runtime"><\/a>$/;"	a
-method-c-respond_to	doc/api/ActiveResource/HttpMock.html	/^				<a name="method-c-respond_to"><\/a>$/;"	a
-method-c-respond_to%3F	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-respond_to%3F"><\/a>$/;"	a
-method-c-responses	doc/api/ActiveResource/HttpMock.html	/^				<a name="method-c-responses"><\/a>$/;"	a
-method-c-retrieve_connection	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-retrieve_connection"><\/a>$/;"	a
-method-c-root	doc/api/Rails.html	/^				<a name="method-c-root"><\/a>$/;"	a
-method-c-runtime	doc/api/ActiveRecord/LogSubscriber.html	/^				<a name="method-c-runtime"><\/a>$/;"	a
-method-c-runtime%3D	doc/api/ActiveRecord/LogSubscriber.html	/^				<a name="method-c-runtime%3D"><\/a>$/;"	a
-method-c-sanitize_sql_array	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-sanitize_sql_array"><\/a>$/;"	a
-method-c-sanitize_sql_for_assignment	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-sanitize_sql_for_assignment"><\/a>$/;"	a
-method-c-sanitize_sql_for_conditions	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-sanitize_sql_for_conditions"><\/a>$/;"	a
-method-c-sanitize_sql_hash_for_assignment	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-sanitize_sql_hash_for_assignment"><\/a>$/;"	a
-method-c-sanitize_sql_hash_for_conditions	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-sanitize_sql_hash_for_conditions"><\/a>$/;"	a
-method-c-say	doc/api/ActiveRecord/Migration.html	/^				<a name="method-c-say"><\/a>$/;"	a
-method-c-say_with_time	doc/api/ActiveRecord/Migration.html	/^				<a name="method-c-say_with_time"><\/a>$/;"	a
-method-c-schema	doc/api/ActiveResource/Base.html	/^				<a name="method-c-schema"><\/a>$/;"	a
-method-c-schema%3D	doc/api/ActiveResource/Base.html	/^				<a name="method-c-schema%3D"><\/a>$/;"	a
-method-c-schema_format	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-schema_format"><\/a>$/;"	a
-method-c-seconds_to_utc_offset	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-c-seconds_to_utc_offset"><\/a>$/;"	a
-method-c-serialize	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-serialize"><\/a>$/;"	a
-method-c-serialized_attributes	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-serialized_attributes"><\/a>$/;"	a
-method-c-session_id_column	doc/api/ActiveRecord/SessionStore/Session.html	/^				<a name="method-c-session_id_column"><\/a>$/;"	a
-method-c-session_id_column	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="method-c-session_id_column"><\/a>$/;"	a
-method-c-set_default_backend	doc/api/ActiveSupport/JSON.html	/^				<a name="method-c-set_default_backend"><\/a>$/;"	a
-method-c-set_inheritance_column	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-set_inheritance_column"><\/a>$/;"	a
-method-c-set_sequence_name	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-set_sequence_name"><\/a>$/;"	a
-method-c-set_table_name	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-set_table_name"><\/a>$/;"	a
-method-c-setup_sessid_compatibility%21	doc/api/ActiveRecord/SessionStore/Session.html	/^				<a name="method-c-setup_sessid_compatibility%21"><\/a>$/;"	a
-method-c-silencer	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="method-c-silencer"><\/a>$/;"	a
-method-c-singular	doc/api/ActiveModel/Naming.html	/^				<a name="method-c-singular"><\/a>$/;"	a
-method-c-site	doc/api/ActiveResource/Base.html	/^				<a name="method-c-site"><\/a>$/;"	a
-method-c-site%3D	doc/api/ActiveResource/Base.html	/^				<a name="method-c-site%3D"><\/a>$/;"	a
-method-c-split_options	doc/api/ActiveResource/Base.html	/^				<a name="method-c-split_options"><\/a>$/;"	a
-method-c-ssl_options	doc/api/ActiveResource/Base.html	/^				<a name="method-c-ssl_options"><\/a>$/;"	a
-method-c-ssl_options%3D	doc/api/ActiveResource/Base.html	/^				<a name="method-c-ssl_options%3D"><\/a>$/;"	a
-method-c-sti_name	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-sti_name"><\/a>$/;"	a
-method-c-string_to_binary	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-string_to_binary"><\/a>$/;"	a
-method-c-string_to_date	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-string_to_date"><\/a>$/;"	a
-method-c-string_to_dummy_time	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-string_to_dummy_time"><\/a>$/;"	a
-method-c-string_to_time	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-string_to_time"><\/a>$/;"	a
-method-c-subclasses	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-subclasses"><\/a>$/;"	a
-method-c-subscribe	doc/api/ActiveSupport/Notifications.html	/^				<a name="method-c-subscribe"><\/a>$/;"	a
-method-c-suppress_messages	doc/api/ActiveRecord/Migration.html	/^				<a name="method-c-suppress_messages"><\/a>$/;"	a
-method-c-table_exists%3F	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-table_exists%3F"><\/a>$/;"	a
-method-c-table_name	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-table_name"><\/a>$/;"	a
-method-c-table_name	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="method-c-table_name"><\/a>$/;"	a
-method-c-table_name_prefix	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-table_name_prefix"><\/a>$/;"	a
-method-c-table_name_suffix	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-table_name_suffix"><\/a>$/;"	a
-method-c-time_with_datetime_fallback	doc/api/Time.html	/^				<a name="method-c-time_with_datetime_fallback"><\/a>$/;"	a
-method-c-timeout	doc/api/ActiveResource/Base.html	/^				<a name="method-c-timeout"><\/a>$/;"	a
-method-c-timeout%3D	doc/api/ActiveResource/Base.html	/^				<a name="method-c-timeout%3D"><\/a>$/;"	a
-method-c-timestamped_migrations	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-timestamped_migrations"><\/a>$/;"	a
-method-c-to_prepare	doc/api/ActionController/Dispatcher.html	/^				<a name="method-c-to_prepare"><\/a>$/;"	a
-method-c-type_condition	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-type_condition"><\/a>$/;"	a
-method-c-uncountable%3F	doc/api/ActiveModel/Naming.html	/^				<a name="method-c-uncountable%3F"><\/a>$/;"	a
-method-c-undecorated_table_name	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-undecorated_table_name"><\/a>$/;"	a
-method-c-unsubscribe	doc/api/ActiveSupport/Notifications.html	/^				<a name="method-c-unsubscribe"><\/a>$/;"	a
-method-c-uri_parser	doc/api/ActiveResource/Base.html	/^				<a name="method-c-uri_parser"><\/a>$/;"	a
-method-c-us_zones	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-c-us_zones"><\/a>$/;"	a
-method-c-use	doc/api/ActionController/Metal.html	/^				<a name="method-c-use"><\/a>$/;"	a
-method-c-use_zone	doc/api/Time.html	/^				<a name="method-c-use_zone"><\/a>$/;"	a
-method-c-user	doc/api/ActiveResource/Base.html	/^				<a name="method-c-user"><\/a>$/;"	a
-method-c-user%3D	doc/api/ActiveResource/Base.html	/^				<a name="method-c-user%3D"><\/a>$/;"	a
-method-c-utc_time	doc/api/Time.html	/^				<a name="method-c-utc_time"><\/a>$/;"	a
-method-c-validate_fallbacks	doc/api/I18n/Railtie.html	/^				<a name="method-c-validate_fallbacks"><\/a>$/;"	a
-method-c-value_to_boolean	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-value_to_boolean"><\/a>$/;"	a
-method-c-value_to_decimal	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-c-value_to_decimal"><\/a>$/;"	a
-method-c-version	doc/api/Rails.html	/^				<a name="method-c-version"><\/a>$/;"	a
-method-c-wants%3F	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-c-wants%3F"><\/a>$/;"	a
-method-c-with_backend	doc/api/ActiveSupport/JSON.html	/^				<a name="method-c-with_backend"><\/a>$/;"	a
-method-c-with_exclusive_scope	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-with_exclusive_scope"><\/a>$/;"	a
-method-c-with_scope	doc/api/ActiveRecord/Base.html	/^				<a name="method-c-with_scope"><\/a>$/;"	a
-method-c-without_modules	doc/api/ActionController/Base.html	/^				<a name="method-c-without_modules"><\/a>$/;"	a
-method-c-write	doc/api/ActiveRecord/Migration.html	/^				<a name="method-c-write"><\/a>$/;"	a
-method-c-zone	doc/api/Time.html	/^				<a name="method-c-zone"><\/a>$/;"	a
-method-c-zone%3D	doc/api/Time.html	/^				<a name="method-c-zone%3D"><\/a>$/;"	a
-method-c-zones_map	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-c-zones_map"><\/a>$/;"	a
-method-i-%26	doc/api/ActiveRecord/SpawnMethods.html	/^				<a name="method-i-%26"><\/a>$/;"	a
-method-i-%2B	doc/api/ActiveModel/MassAssignmentSecurity/PermissionSet.html	/^				<a name="method-i-%2B"><\/a>$/;"	a
-method-i-%2B	doc/api/ActiveSupport/Duration.html	/^				<a name="method-i-%2B"><\/a>$/;"	a
-method-i-%2B	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-%2B"><\/a>$/;"	a
-method-i-%2B	doc/api/ActiveSupport/SafeBuffer.html	/^				<a name="method-i-%2B"><\/a>$/;"	a
-method-i-%2B	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-%2B"><\/a>$/;"	a
-method-i-%3C%3C	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-%3C%3C"><\/a>$/;"	a
-method-i-%3C%3C	doc/api/ActionView/OutputBuffer.html	/^				<a name="method-i-%3C%3C"><\/a>$/;"	a
-method-i-%3C%3C	doc/api/ActiveSupport/SafeBuffer.html	/^				<a name="method-i-%3C%3C"><\/a>$/;"	a
-method-i-%3C%3D%3E	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter/Version.html	/^				<a name="method-i-%3C%3D%3E"><\/a>$/;"	a
-method-i-%3C%3D%3E	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-%3C%3D%3E"><\/a>$/;"	a
-method-i-%3C%3D%3E	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-%3C%3D%3E"><\/a>$/;"	a
-method-i-%3C%3D%3E	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-%3C%3D%3E"><\/a>$/;"	a
-method-i-%3C%3D%3E	doc/api/DateTime.html	/^				<a name="method-i-%3C%3D%3E"><\/a>$/;"	a
-method-i-%3C%3D%3E	doc/api/Time.html	/^				<a name="method-i-%3C%3D%3E"><\/a>$/;"	a
-method-i-%3D%3D	doc/api/ActionView/FileSystemResolver.html	/^				<a name="method-i-%3D%3D"><\/a>$/;"	a
-method-i-%3D%3D	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-%3D%3D"><\/a>$/;"	a
-method-i-%3D%3D	doc/api/ActiveRecord/Reflection/MacroReflection.html	/^				<a name="method-i-%3D%3D"><\/a>$/;"	a
-method-i-%3D%3D	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-%3D%3D"><\/a>$/;"	a
-method-i-%3D%3D	doc/api/ActiveResource/Base.html	/^				<a name="method-i-%3D%3D"><\/a>$/;"	a
-method-i-%3D%3D	doc/api/ActiveResource/Request.html	/^				<a name="method-i-%3D%3D"><\/a>$/;"	a
-method-i-%3D%3D	doc/api/ActiveResource/Response.html	/^				<a name="method-i-%3D%3D"><\/a>$/;"	a
-method-i-%3D%3D	doc/api/ActiveSupport/Duration.html	/^				<a name="method-i-%3D%3D"><\/a>$/;"	a
-method-i-%3D%3D%3D	doc/api/ActiveSupport/Multibyte/Unicode/UnicodeDatabase.html	/^				<a name="method-i-%3D%3D%3D"><\/a>$/;"	a
-method-i-%3D%7E	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-%3D%7E"><\/a>$/;"	a
-method-i-%3D%7E	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-%3D%7E"><\/a>$/;"	a
-method-i-%5B%5D	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-%5B%5D"><\/a>$/;"	a
-method-i-%5B%5D	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-%5B%5D"><\/a>$/;"	a
-method-i-%5B%5D	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-%5B%5D"><\/a>$/;"	a
-method-i-%5B%5D	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="method-i-%5B%5D"><\/a>$/;"	a
-method-i-%5B%5D	doc/api/ActiveResource/Response.html	/^				<a name="method-i-%5B%5D"><\/a>$/;"	a
-method-i-%5B%5D	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-%5B%5D"><\/a>$/;"	a
-method-i-%5B%5D	doc/api/ActiveSupport/OrderedOptions.html	/^				<a name="method-i-%5B%5D"><\/a>$/;"	a
-method-i-%5B%5D%3D	doc/api/ActionMailer/Base/DeprecatedHeaderProxy.html	/^				<a name="method-i-%5B%5D%3D"><\/a>$/;"	a
-method-i-%5B%5D%3D	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-%5B%5D%3D"><\/a>$/;"	a
-method-i-%5B%5D%3D	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-%5B%5D%3D"><\/a>$/;"	a
-method-i-%5B%5D%3D	doc/api/ActiveResource/Response.html	/^				<a name="method-i-%5B%5D%3D"><\/a>$/;"	a
-method-i-%5B%5D%3D	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-%5B%5D%3D"><\/a>$/;"	a
-method-i-%5B%5D%3D	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-%5B%5D%3D"><\/a>$/;"	a
-method-i-%5B%5D%3D	doc/api/ActiveSupport/OrderedOptions.html	/^				<a name="method-i-%5B%5D%3D"><\/a>$/;"	a
-method-i--	doc/api/ActiveSupport/Duration.html	/^				<a name="method-i--"><\/a>$/;"	a
-method-i--	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i--"><\/a>$/;"	a
-method-i--	doc/api/Time.html	/^				<a name="method-i--"><\/a>$/;"	a
-method-i-__replay__	doc/api/ActiveSupport/Testing/ProxyTestResult.html	/^				<a name="method-i-__replay__"><\/a>$/;"	a
-method-i-_assigns	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-_assigns"><\/a>$/;"	a
-method-i-_compile_filter	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-_compile_filter"><\/a>$/;"	a
-method-i-_compile_options	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-_compile_options"><\/a>$/;"	a
-method-i-_compile_per_key_options	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-_compile_per_key_options"><\/a>$/;"	a
-method-i-_compute_redirect_to_location	doc/api/ActionController/Redirecting.html	/^				<a name="method-i-_compute_redirect_to_location"><\/a>$/;"	a
-method-i-_dasherize	doc/api/ActiveSupport/XmlMini.html	/^				<a name="method-i-_dasherize"><\/a>$/;"	a
-method-i-_dump	doc/api/Time.html	/^				<a name="method-i-_dump"><\/a>$/;"	a
-method-i-_dump_without_utc_flag	doc/api/Time.html	/^				<a name="method-i-_dump_without_utc_flag"><\/a>$/;"	a
-method-i-_dump_without_zone	doc/api/Time.html	/^				<a name="method-i-_dump_without_zone"><\/a>$/;"	a
-method-i-_extract_redirect_to_status	doc/api/ActionController/Redirecting.html	/^				<a name="method-i-_extract_redirect_to_status"><\/a>$/;"	a
-method-i-_handle_method_missing	doc/api/ActionController/Compatibility.html	/^				<a name="method-i-_handle_method_missing"><\/a>$/;"	a
-method-i-_merge_attributes	doc/api/ActiveModel/Validations/HelperMethods.html	/^				<a name="method-i-_merge_attributes"><\/a>$/;"	a
-method-i-_normalize_legacy_filter	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-_normalize_legacy_filter"><\/a>$/;"	a
-method-i-_normalize_options	doc/api/ActionController/Compatibility.html	/^				<a name="method-i-_normalize_options"><\/a>$/;"	a
-method-i-_original_to_s	doc/api/BigDecimal.html	/^				<a name="method-i-_original_to_s"><\/a>$/;"	a
-method-i-_parse_file	doc/api/ActiveSupport/XmlMini.html	/^				<a name="method-i-_parse_file"><\/a>$/;"	a
-method-i-_render_partial	doc/api/ActionView/TestCase/Behavior/Locals.html	/^				<a name="method-i-_render_partial"><\/a>$/;"	a
-method-i-_routes	doc/api/ActionController/UrlFor.html	/^				<a name="method-i-_routes"><\/a>$/;"	a
-method-i-_routes	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-_routes"><\/a>$/;"	a
-method-i-_run_class_setup	doc/api/ActiveSupport/Testing/Isolation.html	/^				<a name="method-i-_run_class_setup"><\/a>$/;"	a
-method-i-_save_fragment	doc/api/ActionController/Caching/Actions.html	/^				<a name="method-i-_save_fragment"><\/a>$/;"	a
-method-i-_set_detail	doc/api/ActionView/LookupContext/Details.html	/^				<a name="method-i-_set_detail"><\/a>$/;"	a
-method-i-_update_filter	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-_update_filter"><\/a>$/;"	a
-method-i-_user_defined_ivars	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-_user_defined_ivars"><\/a>$/;"	a
-method-i-_view	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-_view"><\/a>$/;"	a
-method-i-_write_render_options	doc/api/ActionController/Renderers/ClassMethods.html	/^				<a name="method-i-_write_render_options"><\/a>$/;"	a
-method-i-accepts_nested_attributes_for	doc/api/ActiveRecord/NestedAttributes/ClassMethods.html	/^				<a name="method-i-accepts_nested_attributes_for"><\/a>$/;"	a
-method-i-accessible_attributes	doc/api/ActiveModel/MassAssignmentSecurity/ClassMethods.html	/^				<a name="method-i-accessible_attributes"><\/a>$/;"	a
-method-i-action_methods	doc/api/ActionController/HideActions/ClassMethods.html	/^				<a name="method-i-action_methods"><\/a>$/;"	a
-method-i-action_methods	doc/api/ActionController/UrlFor/ClassMethods.html	/^				<a name="method-i-action_methods"><\/a>$/;"	a
-method-i-active%3F	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-active%3F"><\/a>$/;"	a
-method-i-active%3F	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-active%3F"><\/a>$/;"	a
-method-i-active%3F	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-active%3F"><\/a>$/;"	a
-method-i-active_authorizer	doc/api/ActiveModel/MassAssignmentSecurity/ClassMethods.html	/^				<a name="method-i-active_authorizer"><\/a>$/;"	a
-method-i-acts_like%3F	doc/api/Object.html	/^				<a name="method-i-acts_like%3F"><\/a>$/;"	a
-method-i-acts_like_date%3F	doc/api/DateTime.html	/^				<a name="method-i-acts_like_date%3F"><\/a>$/;"	a
-method-i-acts_like_string%3F	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-acts_like_string%3F"><\/a>$/;"	a
-method-i-acts_like_time%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-acts_like_time%3F"><\/a>$/;"	a
-method-i-acts_like_time%3F	doc/api/DateTime.html	/^				<a name="method-i-acts_like_time%3F"><\/a>$/;"	a
-method-i-acts_like_time%3F	doc/api/Time.html	/^				<a name="method-i-acts_like_time%3F"><\/a>$/;"	a
-method-i-adapter_name	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-adapter_name"><\/a>$/;"	a
-method-i-adapter_name	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-adapter_name"><\/a>$/;"	a
-method-i-add	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-add"><\/a>$/;"	a
-method-i-add	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="method-i-add"><\/a>$/;"	a
-method-i-add_autosave_association_callbacks	doc/api/ActiveRecord/AutosaveAssociation/ClassMethods.html	/^				<a name="method-i-add_autosave_association_callbacks"><\/a>$/;"	a
-method-i-add_column	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-add_column"><\/a>$/;"	a
-method-i-add_column	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-add_column"><\/a>$/;"	a
-method-i-add_column	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-add_column"><\/a>$/;"	a
-method-i-add_column_position%21	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-add_column_position%21"><\/a>$/;"	a
-method-i-add_confirm_to_attributes%21	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-add_confirm_to_attributes%21"><\/a>$/;"	a
-method-i-add_counter_cache_callbacks	doc/api/ActiveRecord/Associations/ClassMethods.html	/^				<a name="method-i-add_counter_cache_callbacks"><\/a>$/;"	a
-method-i-add_disable_with_to_attributes%21	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-add_disable_with_to_attributes%21"><\/a>$/;"	a
-method-i-add_error	doc/api/ActiveSupport/Testing/ProxyTestResult.html	/^				<a name="method-i-add_error"><\/a>$/;"	a
-method-i-add_expr_escaped	doc/api/ActionView/Template/Handlers/Erubis.html	/^				<a name="method-i-add_expr_escaped"><\/a>$/;"	a
-method-i-add_expr_literal	doc/api/ActionView/Template/Handlers/Erubis.html	/^				<a name="method-i-add_expr_literal"><\/a>$/;"	a
-method-i-add_filter	doc/api/ActiveSupport/BacktraceCleaner.html	/^				<a name="method-i-add_filter"><\/a>$/;"	a
-method-i-add_index	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-add_index"><\/a>$/;"	a
-method-i-add_limit_offset%21	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-add_limit_offset%21"><\/a>$/;"	a
-method-i-add_method_to_attributes%21	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-add_method_to_attributes%21"><\/a>$/;"	a
-method-i-add_observer	doc/api/ActiveModel/Observing/ClassMethods.html	/^				<a name="method-i-add_observer"><\/a>$/;"	a
-method-i-add_observer%21	doc/api/ActiveRecord/Observer.html	/^				<a name="method-i-add_observer%21"><\/a>$/;"	a
-method-i-add_on_blank	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-add_on_blank"><\/a>$/;"	a
-method-i-add_on_empty	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-add_on_empty"><\/a>$/;"	a
-method-i-add_postamble	doc/api/ActionView/Template/Handlers/Erubis.html	/^				<a name="method-i-add_postamble"><\/a>$/;"	a
-method-i-add_preamble	doc/api/ActionView/Template/Handlers/Erubis.html	/^				<a name="method-i-add_preamble"><\/a>$/;"	a
-method-i-add_preloaded_record_to_collection	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-add_preloaded_record_to_collection"><\/a>$/;"	a
-method-i-add_preloaded_records_to_collection	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-add_preloaded_records_to_collection"><\/a>$/;"	a
-method-i-add_silencer	doc/api/ActiveSupport/BacktraceCleaner.html	/^				<a name="method-i-add_silencer"><\/a>$/;"	a
-method-i-add_stmt	doc/api/ActionView/Template/Handlers/Erubis.html	/^				<a name="method-i-add_stmt"><\/a>$/;"	a
-method-i-add_text	doc/api/ActionView/Template/Handlers/Erubis.html	/^				<a name="method-i-add_text"><\/a>$/;"	a
-method-i-add_timestamps	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-add_timestamps"><\/a>$/;"	a
-method-i-add_to_base	doc/api/ActiveModel/DeprecatedErrorMethods.html	/^				<a name="method-i-add_to_base"><\/a>$/;"	a
-method-i-add_to_transaction	doc/api/ActiveRecord/Transactions.html	/^				<a name="method-i-add_to_transaction"><\/a>$/;"	a
-method-i-add_touch_callbacks	doc/api/ActiveRecord/Associations/ClassMethods.html	/^				<a name="method-i-add_touch_callbacks"><\/a>$/;"	a
-method-i-add_transaction_record	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-add_transaction_record"><\/a>$/;"	a
-method-i-advance	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-advance"><\/a>$/;"	a
-method-i-advance	doc/api/DateTime.html	/^				<a name="method-i-advance"><\/a>$/;"	a
-method-i-advance	doc/api/Time.html	/^				<a name="method-i-advance"><\/a>$/;"	a
-method-i-after_commit	doc/api/ActiveRecord/Transactions/ClassMethods.html	/^				<a name="method-i-after_commit"><\/a>$/;"	a
-method-i-after_rollback	doc/api/ActiveRecord/Transactions/ClassMethods.html	/^				<a name="method-i-after_rollback"><\/a>$/;"	a
-method-i-after_validation	doc/api/ActiveModel/Validations/Callbacks/ClassMethods.html	/^				<a name="method-i-after_validation"><\/a>$/;"	a
-method-i-aggregate_column	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-aggregate_column"><\/a>$/;"	a
-method-i-ago	doc/api/ActiveSupport/Duration.html	/^				<a name="method-i-ago"><\/a>$/;"	a
-method-i-ago	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-ago"><\/a>$/;"	a
-method-i-ago	doc/api/DateTime.html	/^				<a name="method-i-ago"><\/a>$/;"	a
-method-i-ago	doc/api/Time.html	/^				<a name="method-i-ago"><\/a>$/;"	a
-method-i-alert	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-alert"><\/a>$/;"	a
-method-i-alias_attribute	doc/api/ActiveModel/AttributeMethods/ClassMethods.html	/^				<a name="method-i-alias_attribute"><\/a>$/;"	a
-method-i-all	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-all"><\/a>$/;"	a
-method-i-all_application_helpers	doc/api/ActionController/Helpers/ClassMethods.html	/^				<a name="method-i-all_application_helpers"><\/a>$/;"	a
-method-i-any%3F	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-any%3F"><\/a>$/;"	a
-method-i-api_behavior	doc/api/ActionController/Responder.html	/^				<a name="method-i-api_behavior"><\/a>$/;"	a
-method-i-api_location	doc/api/ActionController/Responder.html	/^				<a name="method-i-api_location"><\/a>$/;"	a
-method-i-append%3D	doc/api/ActionView/OutputBuffer.html	/^				<a name="method-i-append%3D"><\/a>$/;"	a
-method-i-append_conditions	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-append_conditions"><\/a>$/;"	a
-method-i-append_features	doc/api/ActiveSupport/Concern.html	/^				<a name="method-i-append_features"><\/a>$/;"	a
-method-i-append_if_string%3D	doc/api/ActionView/OutputBuffer.html	/^				<a name="method-i-append_if_string%3D"><\/a>$/;"	a
-method-i-append_info_to_payload	doc/api/ActiveRecord/Railties/ControllerRuntime.html	/^				<a name="method-i-append_info_to_payload"><\/a>$/;"	a
-method-i-apply_finder_options	doc/api/ActiveRecord/SpawnMethods.html	/^				<a name="method-i-apply_finder_options"><\/a>$/;"	a
-method-i-apply_join_dependency	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-apply_join_dependency"><\/a>$/;"	a
-method-i-apply_modules	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-apply_modules"><\/a>$/;"	a
-method-i-apply_ssl_options	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-apply_ssl_options"><\/a>$/;"	a
-method-i-arel	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-arel"><\/a>$/;"	a
-method-i-arel_attributes_values	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-arel_attributes_values"><\/a>$/;"	a
-method-i-arguments_for_call	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-arguments_for_call"><\/a>$/;"	a
-method-i-array_of_strings%3F	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-array_of_strings%3F"><\/a>$/;"	a
-method-i-array_or_string_for_javascript	doc/api/ActionView/Helpers/ScriptaculousHelper.html	/^				<a name="method-i-array_or_string_for_javascript"><\/a>$/;"	a
-method-i-array_or_string_for_javascript	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-array_or_string_for_javascript"><\/a>$/;"	a
-method-i-as_json	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-as_json"><\/a>$/;"	a
-method-i-as_json	doc/api/ActiveModel/Serializers/JSON.html	/^				<a name="method-i-as_json"><\/a>$/;"	a
-method-i-as_json	doc/api/ActiveSupport/JSON/Encoding/Encoder.html	/^				<a name="method-i-as_json"><\/a>$/;"	a
-method-i-as_json	doc/api/ActiveSupport/JSON/Variable.html	/^				<a name="method-i-as_json"><\/a>$/;"	a
-method-i-as_json	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-as_json"><\/a>$/;"	a
-method-i-as_json	doc/api/BigDecimal.html	/^				<a name="method-i-as_json"><\/a>$/;"	a
-method-i-as_json	doc/api/Enumerable.html	/^				<a name="method-i-as_json"><\/a>$/;"	a
-method-i-assert_blank	doc/api/ActiveSupport/Testing/Assertions.html	/^				<a name="method-i-assert_blank"><\/a>$/;"	a
-method-i-assert_boolean	doc/api/ActiveModel/Lint/Tests.html	/^				<a name="method-i-assert_boolean"><\/a>$/;"	a
-method-i-assert_difference	doc/api/ActiveSupport/Testing/Assertions.html	/^				<a name="method-i-assert_difference"><\/a>$/;"	a
-method-i-assert_no_difference	doc/api/ActiveSupport/Testing/Assertions.html	/^				<a name="method-i-assert_no_difference"><\/a>$/;"	a
-method-i-assert_present	doc/api/ActiveSupport/Testing/Assertions.html	/^				<a name="method-i-assert_present"><\/a>$/;"	a
-method-i-assert_template	doc/api/ActionController/TemplateAssertions.html	/^				<a name="method-i-assert_template"><\/a>$/;"	a
-method-i-asset_file_path	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-asset_file_path"><\/a>$/;"	a
-method-i-asset_file_path%21	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-asset_file_path%21"><\/a>$/;"	a
-method-i-assign	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-assign"><\/a>$/;"	a
-method-i-assign_multiparameter_attributes	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-assign_multiparameter_attributes"><\/a>$/;"	a
-method-i-assign_shortcuts	doc/api/ActionController/Compatibility.html	/^				<a name="method-i-assign_shortcuts"><\/a>$/;"	a
-method-i-associated_records_to_validate_or_save	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-associated_records_to_validate_or_save"><\/a>$/;"	a
-method-i-association_accessor_methods	doc/api/ActiveRecord/Associations/ClassMethods.html	/^				<a name="method-i-association_accessor_methods"><\/a>$/;"	a
-method-i-association_constructor_method	doc/api/ActiveRecord/Associations/ClassMethods.html	/^				<a name="method-i-association_constructor_method"><\/a>$/;"	a
-method-i-association_valid%3F	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-association_valid%3F"><\/a>$/;"	a
-method-i-assume_migrated_upto_version	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-assume_migrated_upto_version"><\/a>$/;"	a
-method-i-at	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-at"><\/a>$/;"	a
-method-i-at_beginning_of_day	doc/api/DateTime.html	/^				<a name="method-i-at_beginning_of_day"><\/a>$/;"	a
-method-i-at_beginning_of_day	doc/api/Time.html	/^				<a name="method-i-at_beginning_of_day"><\/a>$/;"	a
-method-i-at_beginning_of_month	doc/api/Time.html	/^				<a name="method-i-at_beginning_of_month"><\/a>$/;"	a
-method-i-at_beginning_of_quarter	doc/api/Time.html	/^				<a name="method-i-at_beginning_of_quarter"><\/a>$/;"	a
-method-i-at_beginning_of_week	doc/api/Time.html	/^				<a name="method-i-at_beginning_of_week"><\/a>$/;"	a
-method-i-at_beginning_of_year	doc/api/Time.html	/^				<a name="method-i-at_beginning_of_year"><\/a>$/;"	a
-method-i-at_end_of_month	doc/api/Time.html	/^				<a name="method-i-at_end_of_month"><\/a>$/;"	a
-method-i-at_end_of_quarter	doc/api/Time.html	/^				<a name="method-i-at_end_of_quarter"><\/a>$/;"	a
-method-i-at_end_of_week	doc/api/Time.html	/^				<a name="method-i-at_end_of_week"><\/a>$/;"	a
-method-i-at_end_of_year	doc/api/Time.html	/^				<a name="method-i-at_end_of_year"><\/a>$/;"	a
-method-i-at_midnight	doc/api/DateTime.html	/^				<a name="method-i-at_midnight"><\/a>$/;"	a
-method-i-at_midnight	doc/api/Time.html	/^				<a name="method-i-at_midnight"><\/a>$/;"	a
-method-i-atom_feed	doc/api/ActionView/Helpers/AtomFeedHelper.html	/^				<a name="method-i-atom_feed"><\/a>$/;"	a
-method-i-attachments	doc/api/ActionMailer/Base.html	/^				<a name="method-i-attachments"><\/a>$/;"	a
-method-i-attr_accessible	doc/api/ActiveModel/MassAssignmentSecurity/ClassMethods.html	/^				<a name="method-i-attr_accessible"><\/a>$/;"	a
-method-i-attr_protected	doc/api/ActiveModel/MassAssignmentSecurity/ClassMethods.html	/^				<a name="method-i-attr_protected"><\/a>$/;"	a
-method-i-attribute	doc/api/ActiveRecord/AttributeMethods/Read.html	/^				<a name="method-i-attribute"><\/a>$/;"	a
-method-i-attribute%3D	doc/api/ActiveRecord/AttributeMethods/Write.html	/^				<a name="method-i-attribute%3D"><\/a>$/;"	a
-method-i-attribute%3F	doc/api/ActiveRecord/AttributeMethods/Query.html	/^				<a name="method-i-attribute%3F"><\/a>$/;"	a
-method-i-attribute_before_type_cast	doc/api/ActiveRecord/AttributeMethods/BeforeTypeCast.html	/^				<a name="method-i-attribute_before_type_cast"><\/a>$/;"	a
-method-i-attribute_change	doc/api/ActiveModel/Dirty.html	/^				<a name="method-i-attribute_change"><\/a>$/;"	a
-method-i-attribute_changed%3F	doc/api/ActiveModel/Dirty.html	/^				<a name="method-i-attribute_changed%3F"><\/a>$/;"	a
-method-i-attribute_for_inspect	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-attribute_for_inspect"><\/a>$/;"	a
-method-i-attribute_match	doc/api/HTML/Selector.html	/^				<a name="method-i-attribute_match"><\/a>$/;"	a
-method-i-attribute_method%3F	doc/api/ActiveModel/AttributeMethods.html	/^				<a name="method-i-attribute_method%3F"><\/a>$/;"	a
-method-i-attribute_method%3F	doc/api/ActiveModel/Validations/ClassMethods.html	/^				<a name="method-i-attribute_method%3F"><\/a>$/;"	a
-method-i-attribute_method_affix	doc/api/ActiveModel/AttributeMethods/ClassMethods.html	/^				<a name="method-i-attribute_method_affix"><\/a>$/;"	a
-method-i-attribute_method_prefix	doc/api/ActiveModel/AttributeMethods/ClassMethods.html	/^				<a name="method-i-attribute_method_prefix"><\/a>$/;"	a
-method-i-attribute_method_suffix	doc/api/ActiveModel/AttributeMethods/ClassMethods.html	/^				<a name="method-i-attribute_method_suffix"><\/a>$/;"	a
-method-i-attribute_methods_generated%3F	doc/api/ActiveModel/AttributeMethods/ClassMethods.html	/^				<a name="method-i-attribute_methods_generated%3F"><\/a>$/;"	a
-method-i-attribute_names	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-attribute_names"><\/a>$/;"	a
-method-i-attribute_present%3F	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-attribute_present%3F"><\/a>$/;"	a
-method-i-attribute_was	doc/api/ActiveModel/Dirty.html	/^				<a name="method-i-attribute_was"><\/a>$/;"	a
-method-i-attribute_will_change%21	doc/api/ActiveModel/Dirty.html	/^				<a name="method-i-attribute_will_change%21"><\/a>$/;"	a
-method-i-attributes	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-attributes"><\/a>$/;"	a
-method-i-attributes%3D	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-attributes%3D"><\/a>$/;"	a
-method-i-attributes_before_type_cast	doc/api/ActiveRecord/AttributeMethods/BeforeTypeCast.html	/^				<a name="method-i-attributes_before_type_cast"><\/a>$/;"	a
-method-i-attributes_from_column_definition	doc/api/ActiveRecord/Locking/Optimistic.html	/^				<a name="method-i-attributes_from_column_definition"><\/a>$/;"	a
-method-i-attributes_from_column_definition	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-attributes_from_column_definition"><\/a>$/;"	a
-method-i-attributes_protected_by_default	doc/api/ActiveModel/MassAssignmentSecurity/ClassMethods.html	/^				<a name="method-i-attributes_protected_by_default"><\/a>$/;"	a
-method-i-audio_path	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-audio_path"><\/a>$/;"	a
-method-i-audio_tag	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-audio_tag"><\/a>$/;"	a
-method-i-auth_attributes_for	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-auth_attributes_for"><\/a>$/;"	a
-method-i-auth_type%3D	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-auth_type%3D"><\/a>$/;"	a
-method-i-authenticate	doc/api/ActionController/HttpAuthentication/Basic.html	/^				<a name="method-i-authenticate"><\/a>$/;"	a
-method-i-authenticate	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-authenticate"><\/a>$/;"	a
-method-i-authenticate	doc/api/ActionController/HttpAuthentication/Token.html	/^				<a name="method-i-authenticate"><\/a>$/;"	a
-method-i-authenticate_or_request_with_http_basic	doc/api/ActionController/HttpAuthentication/Basic/ControllerMethods.html	/^				<a name="method-i-authenticate_or_request_with_http_basic"><\/a>$/;"	a
-method-i-authenticate_or_request_with_http_digest	doc/api/ActionController/HttpAuthentication/Digest/ControllerMethods.html	/^				<a name="method-i-authenticate_or_request_with_http_digest"><\/a>$/;"	a
-method-i-authenticate_or_request_with_http_token	doc/api/ActionController/HttpAuthentication/Token/ControllerMethods.html	/^				<a name="method-i-authenticate_or_request_with_http_token"><\/a>$/;"	a
-method-i-authenticate_with_http_basic	doc/api/ActionController/HttpAuthentication/Basic/ControllerMethods.html	/^				<a name="method-i-authenticate_with_http_basic"><\/a>$/;"	a
-method-i-authenticate_with_http_digest	doc/api/ActionController/HttpAuthentication/Digest/ControllerMethods.html	/^				<a name="method-i-authenticate_with_http_digest"><\/a>$/;"	a
-method-i-authenticate_with_http_token	doc/api/ActionController/HttpAuthentication/Token/ControllerMethods.html	/^				<a name="method-i-authenticate_with_http_token"><\/a>$/;"	a
-method-i-authentication_header	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-authentication_header"><\/a>$/;"	a
-method-i-authentication_request	doc/api/ActionController/HttpAuthentication/Basic.html	/^				<a name="method-i-authentication_request"><\/a>$/;"	a
-method-i-authentication_request	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-authentication_request"><\/a>$/;"	a
-method-i-authentication_request	doc/api/ActionController/HttpAuthentication/Token.html	/^				<a name="method-i-authentication_request"><\/a>$/;"	a
-method-i-authorization_header	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-authorization_header"><\/a>$/;"	a
-method-i-auto_discovery_link_tag	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-auto_discovery_link_tag"><\/a>$/;"	a
-method-i-auto_flush	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="method-i-auto_flush"><\/a>$/;"	a
-method-i-auto_flushing%3D	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="method-i-auto_flushing%3D"><\/a>$/;"	a
-method-i-auto_link	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-auto_link"><\/a>$/;"	a
-method-i-auto_link_email_addresses	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-auto_link_email_addresses"><\/a>$/;"	a
-method-i-auto_link_urls	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-auto_link_urls"><\/a>$/;"	a
-method-i-auto_linked%3F	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-auto_linked%3F"><\/a>$/;"	a
-method-i-autoload	doc/api/ActiveSupport/Autoload.html	/^				<a name="method-i-autoload"><\/a>$/;"	a
-method-i-autoload_at	doc/api/ActiveSupport/Autoload.html	/^				<a name="method-i-autoload_at"><\/a>$/;"	a
-method-i-autoload_under	doc/api/ActiveSupport/Autoload.html	/^				<a name="method-i-autoload_under"><\/a>$/;"	a
-method-i-autoloads	doc/api/ActiveSupport/Autoload.html	/^				<a name="method-i-autoloads"><\/a>$/;"	a
-method-i-average	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-average"><\/a>$/;"	a
-method-i-backend%3D	doc/api/ActiveSupport/XmlMini.html	/^				<a name="method-i-backend%3D"><\/a>$/;"	a
-method-i-bang%3F	doc/api/ActiveRecord/DynamicFinderMatch.html	/^				<a name="method-i-bang%3F"><\/a>$/;"	a
-method-i-becomes	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-becomes"><\/a>$/;"	a
-method-i-before_filters	doc/api/ActionController/Testing/ClassMethods.html	/^				<a name="method-i-before_filters"><\/a>$/;"	a
-method-i-before_save_collection_association	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-before_save_collection_association"><\/a>$/;"	a
-method-i-before_validation	doc/api/ActiveModel/Validations/Callbacks/ClassMethods.html	/^				<a name="method-i-before_validation"><\/a>$/;"	a
-method-i-begin_db_transaction	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-begin_db_transaction"><\/a>$/;"	a
-method-i-begin_db_transaction	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-begin_db_transaction"><\/a>$/;"	a
-method-i-beginning_of_day	doc/api/DateTime.html	/^				<a name="method-i-beginning_of_day"><\/a>$/;"	a
-method-i-beginning_of_day	doc/api/Time.html	/^				<a name="method-i-beginning_of_day"><\/a>$/;"	a
-method-i-beginning_of_month	doc/api/Time.html	/^				<a name="method-i-beginning_of_month"><\/a>$/;"	a
-method-i-beginning_of_quarter	doc/api/Time.html	/^				<a name="method-i-beginning_of_quarter"><\/a>$/;"	a
-method-i-beginning_of_week	doc/api/Time.html	/^				<a name="method-i-beginning_of_week"><\/a>$/;"	a
-method-i-beginning_of_year	doc/api/Time.html	/^				<a name="method-i-beginning_of_year"><\/a>$/;"	a
-method-i-belongs_to	doc/api/ActiveRecord/Associations/ClassMethods.html	/^				<a name="method-i-belongs_to"><\/a>$/;"	a
-method-i-belongs_to	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-belongs_to"><\/a>$/;"	a
-method-i-belongs_to	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="method-i-belongs_to"><\/a>$/;"	a
-method-i-benchmark	doc/api/ActiveSupport/Testing/Performance/Metrics/Base.html	/^				<a name="method-i-benchmark"><\/a>$/;"	a
-method-i-between%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-between%3F"><\/a>$/;"	a
-method-i-blank%3F	doc/api/Object.html	/^				<a name="method-i-blank%3F"><\/a>$/;"	a
-method-i-block_to_function	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-block_to_function"><\/a>$/;"	a
-method-i-breakpoint	doc/api/Kernel.html	/^				<a name="method-i-breakpoint"><\/a>$/;"	a
-method-i-buffer	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="method-i-buffer"><\/a>$/;"	a
-method-i-build	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-build"><\/a>$/;"	a
-method-i-build_arel	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-build_arel"><\/a>$/;"	a
-method-i-build_callbacks	doc/api/ActionView/Helpers/PrototypeHelper.html	/^				<a name="method-i-build_callbacks"><\/a>$/;"	a
-method-i-build_conditions	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-build_conditions"><\/a>$/;"	a
-method-i-build_from_hash	doc/api/ActiveRecord/PredicateBuilder.html	/^				<a name="method-i-build_from_hash"><\/a>$/;"	a
-method-i-build_joins	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-build_joins"><\/a>$/;"	a
-method-i-build_method_name	doc/api/ActionView/Template.html	/^				<a name="method-i-build_method_name"><\/a>$/;"	a
-method-i-build_path	doc/api/ActionView/PathResolver.html	/^				<a name="method-i-build_path"><\/a>$/;"	a
-method-i-build_request_headers	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-build_request_headers"><\/a>$/;"	a
-method-i-build_request_uri	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="method-i-build_request_uri"><\/a>$/;"	a
-method-i-build_select	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-build_select"><\/a>$/;"	a
-method-i-build_sti_condition	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-build_sti_condition"><\/a>$/;"	a
-method-i-build_through_conditions	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-build_through_conditions"><\/a>$/;"	a
-method-i-build_where	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-build_where"><\/a>$/;"	a
-method-i-button_to	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-button_to"><\/a>$/;"	a
-method-i-button_to_function	doc/api/ActionView/Helpers/JavaScriptHelper.html	/^				<a name="method-i-button_to_function"><\/a>$/;"	a
-method-i-bypass_local_cache	doc/api/ActiveSupport/Cache/Strategy/LocalCache.html	/^				<a name="method-i-bypass_local_cache"><\/a>$/;"	a
-method-i-cache	doc/api/ActionController/Caching.html	/^				<a name="method-i-cache"><\/a>$/;"	a
-method-i-cache	doc/api/ActiveRecord/ConnectionAdapters/QueryCache.html	/^				<a name="method-i-cache"><\/a>$/;"	a
-method-i-cache	doc/api/ActiveRecord/QueryCache/ClassMethods.html	/^				<a name="method-i-cache"><\/a>$/;"	a
-method-i-cache_attribute%3F	doc/api/ActiveRecord/AttributeMethods/Read/ClassMethods.html	/^				<a name="method-i-cache_attribute%3F"><\/a>$/;"	a
-method-i-cache_attributes	doc/api/ActiveRecord/AttributeMethods/Read/ClassMethods.html	/^				<a name="method-i-cache_attributes"><\/a>$/;"	a
-method-i-cache_configured%3F	doc/api/ActionController/Caching/ConfigMethods.html	/^				<a name="method-i-cache_configured%3F"><\/a>$/;"	a
-method-i-cache_key	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-cache_key"><\/a>$/;"	a
-method-i-cache_page	doc/api/ActionController/Caching/Pages.html	/^				<a name="method-i-cache_page"><\/a>$/;"	a
-method-i-cache_page	doc/api/ActionController/Caching/Pages/ClassMethods.html	/^				<a name="method-i-cache_page"><\/a>$/;"	a
-method-i-cache_sql	doc/api/ActiveRecord/ConnectionAdapters/QueryCache.html	/^				<a name="method-i-cache_sql"><\/a>$/;"	a
-method-i-cache_store	doc/api/ActionController/Caching/ConfigMethods.html	/^				<a name="method-i-cache_store"><\/a>$/;"	a
-method-i-cache_store%3D	doc/api/ActionController/Caching/ConfigMethods.html	/^				<a name="method-i-cache_store%3D"><\/a>$/;"	a
-method-i-cached	doc/api/ActionView/Resolver.html	/^				<a name="method-i-cached"><\/a>$/;"	a
-method-i-cached_attributes	doc/api/ActiveRecord/AttributeMethods/Read/ClassMethods.html	/^				<a name="method-i-cached_attributes"><\/a>$/;"	a
-method-i-caches_action	doc/api/ActionController/Caching/Actions/ClassMethods.html	/^				<a name="method-i-caches_action"><\/a>$/;"	a
-method-i-caches_page	doc/api/ActionController/Caching/Pages/ClassMethods.html	/^				<a name="method-i-caches_page"><\/a>$/;"	a
-method-i-caching%3F	doc/api/ActionView/Resolver.html	/^				<a name="method-i-caching%3F"><\/a>$/;"	a
-method-i-caching_allowed	doc/api/ActionController/Caching/Pages.html	/^				<a name="method-i-caching_allowed"><\/a>$/;"	a
-method-i-caching_allowed%3F	doc/api/ActionController/Caching.html	/^				<a name="method-i-caching_allowed%3F"><\/a>$/;"	a
-method-i-calculate	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-calculate"><\/a>$/;"	a
-method-i-call	doc/api/ActionController/Middleware/ActionMiddleware.html	/^				<a name="method-i-call"><\/a>$/;"	a
-method-i-call	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-call"><\/a>$/;"	a
-method-i-call	doc/api/ActionView/Template/Handlers/Compilable/ClassMethods.html	/^				<a name="method-i-call"><\/a>$/;"	a
-method-i-call	doc/api/ActiveRecord/ConnectionAdapters/ConnectionManagement.html	/^				<a name="method-i-call"><\/a>$/;"	a
-method-i-call	doc/api/ActiveRecord/QueryCache.html	/^				<a name="method-i-call"><\/a>$/;"	a
-method-i-call	doc/api/ActiveSupport/LogSubscriber.html	/^				<a name="method-i-call"><\/a>$/;"	a
-method-i-call	doc/api/Logger/SimpleFormatter.html	/^				<a name="method-i-call"><\/a>$/;"	a
-method-i-callback	doc/api/ActiveSupport/Callbacks.html	/^				<a name="method-i-callback"><\/a>$/;"	a
-method-i-camelize	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-camelize"><\/a>$/;"	a
-method-i-capitalize	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-capitalize"><\/a>$/;"	a
-method-i-case_sensitive_equality_operator	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-case_sensitive_equality_operator"><\/a>$/;"	a
-method-i-case_sensitive_equality_operator	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-case_sensitive_equality_operator"><\/a>$/;"	a
-method-i-cdata_block	doc/api/ActiveSupport/XmlMini_NokogiriSAX/HashBuilder.html	/^				<a name="method-i-cdata_block"><\/a>$/;"	a
-method-i-cdata_section	doc/api/ActionView/Helpers/TagHelper.html	/^				<a name="method-i-cdata_section"><\/a>$/;"	a
-method-i-center	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-center"><\/a>$/;"	a
-method-i-change	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-change"><\/a>$/;"	a
-method-i-change	doc/api/DateTime.html	/^				<a name="method-i-change"><\/a>$/;"	a
-method-i-change	doc/api/Time.html	/^				<a name="method-i-change"><\/a>$/;"	a
-method-i-change_column	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-change_column"><\/a>$/;"	a
-method-i-change_column	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-change_column"><\/a>$/;"	a
-method-i-change_column_default	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-change_column_default"><\/a>$/;"	a
-method-i-change_column_default	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-change_column_default"><\/a>$/;"	a
-method-i-change_column_null	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-change_column_null"><\/a>$/;"	a
-method-i-change_column_null	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-change_column_null"><\/a>$/;"	a
-method-i-change_column_null	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-change_column_null"><\/a>$/;"	a
-method-i-change_default	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-change_default"><\/a>$/;"	a
-method-i-change_table	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-change_table"><\/a>$/;"	a
-method-i-changed	doc/api/ActiveModel/Dirty.html	/^				<a name="method-i-changed"><\/a>$/;"	a
-method-i-changed%3F	doc/api/ActiveModel/Dirty.html	/^				<a name="method-i-changed%3F"><\/a>$/;"	a
-method-i-changed_attributes	doc/api/ActiveModel/Dirty.html	/^				<a name="method-i-changed_attributes"><\/a>$/;"	a
-method-i-changed_for_autosave%3F	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-changed_for_autosave%3F"><\/a>$/;"	a
-method-i-changes	doc/api/ActiveModel/Dirty.html	/^				<a name="method-i-changes"><\/a>$/;"	a
-method-i-characters	doc/api/ActiveSupport/XmlMini_NokogiriSAX/HashBuilder.html	/^				<a name="method-i-characters"><\/a>$/;"	a
-method-i-charset	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-charset"><\/a>$/;"	a
-method-i-check_box	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-check_box"><\/a>$/;"	a
-method-i-check_box_checked%3F	doc/api/ActionView/Helpers/InstanceTagMethods/ClassMethods.html	/^				<a name="method-i-check_box_checked%3F"><\/a>$/;"	a
-method-i-check_box_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-check_box_tag"><\/a>$/;"	a
-method-i-check_for_circular_references	doc/api/ActiveSupport/JSON/Encoding/Encoder.html	/^				<a name="method-i-check_for_circular_references"><\/a>$/;"	a
-method-i-check_validity%21	doc/api/ActiveModel/EachValidator.html	/^				<a name="method-i-check_validity%21"><\/a>$/;"	a
-method-i-check_validity%21	doc/api/ActiveModel/Validations/ExclusionValidator.html	/^				<a name="method-i-check_validity%21"><\/a>$/;"	a
-method-i-check_validity%21	doc/api/ActiveModel/Validations/FormatValidator.html	/^				<a name="method-i-check_validity%21"><\/a>$/;"	a
-method-i-check_validity%21	doc/api/ActiveModel/Validations/InclusionValidator.html	/^				<a name="method-i-check_validity%21"><\/a>$/;"	a
-method-i-check_validity%21	doc/api/ActiveModel/Validations/LengthValidator.html	/^				<a name="method-i-check_validity%21"><\/a>$/;"	a
-method-i-check_validity%21	doc/api/ActiveModel/Validations/NumericalityValidator.html	/^				<a name="method-i-check_validity%21"><\/a>$/;"	a
-method-i-checkin	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-checkin"><\/a>$/;"	a
-method-i-checkout	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-checkout"><\/a>$/;"	a
-method-i-checkout_and_verify	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-checkout_and_verify"><\/a>$/;"	a
-method-i-checkout_existing_connection	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-checkout_existing_connection"><\/a>$/;"	a
-method-i-checkout_new_connection	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-checkout_new_connection"><\/a>$/;"	a
-method-i-class_eval	doc/api/Kernel.html	/^				<a name="method-i-class_eval"><\/a>$/;"	a
-method-i-class_name	doc/api/ActiveRecord/Reflection/MacroReflection.html	/^				<a name="method-i-class_name"><\/a>$/;"	a
-method-i-classify	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-classify"><\/a>$/;"	a
-method-i-clean	doc/api/ActiveSupport/BacktraceCleaner.html	/^				<a name="method-i-clean"><\/a>$/;"	a
-method-i-cleanup	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-cleanup"><\/a>$/;"	a
-method-i-cleanup	doc/api/ActiveSupport/Cache/MemoryStore.html	/^				<a name="method-i-cleanup"><\/a>$/;"	a
-method-i-cleanup	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-cleanup"><\/a>$/;"	a
-method-i-cleanup_view_runtime	doc/api/ActiveRecord/Railties/ControllerRuntime.html	/^				<a name="method-i-cleanup_view_runtime"><\/a>$/;"	a
-method-i-clear	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-clear"><\/a>$/;"	a
-method-i-clear	doc/api/ActiveSupport/Cache/MemCacheStore.html	/^				<a name="method-i-clear"><\/a>$/;"	a
-method-i-clear	doc/api/ActiveSupport/Cache/MemoryStore.html	/^				<a name="method-i-clear"><\/a>$/;"	a
-method-i-clear	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-clear"><\/a>$/;"	a
-method-i-clear	doc/api/ActiveSupport/Cache/Strategy/LocalCache/LocalStore.html	/^				<a name="method-i-clear"><\/a>$/;"	a
-method-i-clear	doc/api/ActiveSupport/Inflector/Inflections.html	/^				<a name="method-i-clear"><\/a>$/;"	a
-method-i-clear_active_connections%21	doc/api/ActiveRecord/ConnectionAdapters/ConnectionHandler.html	/^				<a name="method-i-clear_active_connections%21"><\/a>$/;"	a
-method-i-clear_all_connections%21	doc/api/ActiveRecord/ConnectionAdapters/ConnectionHandler.html	/^				<a name="method-i-clear_all_connections%21"><\/a>$/;"	a
-method-i-clear_buffer	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="method-i-clear_buffer"><\/a>$/;"	a
-method-i-clear_cache	doc/api/ActionView/Resolver.html	/^				<a name="method-i-clear_cache"><\/a>$/;"	a
-method-i-clear_query_cache	doc/api/ActiveRecord/ConnectionAdapters/QueryCache.html	/^				<a name="method-i-clear_query_cache"><\/a>$/;"	a
-method-i-clear_reloadable_connections%21	doc/api/ActiveRecord/ConnectionAdapters/ConnectionHandler.html	/^				<a name="method-i-clear_reloadable_connections%21"><\/a>$/;"	a
-method-i-clear_reloadable_connections%21	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-clear_reloadable_connections%21"><\/a>$/;"	a
-method-i-clear_respond_to	doc/api/ActionController/MimeResponds/ClassMethods.html	/^				<a name="method-i-clear_respond_to"><\/a>$/;"	a
-method-i-clear_stale_cached_connections%21	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-clear_stale_cached_connections%21"><\/a>$/;"	a
-method-i-clear_transaction_record_state	doc/api/ActiveRecord/Transactions.html	/^				<a name="method-i-clear_transaction_record_state"><\/a>$/;"	a
-method-i-client_min_messages	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-client_min_messages"><\/a>$/;"	a
-method-i-client_min_messages%3D	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-client_min_messages%3D"><\/a>$/;"	a
-method-i-client_nonce	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-client_nonce"><\/a>$/;"	a
-method-i-clone	doc/api/ActiveResource/Base.html	/^				<a name="method-i-clone"><\/a>$/;"	a
-method-i-clone	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-clone"><\/a>$/;"	a
-method-i-clone_attribute_value	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-clone_attribute_value"><\/a>$/;"	a
-method-i-clone_attributes	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-clone_attributes"><\/a>$/;"	a
-method-i-clone_with_time_zone_conversion_attribute%3F	doc/api/ActiveRecord/AttributeMethods/Dirty.html	/^				<a name="method-i-clone_with_time_zone_conversion_attribute%3F"><\/a>$/;"	a
-method-i-close	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="method-i-close"><\/a>$/;"	a
-method-i-close	doc/api/ActiveSupport/Gzip/Stream.html	/^				<a name="method-i-close"><\/a>$/;"	a
-method-i-collation	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-collation"><\/a>$/;"	a
-method-i-collect_asset_files	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-collect_asset_files"><\/a>$/;"	a
-method-i-collection_accessor_methods	doc/api/ActiveRecord/Associations/ClassMethods.html	/^				<a name="method-i-collection_accessor_methods"><\/a>$/;"	a
-method-i-collection_path	doc/api/ActiveResource/Base.html	/^				<a name="method-i-collection_path"><\/a>$/;"	a
-method-i-collection_reader_method	doc/api/ActiveRecord/Associations/ClassMethods.html	/^				<a name="method-i-collection_reader_method"><\/a>$/;"	a
-method-i-collection_select	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-collection_select"><\/a>$/;"	a
-method-i-color	doc/api/ActiveSupport/LogSubscriber.html	/^				<a name="method-i-color"><\/a>$/;"	a
-method-i-column	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-column"><\/a>$/;"	a
-method-i-column	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="method-i-column"><\/a>$/;"	a
-method-i-column_alias_for	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-column_alias_for"><\/a>$/;"	a
-method-i-column_aliases	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-column_aliases"><\/a>$/;"	a
-method-i-column_exists%3F	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-column_exists%3F"><\/a>$/;"	a
-method-i-column_exists%3F	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-column_exists%3F"><\/a>$/;"	a
-method-i-column_for	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-column_for"><\/a>$/;"	a
-method-i-column_for	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-column_for"><\/a>$/;"	a
-method-i-column_for_attribute	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-column_for_attribute"><\/a>$/;"	a
-method-i-column_name_length	doc/api/ActiveRecord/ConnectionAdapters/DatabaseLimits.html	/^				<a name="method-i-column_name_length"><\/a>$/;"	a
-method-i-column_names	doc/api/Fixtures.html	/^				<a name="method-i-column_names"><\/a>$/;"	a
-method-i-columns	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-columns"><\/a>$/;"	a
-method-i-columns	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-columns"><\/a>$/;"	a
-method-i-columns_per_multicolumn_index	doc/api/ActiveRecord/ConnectionAdapters/DatabaseLimits.html	/^				<a name="method-i-columns_per_multicolumn_index"><\/a>$/;"	a
-method-i-columns_per_table	doc/api/ActiveRecord/ConnectionAdapters/DatabaseLimits.html	/^				<a name="method-i-columns_per_table"><\/a>$/;"	a
-method-i-comma_pair_list	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-comma_pair_list"><\/a>$/;"	a
-method-i-commit_db_transaction	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-commit_db_transaction"><\/a>$/;"	a
-method-i-commit_db_transaction	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-commit_db_transaction"><\/a>$/;"	a
-method-i-commit_transaction_records	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-commit_transaction_records"><\/a>$/;"	a
-method-i-comparable_time	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-comparable_time"><\/a>$/;"	a
-method-i-compare_with_coercion	doc/api/DateTime.html	/^				<a name="method-i-compare_with_coercion"><\/a>$/;"	a
-method-i-compare_with_coercion	doc/api/Time.html	/^				<a name="method-i-compare_with_coercion"><\/a>$/;"	a
-method-i-compare_without_coercion	doc/api/DateTime.html	/^				<a name="method-i-compare_without_coercion"><\/a>$/;"	a
-method-i-compare_without_coercion	doc/api/Time.html	/^				<a name="method-i-compare_without_coercion"><\/a>$/;"	a
-method-i-compile	doc/api/ActionView/Template.html	/^				<a name="method-i-compile"><\/a>$/;"	a
-method-i-compile	doc/api/ActionView/Template/Handlers/Builder.html	/^				<a name="method-i-compile"><\/a>$/;"	a
-method-i-compile	doc/api/ActionView/Template/Handlers/Compilable.html	/^				<a name="method-i-compile"><\/a>$/;"	a
-method-i-compile	doc/api/ActionView/Template/Handlers/ERB.html	/^				<a name="method-i-compile"><\/a>$/;"	a
-method-i-compile	doc/api/ActionView/Template/Handlers/RJS.html	/^				<a name="method-i-compile"><\/a>$/;"	a
-method-i-compile	doc/api/ActiveSupport/Callbacks/CallbackChain.html	/^				<a name="method-i-compile"><\/a>$/;"	a
-method-i-compose	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-compose"><\/a>$/;"	a
-method-i-compose_codepoints	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="method-i-compose_codepoints"><\/a>$/;"	a
-method-i-composed_of	doc/api/ActiveRecord/Aggregations/ClassMethods.html	/^				<a name="method-i-composed_of"><\/a>$/;"	a
-method-i-compressed%3F	doc/api/ActiveSupport/Cache/Entry.html	/^				<a name="method-i-compressed%3F"><\/a>$/;"	a
-method-i-compute_asset_host	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-compute_asset_host"><\/a>$/;"	a
-method-i-compute_javascript_paths	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-compute_javascript_paths"><\/a>$/;"	a
-method-i-compute_public_path	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-compute_public_path"><\/a>$/;"	a
-method-i-compute_stylesheet_paths	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-compute_stylesheet_paths"><\/a>$/;"	a
-method-i-concat	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-concat"><\/a>$/;"	a
-method-i-concat	doc/api/ActiveSupport/SafeBuffer.html	/^				<a name="method-i-concat"><\/a>$/;"	a
-method-i-conditions	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-conditions"><\/a>$/;"	a
-method-i-config	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-config"><\/a>$/;"	a
-method-i-config	doc/api/ActiveSupport/Configurable.html	/^				<a name="method-i-config"><\/a>$/;"	a
-method-i-config	doc/api/ActiveSupport/Configurable/ClassMethods.html	/^				<a name="method-i-config"><\/a>$/;"	a
-method-i-config_accessor	doc/api/ActiveSupport/Configurable/ClassMethods.html	/^				<a name="method-i-config_accessor"><\/a>$/;"	a
-method-i-configure	doc/api/ActiveSupport/Configurable/ClassMethods.html	/^				<a name="method-i-configure"><\/a>$/;"	a
-method-i-configure_connection	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-configure_connection"><\/a>$/;"	a
-method-i-configure_connection	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-configure_connection"><\/a>$/;"	a
-method-i-configure_dependency_for_has_many	doc/api/ActiveRecord/Associations/ClassMethods.html	/^				<a name="method-i-configure_dependency_for_has_many"><\/a>$/;"	a
-method-i-configure_http	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-configure_http"><\/a>$/;"	a
-method-i-connect	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-connect"><\/a>$/;"	a
-method-i-connect	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-connect"><\/a>$/;"	a
-method-i-connected%3F	doc/api/ActiveRecord/ConnectionAdapters/ConnectionHandler.html	/^				<a name="method-i-connected%3F"><\/a>$/;"	a
-method-i-connected%3F	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-connected%3F"><\/a>$/;"	a
-method-i-connection	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-connection"><\/a>$/;"	a
-method-i-connection	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-connection"><\/a>$/;"	a
-method-i-connection	doc/api/ActiveResource/Base.html	/^				<a name="method-i-connection"><\/a>$/;"	a
-method-i-constantize	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-constantize"><\/a>$/;"	a
-method-i-construct_conditions	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-construct_conditions"><\/a>$/;"	a
-method-i-construct_from	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-construct_from"><\/a>$/;"	a
-method-i-construct_id_map	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-construct_id_map"><\/a>$/;"	a
-method-i-construct_join_attributes	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-construct_join_attributes"><\/a>$/;"	a
-method-i-construct_joins	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-construct_joins"><\/a>$/;"	a
-method-i-construct_limited_ids_condition	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-construct_limited_ids_condition"><\/a>$/;"	a
-method-i-construct_owner_attributes	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-construct_owner_attributes"><\/a>$/;"	a
-method-i-construct_quoted_owner_attributes	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-construct_quoted_owner_attributes"><\/a>$/;"	a
-method-i-construct_relation_for_association_calculations	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-construct_relation_for_association_calculations"><\/a>$/;"	a
-method-i-construct_relation_for_association_find	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-construct_relation_for_association_find"><\/a>$/;"	a
-method-i-construct_scope	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-construct_scope"><\/a>$/;"	a
-method-i-construct_select	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-construct_select"><\/a>$/;"	a
-method-i-contains_bad_protocols%3F	doc/api/HTML/WhiteListSanitizer.html	/^				<a name="method-i-contains_bad_protocols%3F"><\/a>$/;"	a
-method-i-content_tag	doc/api/ActionView/Helpers/TagHelper.html	/^				<a name="method-i-content_tag"><\/a>$/;"	a
-method-i-content_tag_string	doc/api/ActionView/Helpers/TagHelper.html	/^				<a name="method-i-content_tag_string"><\/a>$/;"	a
-method-i-content_type	doc/api/ActionController/Metal.html	/^				<a name="method-i-content_type"><\/a>$/;"	a
-method-i-content_type%3D	doc/api/ActionController/Metal.html	/^				<a name="method-i-content_type%3D"><\/a>$/;"	a
-method-i-controller_class	doc/api/ActionController/TestCase/Behavior/ClassMethods.html	/^				<a name="method-i-controller_class"><\/a>$/;"	a
-method-i-controller_class%3D	doc/api/ActionController/TestCase/Behavior/ClassMethods.html	/^				<a name="method-i-controller_class%3D"><\/a>$/;"	a
-method-i-controller_name	doc/api/ActionController/Metal.html	/^				<a name="method-i-controller_name"><\/a>$/;"	a
-method-i-controller_path%3D	doc/api/ActionView/TestCase/TestController.html	/^				<a name="method-i-controller_path%3D"><\/a>$/;"	a
-method-i-convert_boolean_attributes%21	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-convert_boolean_attributes%21"><\/a>$/;"	a
-method-i-convert_dates_from	doc/api/ActiveSupport/JSON/Backends/JSONGem.html	/^				<a name="method-i-convert_dates_from"><\/a>$/;"	a
-method-i-convert_dates_from	doc/api/ActiveSupport/JSON/Backends/Yajl.html	/^				<a name="method-i-convert_dates_from"><\/a>$/;"	a
-method-i-convert_key	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-convert_key"><\/a>$/;"	a
-method-i-convert_number_column_value	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-convert_number_column_value"><\/a>$/;"	a
-method-i-convert_options_to_data_attributes	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-convert_options_to_data_attributes"><\/a>$/;"	a
-method-i-convert_to_model	doc/api/ActionView/Context.html	/^				<a name="method-i-convert_to_model"><\/a>$/;"	a
-method-i-convert_value	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-convert_value"><\/a>$/;"	a
-method-i-cookies	doc/api/ActionController/Cookies.html	/^				<a name="method-i-cookies"><\/a>$/;"	a
-method-i-count	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-count"><\/a>$/;"	a
-method-i-count	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-count"><\/a>$/;"	a
-method-i-count_observers	doc/api/ActiveModel/Observing/ClassMethods.html	/^				<a name="method-i-count_observers"><\/a>$/;"	a
-method-i-counter_name	doc/api/ActionView/Template.html	/^				<a name="method-i-counter_name"><\/a>$/;"	a
-method-i-create	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-create"><\/a>$/;"	a
-method-i-create	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-create"><\/a>$/;"	a
-method-i-create	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-create"><\/a>$/;"	a
-method-i-create	doc/api/ActiveResource/Base.html	/^				<a name="method-i-create"><\/a>$/;"	a
-method-i-create%21	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-create%21"><\/a>$/;"	a
-method-i-create%21	doc/api/ActiveRecord/Validations/ClassMethods.html	/^				<a name="method-i-create%21"><\/a>$/;"	a
-method-i-create_database	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-create_database"><\/a>$/;"	a
-method-i-create_database	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-create_database"><\/a>$/;"	a
-method-i-create_or_update	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-create_or_update"><\/a>$/;"	a
-method-i-create_reflection	doc/api/ActiveRecord/Reflection/ClassMethods.html	/^				<a name="method-i-create_reflection"><\/a>$/;"	a
-method-i-create_savepoint	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-create_savepoint"><\/a>$/;"	a
-method-i-create_savepoint	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-create_savepoint"><\/a>$/;"	a
-method-i-create_savepoint	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-create_savepoint"><\/a>$/;"	a
-method-i-create_table	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-create_table"><\/a>$/;"	a
-method-i-create_time_zone_conversion_attribute%3F	doc/api/ActiveRecord/AttributeMethods/TimeZoneConversion/ClassMethods.html	/^				<a name="method-i-create_time_zone_conversion_attribute%3F"><\/a>$/;"	a
-method-i-create_with	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-create_with"><\/a>$/;"	a
-method-i-creator%3F	doc/api/ActiveRecord/DynamicFinderMatch.html	/^				<a name="method-i-creator%3F"><\/a>$/;"	a
-method-i-csrf_meta_tag	doc/api/ActionView/Helpers/CsrfHelper.html	/^				<a name="method-i-csrf_meta_tag"><\/a>$/;"	a
-method-i-csv_file_path	doc/api/Fixtures.html	/^				<a name="method-i-csv_file_path"><\/a>$/;"	a
-method-i-current_cycle	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-current_cycle"><\/a>$/;"	a
-method-i-current_database	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-current_database"><\/a>$/;"	a
-method-i-current_database	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-current_database"><\/a>$/;"	a
-method-i-current_hash	doc/api/ActiveSupport/XmlMini_LibXMLSAX/HashBuilder.html	/^				<a name="method-i-current_hash"><\/a>$/;"	a
-method-i-current_hash	doc/api/ActiveSupport/XmlMini_NokogiriSAX/HashBuilder.html	/^				<a name="method-i-current_hash"><\/a>$/;"	a
-method-i-current_page%3F	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-current_page%3F"><\/a>$/;"	a
-method-i-current_savepoint_name	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-current_savepoint_name"><\/a>$/;"	a
-method-i-custom_join_sql	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-custom_join_sql"><\/a>$/;"	a
-method-i-custom_method_collection_url	doc/api/ActiveResource/CustomMethods/ClassMethods.html	/^				<a name="method-i-custom_method_collection_url"><\/a>$/;"	a
-method-i-custom_method_element_url	doc/api/ActiveResource/CustomMethods/InstanceMethods.html	/^				<a name="method-i-custom_method_element_url"><\/a>$/;"	a
-method-i-custom_method_new_element_url	doc/api/ActiveResource/CustomMethods/InstanceMethods.html	/^				<a name="method-i-custom_method_new_element_url"><\/a>$/;"	a
-method-i-cycle	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-cycle"><\/a>$/;"	a
-method-i-dasherize	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-dasherize"><\/a>$/;"	a
-method-i-data	doc/api/ActiveRecord/SessionStore/Session.html	/^				<a name="method-i-data"><\/a>$/;"	a
-method-i-data	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="method-i-data"><\/a>$/;"	a
-method-i-database	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="method-i-database"><\/a>$/;"	a
-method-i-date_select	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-date_select"><\/a>$/;"	a
-method-i-datetime_select	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-datetime_select"><\/a>$/;"	a
-method-i-debug	doc/api/ActionView/Helpers/DebugHelper.html	/^				<a name="method-i-debug"><\/a>$/;"	a
-method-i-debug_protected_attribute_removal	doc/api/ActiveModel/MassAssignmentSecurity/Sanitizer.html	/^				<a name="method-i-debug_protected_attribute_removal"><\/a>$/;"	a
-method-i-debugger	doc/api/Kernel.html	/^				<a name="method-i-debugger"><\/a>$/;"	a
-method-i-decode	doc/api/ActiveResource/Formats/JsonFormat.html	/^				<a name="method-i-decode"><\/a>$/;"	a
-method-i-decode	doc/api/ActiveResource/Formats/XmlFormat.html	/^				<a name="method-i-decode"><\/a>$/;"	a
-method-i-decode	doc/api/ActiveSupport/JSON/Backends/JSONGem.html	/^				<a name="method-i-decode"><\/a>$/;"	a
-method-i-decode	doc/api/ActiveSupport/JSON/Backends/Yajl.html	/^				<a name="method-i-decode"><\/a>$/;"	a
-method-i-decode	doc/api/ActiveSupport/JSON/Backends/Yaml.html	/^				<a name="method-i-decode"><\/a>$/;"	a
-method-i-decode_credentials	doc/api/ActionController/HttpAuthentication/Basic.html	/^				<a name="method-i-decode_credentials"><\/a>$/;"	a
-method-i-decode_credentials	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-decode_credentials"><\/a>$/;"	a
-method-i-decode_credentials_header	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-decode_credentials_header"><\/a>$/;"	a
-method-i-decompose	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-decompose"><\/a>$/;"	a
-method-i-decompose_codepoints	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="method-i-decompose_codepoints"><\/a>$/;"	a
-method-i-decrement	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-decrement"><\/a>$/;"	a
-method-i-decrement	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-decrement"><\/a>$/;"	a
-method-i-decrement	doc/api/ActiveSupport/Cache/MemoryStore.html	/^				<a name="method-i-decrement"><\/a>$/;"	a
-method-i-decrement	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-decrement"><\/a>$/;"	a
-method-i-decrement%21	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-decrement%21"><\/a>$/;"	a
-method-i-decrement_counter	doc/api/ActiveRecord/CounterCache.html	/^				<a name="method-i-decrement_counter"><\/a>$/;"	a
-method-i-decrement_open_transactions	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-decrement_open_transactions"><\/a>$/;"	a
-method-i-decrypt	doc/api/ActiveSupport/MessageEncryptor.html	/^				<a name="method-i-decrypt"><\/a>$/;"	a
-method-i-decrypt_and_verify	doc/api/ActiveSupport/MessageEncryptor.html	/^				<a name="method-i-decrypt_and_verify"><\/a>$/;"	a
-method-i-default	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-default"><\/a>$/;"	a
-method-i-default_action	doc/api/ActionController/Responder.html	/^				<a name="method-i-default_action"><\/a>$/;"	a
-method-i-default_format	doc/api/ActionView/Template/Handlers/RJS.html	/^				<a name="method-i-default_format"><\/a>$/;"	a
-method-i-default_header	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-default_header"><\/a>$/;"	a
-method-i-default_inspect	doc/api/DateTime.html	/^				<a name="method-i-default_inspect"><\/a>$/;"	a
-method-i-default_primary_key_type	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-default_primary_key_type"><\/a>$/;"	a
-method-i-default_render	doc/api/ActionController/ImplicitRender.html	/^				<a name="method-i-default_render"><\/a>$/;"	a
-method-i-default_render	doc/api/ActionController/Responder.html	/^				<a name="method-i-default_render"><\/a>$/;"	a
-method-i-default_sequence_name	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-default_sequence_name"><\/a>$/;"	a
-method-i-default_url_options	doc/api/ActionMailer/Base/DeprecatedUrlOptions.html	/^				<a name="method-i-default_url_options"><\/a>$/;"	a
-method-i-default_url_options%3D	doc/api/ActionMailer/Base/DeprecatedUrlOptions.html	/^				<a name="method-i-default_url_options%3D"><\/a>$/;"	a
-method-i-define_attr_method	doc/api/ActiveModel/AttributeMethods/ClassMethods.html	/^				<a name="method-i-define_attr_method"><\/a>$/;"	a
-method-i-define_attribute_methods	doc/api/ActiveModel/AttributeMethods/ClassMethods.html	/^				<a name="method-i-define_attribute_methods"><\/a>$/;"	a
-method-i-define_attribute_methods	doc/api/ActiveRecord/AttributeMethods/ClassMethods.html	/^				<a name="method-i-define_attribute_methods"><\/a>$/;"	a
-method-i-define_callbacks	doc/api/ActiveRecord/Observer.html	/^				<a name="method-i-define_callbacks"><\/a>$/;"	a
-method-i-define_callbacks	doc/api/ActiveSupport/Callbacks/ClassMethods.html	/^				<a name="method-i-define_callbacks"><\/a>$/;"	a
-method-i-define_method_attribute	doc/api/ActiveRecord/AttributeMethods/Read/ClassMethods.html	/^				<a name="method-i-define_method_attribute"><\/a>$/;"	a
-method-i-define_method_attribute	doc/api/ActiveRecord/AttributeMethods/TimeZoneConversion/ClassMethods.html	/^				<a name="method-i-define_method_attribute"><\/a>$/;"	a
-method-i-define_method_attribute%3D	doc/api/ActiveRecord/AttributeMethods/TimeZoneConversion/ClassMethods.html	/^				<a name="method-i-define_method_attribute%3D"><\/a>$/;"	a
-method-i-define_method_attribute%3D	doc/api/ActiveRecord/AttributeMethods/Write/ClassMethods.html	/^				<a name="method-i-define_method_attribute%3D"><\/a>$/;"	a
-method-i-define_model_callbacks	doc/api/ActiveModel/Callbacks.html	/^				<a name="method-i-define_model_callbacks"><\/a>$/;"	a
-method-i-define_read_method	doc/api/ActiveRecord/AttributeMethods/Read/ClassMethods.html	/^				<a name="method-i-define_read_method"><\/a>$/;"	a
-method-i-define_read_method_for_serialized_attribute	doc/api/ActiveRecord/AttributeMethods/Read/ClassMethods.html	/^				<a name="method-i-define_read_method_for_serialized_attribute"><\/a>$/;"	a
-method-i-defined_activerecord_methods	doc/api/ActiveRecord/AttributeMethods/ClassMethods.html	/^				<a name="method-i-defined_activerecord_methods"><\/a>$/;"	a
-method-i-delay	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-delay"><\/a>$/;"	a
-method-i-delete	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="method-i-delete"><\/a>$/;"	a
-method-i-delete	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-delete"><\/a>$/;"	a
-method-i-delete	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-delete"><\/a>$/;"	a
-method-i-delete	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-delete"><\/a>$/;"	a
-method-i-delete	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-delete"><\/a>$/;"	a
-method-i-delete	doc/api/ActiveResource/CustomMethods/InstanceMethods.html	/^				<a name="method-i-delete"><\/a>$/;"	a
-method-i-delete	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-delete"><\/a>$/;"	a
-method-i-delete	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-delete"><\/a>$/;"	a
-method-i-delete_all	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-delete_all"><\/a>$/;"	a
-method-i-delete_empty_directories	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-delete_empty_directories"><\/a>$/;"	a
-method-i-delete_entry	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-delete_entry"><\/a>$/;"	a
-method-i-delete_entry	doc/api/ActiveSupport/Cache/Strategy/LocalCache/LocalStore.html	/^				<a name="method-i-delete_entry"><\/a>$/;"	a
-method-i-delete_existing_fixtures	doc/api/Fixtures.html	/^				<a name="method-i-delete_existing_fixtures"><\/a>$/;"	a
-method-i-delete_matched	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-delete_matched"><\/a>$/;"	a
-method-i-delete_matched	doc/api/ActiveSupport/Cache/MemoryStore.html	/^				<a name="method-i-delete_matched"><\/a>$/;"	a
-method-i-delete_matched	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-delete_matched"><\/a>$/;"	a
-method-i-delete_sql	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-delete_sql"><\/a>$/;"	a
-method-i-demodulize	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-demodulize"><\/a>$/;"	a
-method-i-deny%3F	doc/api/ActiveModel/MassAssignmentSecurity/BlackList.html	/^				<a name="method-i-deny%3F"><\/a>$/;"	a
-method-i-deny%3F	doc/api/ActiveModel/MassAssignmentSecurity/WhiteList.html	/^				<a name="method-i-deny%3F"><\/a>$/;"	a
-method-i-deprecated_url_options	doc/api/ActionMailer/Base/DeprecatedUrlOptions.html	/^				<a name="method-i-deprecated_url_options"><\/a>$/;"	a
-method-i-derive_class_name	doc/api/ActiveRecord/Reflection/MacroReflection.html	/^				<a name="method-i-derive_class_name"><\/a>$/;"	a
-method-i-descendants	doc/api/ActiveSupport/DescendantsTracker.html	/^				<a name="method-i-descendants"><\/a>$/;"	a
-method-i-deserialize_entry	doc/api/ActiveSupport/Cache/MemCacheStore.html	/^				<a name="method-i-deserialize_entry"><\/a>$/;"	a
-method-i-destroy	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-destroy"><\/a>$/;"	a
-method-i-destroy	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-destroy"><\/a>$/;"	a
-method-i-destroy	doc/api/ActiveRecord/SessionStore.html	/^				<a name="method-i-destroy"><\/a>$/;"	a
-method-i-destroy	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="method-i-destroy"><\/a>$/;"	a
-method-i-destroy	doc/api/ActiveResource/Base.html	/^				<a name="method-i-destroy"><\/a>$/;"	a
-method-i-destroy_all	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-destroy_all"><\/a>$/;"	a
-method-i-destroyed%3F	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-destroyed%3F"><\/a>$/;"	a
-method-i-determine_default_controller_class	doc/api/ActionController/TestCase/Behavior/ClassMethods.html	/^				<a name="method-i-determine_default_controller_class"><\/a>$/;"	a
-method-i-determine_default_helper_class	doc/api/ActionView/TestCase/Behavior/ClassMethods.html	/^				<a name="method-i-determine_default_helper_class"><\/a>$/;"	a
-method-i-determine_source	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-determine_source"><\/a>$/;"	a
-method-i-digest_auth_header	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-digest_auth_header"><\/a>$/;"	a
-method-i-direct_descendants	doc/api/ActiveSupport/DescendantsTracker.html	/^				<a name="method-i-direct_descendants"><\/a>$/;"	a
-method-i-disable_referential_integrity	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-disable_referential_integrity"><\/a>$/;"	a
-method-i-disconnect%21	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-disconnect%21"><\/a>$/;"	a
-method-i-disconnect%21	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-disconnect%21"><\/a>$/;"	a
-method-i-disconnect%21	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-disconnect%21"><\/a>$/;"	a
-method-i-disconnect%21	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-disconnect%21"><\/a>$/;"	a
-method-i-disconnect%21	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-disconnect%21"><\/a>$/;"	a
-method-i-dispatch	doc/api/ActionController/Metal.html	/^				<a name="method-i-dispatch"><\/a>$/;"	a
-method-i-dispatch	doc/api/ActionController/RackDelegation.html	/^				<a name="method-i-dispatch"><\/a>$/;"	a
-method-i-display	doc/api/ActionController/Responder.html	/^				<a name="method-i-display"><\/a>$/;"	a
-method-i-distance_of_time_in_words	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-distance_of_time_in_words"><\/a>$/;"	a
-method-i-distance_of_time_in_words_to_now	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-distance_of_time_in_words_to_now"><\/a>$/;"	a
-method-i-distinct	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-distinct"><\/a>$/;"	a
-method-i-downcase	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-downcase"><\/a>$/;"	a
-method-i-draggable	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-draggable"><\/a>$/;"	a
-method-i-draggable_element	doc/api/ActionView/Helpers/ScriptaculousHelper.html	/^				<a name="method-i-draggable_element"><\/a>$/;"	a
-method-i-drop_receiving	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-drop_receiving"><\/a>$/;"	a
-method-i-drop_receiving_element	doc/api/ActionView/Helpers/ScriptaculousHelper.html	/^				<a name="method-i-drop_receiving_element"><\/a>$/;"	a
-method-i-drop_table	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-drop_table"><\/a>$/;"	a
-method-i-drop_table	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-drop_table"><\/a>$/;"	a
-method-i-dst%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-dst%3F"><\/a>$/;"	a
-method-i-dup	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-dup"><\/a>$/;"	a
-method-i-dup	doc/api/ActiveResource/Base.html	/^				<a name="method-i-dup"><\/a>$/;"	a
-method-i-dup	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-dup"><\/a>$/;"	a
-method-i-duplicable%3F	doc/api/Object.html	/^				<a name="method-i-duplicable%3F"><\/a>$/;"	a
-method-i-duration_of_variable_length%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-duration_of_variable_length%3F"><\/a>$/;"	a
-method-i-each	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-each"><\/a>$/;"	a
-method-i-each_full	doc/api/ActiveModel/DeprecatedErrorMethods.html	/^				<a name="method-i-each_full"><\/a>$/;"	a
-method-i-each_with_object	doc/api/Enumerable.html	/^				<a name="method-i-each_with_object"><\/a>$/;"	a
-method-i-eager_autoload	doc/api/ActiveSupport/Autoload.html	/^				<a name="method-i-eager_autoload"><\/a>$/;"	a
-method-i-eager_load	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-eager_load"><\/a>$/;"	a
-method-i-eager_loading%3F	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-eager_loading%3F"><\/a>$/;"	a
-method-i-element_path	doc/api/ActiveResource/Base.html	/^				<a name="method-i-element_path"><\/a>$/;"	a
-method-i-email_field	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-email_field"><\/a>$/;"	a
-method-i-email_field_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-email_field_tag"><\/a>$/;"	a
-method-i-empty%3F	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-empty%3F"><\/a>$/;"	a
-method-i-empty%3F	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-empty%3F"><\/a>$/;"	a
-method-i-empty_insert_statement_value	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-empty_insert_statement_value"><\/a>$/;"	a
-method-i-empty_insert_statement_value	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-empty_insert_statement_value"><\/a>$/;"	a
-method-i-empty_json_resource	doc/api/ActionController/Responder.html	/^				<a name="method-i-empty_json_resource"><\/a>$/;"	a
-method-i-empty_resource	doc/api/ActionController/Responder.html	/^				<a name="method-i-empty_resource"><\/a>$/;"	a
-method-i-enable_warnings	doc/api/Kernel.html	/^				<a name="method-i-enable_warnings"><\/a>$/;"	a
-method-i-encode	doc/api/ActiveResource/Base.html	/^				<a name="method-i-encode"><\/a>$/;"	a
-method-i-encode	doc/api/ActiveResource/Formats/JsonFormat.html	/^				<a name="method-i-encode"><\/a>$/;"	a
-method-i-encode	doc/api/ActiveResource/Formats/XmlFormat.html	/^				<a name="method-i-encode"><\/a>$/;"	a
-method-i-encode	doc/api/ActiveSupport/JSON/Encoding/Encoder.html	/^				<a name="method-i-encode"><\/a>$/;"	a
-method-i-encode_credentials	doc/api/ActionController/HttpAuthentication/Basic.html	/^				<a name="method-i-encode_credentials"><\/a>$/;"	a
-method-i-encode_credentials	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-encode_credentials"><\/a>$/;"	a
-method-i-encode_credentials	doc/api/ActionController/HttpAuthentication/Token.html	/^				<a name="method-i-encode_credentials"><\/a>$/;"	a
-method-i-encode_json	doc/api/ActiveSupport/JSON/Variable.html	/^				<a name="method-i-encode_json"><\/a>$/;"	a
-method-i-encoding	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-encoding"><\/a>$/;"	a
-method-i-encrypt	doc/api/ActiveSupport/MessageEncryptor.html	/^				<a name="method-i-encrypt"><\/a>$/;"	a
-method-i-encrypt_and_sign	doc/api/ActiveSupport/MessageEncryptor.html	/^				<a name="method-i-encrypt_and_sign"><\/a>$/;"	a
-method-i-end	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-end"><\/a>$/;"	a
-method-i-end_document	doc/api/ActiveSupport/XmlMini_NokogiriSAX/HashBuilder.html	/^				<a name="method-i-end_document"><\/a>$/;"	a
-method-i-end_element	doc/api/ActiveSupport/XmlMini_NokogiriSAX/HashBuilder.html	/^				<a name="method-i-end_element"><\/a>$/;"	a
-method-i-end_of_day	doc/api/DateTime.html	/^				<a name="method-i-end_of_day"><\/a>$/;"	a
-method-i-end_of_day	doc/api/Time.html	/^				<a name="method-i-end_of_day"><\/a>$/;"	a
-method-i-end_of_month	doc/api/Time.html	/^				<a name="method-i-end_of_month"><\/a>$/;"	a
-method-i-end_of_quarter	doc/api/Time.html	/^				<a name="method-i-end_of_quarter"><\/a>$/;"	a
-method-i-end_of_week	doc/api/Time.html	/^				<a name="method-i-end_of_week"><\/a>$/;"	a
-method-i-end_of_year	doc/api/Time.html	/^				<a name="method-i-end_of_year"><\/a>$/;"	a
-method-i-ensure_cache_path	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-ensure_cache_path"><\/a>$/;"	a
-method-i-ensure_javascript_sources%21	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-ensure_javascript_sources%21"><\/a>$/;"	a
-method-i-ensure_proper_type	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-ensure_proper_type"><\/a>$/;"	a
-method-i-ensure_stylesheet_sources%21	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-ensure_stylesheet_sources%21"><\/a>$/;"	a
-method-i-entry	doc/api/ActionView/Helpers/AtomFeedHelper/AtomFeedBuilder.html	/^				<a name="method-i-entry"><\/a>$/;"	a
-method-i-environment	doc/api/ActiveSupport/Testing/Performance/Benchmarker.html	/^				<a name="method-i-environment"><\/a>$/;"	a
-method-i-eql%3F	doc/api/ActionView/FileSystemResolver.html	/^				<a name="method-i-eql%3F"><\/a>$/;"	a
-method-i-eql%3F	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-eql%3F"><\/a>$/;"	a
-method-i-eql%3F	doc/api/ActiveResource/Base.html	/^				<a name="method-i-eql%3F"><\/a>$/;"	a
-method-i-eql%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-eql%3F"><\/a>$/;"	a
-method-i-erb_render	doc/api/Fixtures.html	/^				<a name="method-i-erb_render"><\/a>$/;"	a
-method-i-error	doc/api/ActiveSupport/XmlMini_NokogiriSAX/HashBuilder.html	/^				<a name="method-i-error"><\/a>$/;"	a
-method-i-error_message	doc/api/ActionView/Helpers/ActiveModelInstanceTag.html	/^				<a name="method-i-error_message"><\/a>$/;"	a
-method-i-error_wrapping	doc/api/ActionView/Helpers/ActiveModelInstanceTag.html	/^				<a name="method-i-error_wrapping"><\/a>$/;"	a
-method-i-errors	doc/api/ActiveModel/Validations.html	/^				<a name="method-i-errors"><\/a>$/;"	a
-method-i-errors	doc/api/ActiveResource/Validations.html	/^				<a name="method-i-errors"><\/a>$/;"	a
-method-i-escape	doc/api/ActiveSupport/JSON/Encoding/Encoder.html	/^				<a name="method-i-escape"><\/a>$/;"	a
-method-i-escape_bytea	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-escape_bytea"><\/a>$/;"	a
-method-i-escape_javascript	doc/api/ActionView/Helpers/JavaScriptHelper.html	/^				<a name="method-i-escape_javascript"><\/a>$/;"	a
-method-i-escape_key	doc/api/ActiveSupport/Cache/MemCacheStore.html	/^				<a name="method-i-escape_key"><\/a>$/;"	a
-method-i-escape_once	doc/api/ActionView/Helpers/TagHelper.html	/^				<a name="method-i-escape_once"><\/a>$/;"	a
-method-i-establish_connection	doc/api/ActiveRecord/ConnectionAdapters/ConnectionHandler.html	/^				<a name="method-i-establish_connection"><\/a>$/;"	a
-method-i-except	doc/api/ActiveRecord/SpawnMethods.html	/^				<a name="method-i-except"><\/a>$/;"	a
-method-i-excerpt	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-excerpt"><\/a>$/;"	a
-method-i-exclude%3F	doc/api/Enumerable.html	/^				<a name="method-i-exclude%3F"><\/a>$/;"	a
-method-i-execute	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-execute"><\/a>$/;"	a
-method-i-execute	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-execute"><\/a>$/;"	a
-method-i-execute_callstack_for_multiparameter_attributes	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-execute_callstack_for_multiparameter_attributes"><\/a>$/;"	a
-method-i-execute_if_updated	doc/api/ActiveSupport/FileUpdateChecker.html	/^				<a name="method-i-execute_if_updated"><\/a>$/;"	a
-method-i-exist%3F	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-exist%3F"><\/a>$/;"	a
-method-i-exists%3F	doc/api/ActionView/LookupContext/ViewPaths.html	/^				<a name="method-i-exists%3F"><\/a>$/;"	a
-method-i-exists%3F	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-exists%3F"><\/a>$/;"	a
-method-i-exists%3F	doc/api/ActiveResource/Base.html	/^				<a name="method-i-exists%3F"><\/a>$/;"	a
-method-i-expand_javascript_sources	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-expand_javascript_sources"><\/a>$/;"	a
-method-i-expand_stylesheet_sources	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-expand_stylesheet_sources"><\/a>$/;"	a
-method-i-expected_response	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-expected_response"><\/a>$/;"	a
-method-i-expire_action	doc/api/ActionController/Caching/Actions.html	/^				<a name="method-i-expire_action"><\/a>$/;"	a
-method-i-expire_page	doc/api/ActionController/Caching/Pages.html	/^				<a name="method-i-expire_page"><\/a>$/;"	a
-method-i-expire_page	doc/api/ActionController/Caching/Pages/ClassMethods.html	/^				<a name="method-i-expire_page"><\/a>$/;"	a
-method-i-expired%3F	doc/api/ActiveSupport/Cache/Entry.html	/^				<a name="method-i-expired%3F"><\/a>$/;"	a
-method-i-expires_at	doc/api/ActiveSupport/Cache/Entry.html	/^				<a name="method-i-expires_at"><\/a>$/;"	a
-method-i-expires_at%3D	doc/api/ActiveSupport/Cache/Entry.html	/^				<a name="method-i-expires_at%3D"><\/a>$/;"	a
-method-i-expires_in	doc/api/ActionController/ConditionalGet.html	/^				<a name="method-i-expires_in"><\/a>$/;"	a
-method-i-expires_now	doc/api/ActionController/ConditionalGet.html	/^				<a name="method-i-expires_now"><\/a>$/;"	a
-method-i-extending	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-extending"><\/a>$/;"	a
-method-i-extension	doc/api/ActiveResource/Formats/JsonFormat.html	/^				<a name="method-i-extension"><\/a>$/;"	a
-method-i-extension	doc/api/ActiveResource/Formats/XmlFormat.html	/^				<a name="method-i-extension"><\/a>$/;"	a
-method-i-extra_tags_for_form	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-extra_tags_for_form"><\/a>$/;"	a
-method-i-extract_callstack_for_multiparameter_attributes	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-extract_callstack_for_multiparameter_attributes"><\/a>$/;"	a
-method-i-extract_default	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-i-extract_default"><\/a>$/;"	a
-method-i-extract_handler_and_format	doc/api/ActionView/PathResolver.html	/^				<a name="method-i-extract_handler_and_format"><\/a>$/;"	a
-method-i-extract_limit	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-i-extract_limit"><\/a>$/;"	a
-method-i-extract_limit	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLColumn.html	/^				<a name="method-i-extract_limit"><\/a>$/;"	a
-method-i-extract_params_from_response	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-extract_params_from_response"><\/a>$/;"	a
-method-i-extract_pg_identifier_from_name	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-extract_pg_identifier_from_name"><\/a>$/;"	a
-method-i-extract_precision	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-i-extract_precision"><\/a>$/;"	a
-method-i-extract_precision	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLColumn.html	/^				<a name="method-i-extract_precision"><\/a>$/;"	a
-method-i-extract_scale	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-i-extract_scale"><\/a>$/;"	a
-method-i-extract_scale	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLColumn.html	/^				<a name="method-i-extract_scale"><\/a>$/;"	a
-method-i-extract_selected_and_disabled	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-extract_selected_and_disabled"><\/a>$/;"	a
-method-i-extract_values_from_collection	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-extract_values_from_collection"><\/a>$/;"	a
-method-i-extractable_options%3F	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-extractable_options%3F"><\/a>$/;"	a
-method-i-favicon_link_tag	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-favicon_link_tag"><\/a>$/;"	a
-method-i-fetch	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-fetch"><\/a>$/;"	a
-method-i-fetch	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-fetch"><\/a>$/;"	a
-method-i-field_changed%3F	doc/api/ActiveRecord/AttributeMethods/Dirty.html	/^				<a name="method-i-field_changed%3F"><\/a>$/;"	a
-method-i-field_set_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-field_set_tag"><\/a>$/;"	a
-method-i-fields_for	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-fields_for"><\/a>$/;"	a
-method-i-file_field	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-file_field"><\/a>$/;"	a
-method-i-file_field_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-file_field_tag"><\/a>$/;"	a
-method-i-file_path_key	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-file_path_key"><\/a>$/;"	a
-method-i-filter	doc/api/ActiveSupport/BacktraceCleaner.html	/^				<a name="method-i-filter"><\/a>$/;"	a
-method-i-filtered_options	doc/api/ActiveModel/Validations/NumericalityValidator.html	/^				<a name="method-i-filtered_options"><\/a>$/;"	a
-method-i-find	doc/api/ActionView/LookupContext/ViewPaths.html	/^				<a name="method-i-find"><\/a>$/;"	a
-method-i-find	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-find"><\/a>$/;"	a
-method-i-find_all	doc/api/ActionView/LookupContext/ViewPaths.html	/^				<a name="method-i-find_all"><\/a>$/;"	a
-method-i-find_all	doc/api/ActionView/Resolver.html	/^				<a name="method-i-find_all"><\/a>$/;"	a
-method-i-find_associated_records	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-find_associated_records"><\/a>$/;"	a
-method-i-find_by_attributes	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-find_by_attributes"><\/a>$/;"	a
-method-i-find_first	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-find_first"><\/a>$/;"	a
-method-i-find_last	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-find_last"><\/a>$/;"	a
-method-i-find_one	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-find_one"><\/a>$/;"	a
-method-i-find_or_create_resource_for	doc/api/ActiveResource/Base.html	/^				<a name="method-i-find_or_create_resource_for"><\/a>$/;"	a
-method-i-find_or_create_resource_for_collection	doc/api/ActiveResource/Base.html	/^				<a name="method-i-find_or_create_resource_for_collection"><\/a>$/;"	a
-method-i-find_or_instantiator_by_attributes	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-find_or_instantiator_by_attributes"><\/a>$/;"	a
-method-i-find_parameter_position	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-find_parameter_position"><\/a>$/;"	a
-method-i-find_resource_in_modules	doc/api/ActiveResource/Base.html	/^				<a name="method-i-find_resource_in_modules"><\/a>$/;"	a
-method-i-find_session	doc/api/ActiveRecord/SessionStore.html	/^				<a name="method-i-find_session"><\/a>$/;"	a
-method-i-find_some	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-find_some"><\/a>$/;"	a
-method-i-find_target	doc/api/ActiveRecord/Associations/HasOneThroughAssociation.html	/^				<a name="method-i-find_target"><\/a>$/;"	a
-method-i-find_template	doc/api/ActionView/LookupContext/ViewPaths.html	/^				<a name="method-i-find_template"><\/a>$/;"	a
-method-i-find_templates	doc/api/ActionView/PathResolver.html	/^				<a name="method-i-find_templates"><\/a>$/;"	a
-method-i-find_templates	doc/api/ActionView/Resolver.html	/^				<a name="method-i-find_templates"><\/a>$/;"	a
-method-i-find_with_associations	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-find_with_associations"><\/a>$/;"	a
-method-i-find_with_ids	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-find_with_ids"><\/a>$/;"	a
-method-i-finder%3F	doc/api/ActiveRecord/DynamicFinderMatch.html	/^				<a name="method-i-finder%3F"><\/a>$/;"	a
-method-i-first	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-first"><\/a>$/;"	a
-method-i-fixtures	doc/api/ActiveRecord/TestFixtures/ClassMethods.html	/^				<a name="method-i-fixtures"><\/a>$/;"	a
-method-i-flush	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="method-i-flush"><\/a>$/;"	a
-method-i-flush	doc/api/ActiveSupport/LogSubscriber/TestHelper/MockLogger.html	/^				<a name="method-i-flush"><\/a>$/;"	a
-method-i-flush_cache	doc/api/ActiveSupport/Memoizable/InstanceMethods.html	/^				<a name="method-i-flush_cache"><\/a>$/;"	a
-method-i-foreign_key	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-foreign_key"><\/a>$/;"	a
-method-i-form_authenticity_param	doc/api/ActionController/RequestForgeryProtection.html	/^				<a name="method-i-form_authenticity_param"><\/a>$/;"	a
-method-i-form_authenticity_token	doc/api/ActionController/RequestForgeryProtection.html	/^				<a name="method-i-form_authenticity_token"><\/a>$/;"	a
-method-i-form_for	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-form_for"><\/a>$/;"	a
-method-i-form_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-form_tag"><\/a>$/;"	a
-method-i-form_tag_html	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-form_tag_html"><\/a>$/;"	a
-method-i-form_tag_in_block	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-form_tag_in_block"><\/a>$/;"	a
-method-i-format	doc/api/ActiveSupport/Testing/Performance/Metrics/GcRuns.html	/^				<a name="method-i-format"><\/a>$/;"	a
-method-i-format	doc/api/ActiveSupport/Testing/Performance/Metrics/GcTime.html	/^				<a name="method-i-format"><\/a>$/;"	a
-method-i-format	doc/api/ActiveSupport/Testing/Performance/Metrics/Memory.html	/^				<a name="method-i-format"><\/a>$/;"	a
-method-i-format	doc/api/ActiveSupport/Testing/Performance/Metrics/Objects.html	/^				<a name="method-i-format"><\/a>$/;"	a
-method-i-format	doc/api/ActiveSupport/Testing/Performance/Metrics/Time.html	/^				<a name="method-i-format"><\/a>$/;"	a
-method-i-formats%3D	doc/api/ActionView/LookupContext/Details.html	/^				<a name="method-i-formats%3D"><\/a>$/;"	a
-method-i-formatted_offset	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-formatted_offset"><\/a>$/;"	a
-method-i-formatted_offset	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-formatted_offset"><\/a>$/;"	a
-method-i-formatted_offset	doc/api/DateTime.html	/^				<a name="method-i-formatted_offset"><\/a>$/;"	a
-method-i-formatted_offset	doc/api/Time.html	/^				<a name="method-i-formatted_offset"><\/a>$/;"	a
-method-i-freeze	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-freeze"><\/a>$/;"	a
-method-i-freeze	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-freeze"><\/a>$/;"	a
-method-i-freeze_with_memoizable	doc/api/ActiveSupport/Memoizable/InstanceMethods.html	/^				<a name="method-i-freeze_with_memoizable"><\/a>$/;"	a
-method-i-fresh_when	doc/api/ActionController/ConditionalGet.html	/^				<a name="method-i-fresh_when"><\/a>$/;"	a
-method-i-from	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-from"><\/a>$/;"	a
-method-i-from_array	doc/api/ActiveResource/Errors.html	/^				<a name="method-i-from_array"><\/a>$/;"	a
-method-i-from_json	doc/api/ActiveModel/Serializers/JSON.html	/^				<a name="method-i-from_json"><\/a>$/;"	a
-method-i-from_json	doc/api/ActiveResource/Errors.html	/^				<a name="method-i-from_json"><\/a>$/;"	a
-method-i-from_now	doc/api/ActiveSupport/Duration.html	/^				<a name="method-i-from_now"><\/a>$/;"	a
-method-i-from_rails_root	doc/api/ActionView/LogSubscriber.html	/^				<a name="method-i-from_rails_root"><\/a>$/;"	a
-method-i-from_xml	doc/api/ActiveModel/Serializers/Xml.html	/^				<a name="method-i-from_xml"><\/a>$/;"	a
-method-i-from_xml	doc/api/ActiveResource/Errors.html	/^				<a name="method-i-from_xml"><\/a>$/;"	a
-method-i-from_xml_data	doc/api/ActiveResource/Formats/XmlFormat.html	/^				<a name="method-i-from_xml_data"><\/a>$/;"	a
-method-i-frozen%3F	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-frozen%3F"><\/a>$/;"	a
-method-i-full_messages	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-full_messages"><\/a>$/;"	a
-method-i-full_test_name	doc/api/ActiveSupport/Testing/Performance.html	/^				<a name="method-i-full_test_name"><\/a>$/;"	a
-method-i-future%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-future%3F"><\/a>$/;"	a
-method-i-future%3F	doc/api/DateTime.html	/^				<a name="method-i-future%3F"><\/a>$/;"	a
-method-i-future%3F	doc/api/Time.html	/^				<a name="method-i-future%3F"><\/a>$/;"	a
-method-i-g_length	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-g_length"><\/a>$/;"	a
-method-i-g_pack	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="method-i-g_pack"><\/a>$/;"	a
-method-i-g_unpack	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="method-i-g_unpack"><\/a>$/;"	a
-method-i-generate	doc/api/ActiveSupport/MessageVerifier.html	/^				<a name="method-i-generate"><\/a>$/;"	a
-method-i-generate_digest	doc/api/ActiveSupport/MessageVerifier.html	/^				<a name="method-i-generate_digest"><\/a>$/;"	a
-method-i-generate_message	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-generate_message"><\/a>$/;"	a
-method-i-get	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="method-i-get"><\/a>$/;"	a
-method-i-get	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-get"><\/a>$/;"	a
-method-i-get	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-get"><\/a>$/;"	a
-method-i-get	doc/api/ActiveResource/CustomMethods/InstanceMethods.html	/^				<a name="method-i-get"><\/a>$/;"	a
-method-i-get	doc/api/ActiveSupport/Dependencies/Reference.html	/^				<a name="method-i-get"><\/a>$/;"	a
-method-i-get_cycle	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-get_cycle"><\/a>$/;"	a
-method-i-get_period_and_ensure_valid_local_time	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-get_period_and_ensure_valid_local_time"><\/a>$/;"	a
-method-i-get_session	doc/api/ActiveRecord/SessionStore.html	/^				<a name="method-i-get_session"><\/a>$/;"	a
-method-i-get_session_model	doc/api/ActiveRecord/SessionStore.html	/^				<a name="method-i-get_session_model"><\/a>$/;"	a
-method-i-getgm	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-getgm"><\/a>$/;"	a
-method-i-getlocal	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-getlocal"><\/a>$/;"	a
-method-i-getutc	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-getutc"><\/a>$/;"	a
-method-i-getutc	doc/api/DateTime.html	/^				<a name="method-i-getutc"><\/a>$/;"	a
-method-i-gmt%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-gmt%3F"><\/a>$/;"	a
-method-i-gmt_offset	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-gmt_offset"><\/a>$/;"	a
-method-i-gmtime	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-gmtime"><\/a>$/;"	a
-method-i-gmtoff	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-gmtoff"><\/a>$/;"	a
-method-i-group	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-group"><\/a>$/;"	a
-method-i-group_by	doc/api/Enumerable.html	/^				<a name="method-i-group_by"><\/a>$/;"	a
-method-i-grouped_collection_select	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-grouped_collection_select"><\/a>$/;"	a
-method-i-grouped_options_for_select	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-grouped_options_for_select"><\/a>$/;"	a
-method-i-guard_private_attribute_method%21	doc/api/ActiveModel/AttributeMethods.html	/^				<a name="method-i-guard_private_attribute_method%21"><\/a>$/;"	a
-method-i-h	doc/api/ERB/Util.html	/^				<a name="method-i-h"><\/a>$/;"	a
-method-i-ha1	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-ha1"><\/a>$/;"	a
-method-i-handle_response	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-handle_response"><\/a>$/;"	a
-method-i-handler_for_rescue	doc/api/ActiveSupport/Rescuable.html	/^				<a name="method-i-handler_for_rescue"><\/a>$/;"	a
-method-i-has_and_belongs_to_many	doc/api/ActiveRecord/Associations/ClassMethods.html	/^				<a name="method-i-has_and_belongs_to_many"><\/a>$/;"	a
-method-i-has_attribute%3F	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-has_attribute%3F"><\/a>$/;"	a
-method-i-has_default%3F	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-i-has_default%3F"><\/a>$/;"	a
-method-i-has_empty_resource_definition%3F	doc/api/ActionController/Responder.html	/^				<a name="method-i-has_empty_resource_definition%3F"><\/a>$/;"	a
-method-i-has_errors%3F	doc/api/ActionController/Responder.html	/^				<a name="method-i-has_errors%3F"><\/a>$/;"	a
-method-i-has_key%3F	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-has_key%3F"><\/a>$/;"	a
-method-i-has_many	doc/api/ActiveRecord/Associations/ClassMethods.html	/^				<a name="method-i-has_many"><\/a>$/;"	a
-method-i-has_one	doc/api/ActiveRecord/Associations/ClassMethods.html	/^				<a name="method-i-has_one"><\/a>$/;"	a
-method-i-has_primary_key_column%3F	doc/api/Fixtures.html	/^				<a name="method-i-has_primary_key_column%3F"><\/a>$/;"	a
-method-i-hash	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-hash"><\/a>$/;"	a
-method-i-hash	doc/api/ActiveResource/Base.html	/^				<a name="method-i-hash"><\/a>$/;"	a
-method-i-hash	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-hash"><\/a>$/;"	a
-method-i-having	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-having"><\/a>$/;"	a
-method-i-head	doc/api/ActionController/Head.html	/^				<a name="method-i-head"><\/a>$/;"	a
-method-i-head	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="method-i-head"><\/a>$/;"	a
-method-i-head	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-head"><\/a>$/;"	a
-method-i-headers	doc/api/ActionMailer/Base.html	/^				<a name="method-i-headers"><\/a>$/;"	a
-method-i-headers	doc/api/ActionMailer/Base/DeprecatedHeaderProxy.html	/^				<a name="method-i-headers"><\/a>$/;"	a
-method-i-headers%3D	doc/api/ActionController/Testing.html	/^				<a name="method-i-headers%3D"><\/a>$/;"	a
-method-i-headers_match%3F	doc/api/ActiveResource/Request.html	/^				<a name="method-i-headers_match%3F"><\/a>$/;"	a
-method-i-helper_attr	doc/api/ActionController/Helpers/ClassMethods.html	/^				<a name="method-i-helper_attr"><\/a>$/;"	a
-method-i-helper_class	doc/api/ActionView/TestCase/Behavior/ClassMethods.html	/^				<a name="method-i-helper_class"><\/a>$/;"	a
-method-i-helper_method	doc/api/ActionView/TestCase/Behavior/ClassMethods.html	/^				<a name="method-i-helper_method"><\/a>$/;"	a
-method-i-helpers	doc/api/ActionController/Helpers/ClassMethods.html	/^				<a name="method-i-helpers"><\/a>$/;"	a
-method-i-helpers_dir	doc/api/ActionController/Helpers/ClassMethods.html	/^				<a name="method-i-helpers_dir"><\/a>$/;"	a
-method-i-helpers_dir%3D	doc/api/ActionController/Helpers/ClassMethods.html	/^				<a name="method-i-helpers_dir%3D"><\/a>$/;"	a
-method-i-hidden_field	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-hidden_field"><\/a>$/;"	a
-method-i-hidden_field_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-hidden_field_tag"><\/a>$/;"	a
-method-i-hide	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-hide"><\/a>$/;"	a
-method-i-hide_action	doc/api/ActionController/HideActions/ClassMethods.html	/^				<a name="method-i-hide_action"><\/a>$/;"	a
-method-i-highlight	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-highlight"><\/a>$/;"	a
-method-i-html_escape	doc/api/ERB/Util.html	/^				<a name="method-i-html_escape"><\/a>$/;"	a
-method-i-html_options_for_form	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-html_options_for_form"><\/a>$/;"	a
-method-i-html_safe	doc/api/ActiveSupport/SafeBuffer.html	/^				<a name="method-i-html_safe"><\/a>$/;"	a
-method-i-html_safe%3F	doc/api/ActiveSupport/SafeBuffer.html	/^				<a name="method-i-html_safe%3F"><\/a>$/;"	a
-method-i-html_safe%3F	doc/api/Fixnum.html	/^				<a name="method-i-html_safe%3F"><\/a>$/;"	a
-method-i-html_safe%3F	doc/api/Object.html	/^				<a name="method-i-html_safe%3F"><\/a>$/;"	a
-method-i-html_safe_translation_key%3F	doc/api/ActionView/Helpers/TranslationHelper.html	/^				<a name="method-i-html_safe_translation_key%3F"><\/a>$/;"	a
-method-i-http	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-http"><\/a>$/;"	a
-method-i-http_format_header	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-http_format_header"><\/a>$/;"	a
-method-i-httpdate	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-httpdate"><\/a>$/;"	a
-method-i-human	doc/api/ActiveModel/Name.html	/^				<a name="method-i-human"><\/a>$/;"	a
-method-i-human	doc/api/ActiveSupport/Inflector/Inflections.html	/^				<a name="method-i-human"><\/a>$/;"	a
-method-i-human_attribute_name	doc/api/ActiveModel/Translation.html	/^				<a name="method-i-human_attribute_name"><\/a>$/;"	a
-method-i-human_name	doc/api/ActiveModel/Translation.html	/^				<a name="method-i-human_name"><\/a>$/;"	a
-method-i-human_name	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-i-human_name"><\/a>$/;"	a
-method-i-humanize	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-humanize"><\/a>$/;"	a
-method-i-i18n_scope	doc/api/ActiveModel/Translation.html	/^				<a name="method-i-i18n_scope"><\/a>$/;"	a
-method-i-id	doc/api/ActiveResource/Base.html	/^				<a name="method-i-id"><\/a>$/;"	a
-method-i-id%3D	doc/api/ActiveResource/Base.html	/^				<a name="method-i-id%3D"><\/a>$/;"	a
-method-i-id_from_response	doc/api/ActiveResource/Base.html	/^				<a name="method-i-id_from_response"><\/a>$/;"	a
-method-i-identifier_method_name	doc/api/ActionView/Template.html	/^				<a name="method-i-identifier_method_name"><\/a>$/;"	a
-method-i-image_path	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-image_path"><\/a>$/;"	a
-method-i-image_submit_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-image_submit_tag"><\/a>$/;"	a
-method-i-image_tag	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-image_tag"><\/a>$/;"	a
-method-i-in	doc/api/DateTime.html	/^				<a name="method-i-in"><\/a>$/;"	a
-method-i-in	doc/api/Time.html	/^				<a name="method-i-in"><\/a>$/;"	a
-method-i-in_char_class%3F	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="method-i-in_char_class%3F"><\/a>$/;"	a
-method-i-in_clause_length	doc/api/ActiveRecord/ConnectionAdapters/DatabaseLimits.html	/^				<a name="method-i-in_clause_length"><\/a>$/;"	a
-method-i-in_or_equals_for_ids	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-in_or_equals_for_ids"><\/a>$/;"	a
-method-i-in_time_zone	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-in_time_zone"><\/a>$/;"	a
-method-i-in_time_zone	doc/api/DateTime.html	/^				<a name="method-i-in_time_zone"><\/a>$/;"	a
-method-i-in_time_zone	doc/api/Time.html	/^				<a name="method-i-in_time_zone"><\/a>$/;"	a
-method-i-include%3F	doc/api/ActiveModel/MassAssignmentSecurity/PermissionSet.html	/^				<a name="method-i-include%3F"><\/a>$/;"	a
-method-i-include%3F	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-include%3F"><\/a>$/;"	a
-method-i-include%3F	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-include%3F"><\/a>$/;"	a
-method-i-include%3F	doc/api/Test/Unit/Collector/ObjectSpace.html	/^				<a name="method-i-include%3F"><\/a>$/;"	a
-method-i-include_helper_modules%21	doc/api/ActionView/TestCase/Behavior/ClassMethods.html	/^				<a name="method-i-include_helper_modules%21"><\/a>$/;"	a
-method-i-included	doc/api/ActiveSupport/Concern.html	/^				<a name="method-i-included"><\/a>$/;"	a
-method-i-includes	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-includes"><\/a>$/;"	a
-method-i-increment	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-increment"><\/a>$/;"	a
-method-i-increment	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-increment"><\/a>$/;"	a
-method-i-increment	doc/api/ActiveSupport/Cache/MemoryStore.html	/^				<a name="method-i-increment"><\/a>$/;"	a
-method-i-increment	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-increment"><\/a>$/;"	a
-method-i-increment%21	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-increment%21"><\/a>$/;"	a
-method-i-increment_counter	doc/api/ActiveRecord/CounterCache.html	/^				<a name="method-i-increment_counter"><\/a>$/;"	a
-method-i-increment_open_transactions	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-increment_open_transactions"><\/a>$/;"	a
-method-i-index	doc/api/ActionController/Middleware.html	/^				<a name="method-i-index"><\/a>$/;"	a
-method-i-index	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-index"><\/a>$/;"	a
-method-i-index	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-index"><\/a>$/;"	a
-method-i-index_by	doc/api/Enumerable.html	/^				<a name="method-i-index_by"><\/a>$/;"	a
-method-i-index_exists%3F	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-index_exists%3F"><\/a>$/;"	a
-method-i-index_exists%3F	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-index_exists%3F"><\/a>$/;"	a
-method-i-index_name_exists%3F	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-index_name_exists%3F"><\/a>$/;"	a
-method-i-index_name_length	doc/api/ActiveRecord/ConnectionAdapters/DatabaseLimits.html	/^				<a name="method-i-index_name_length"><\/a>$/;"	a
-method-i-index_name_length	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-index_name_length"><\/a>$/;"	a
-method-i-indexes	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-indexes"><\/a>$/;"	a
-method-i-indexes_per_table	doc/api/ActiveRecord/ConnectionAdapters/DatabaseLimits.html	/^				<a name="method-i-indexes_per_table"><\/a>$/;"	a
-method-i-inflections	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-inflections"><\/a>$/;"	a
-method-i-inheritance_column_name	doc/api/Fixtures.html	/^				<a name="method-i-inheritance_column_name"><\/a>$/;"	a
-method-i-inherited	doc/api/ActionController/HideActions/ClassMethods.html	/^				<a name="method-i-inherited"><\/a>$/;"	a
-method-i-inherited	doc/api/ActiveModel/Observing/ClassMethods.html	/^				<a name="method-i-inherited"><\/a>$/;"	a
-method-i-inherited	doc/api/ActiveModel/Validations/ClassMethods.html	/^				<a name="method-i-inherited"><\/a>$/;"	a
-method-i-inherited	doc/api/ActiveSupport/DescendantsTracker.html	/^				<a name="method-i-inherited"><\/a>$/;"	a
-method-i-init_with	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-init_with"><\/a>$/;"	a
-method-i-initialize_copy	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-initialize_copy"><\/a>$/;"	a
-method-i-initialize_copy	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-initialize_copy"><\/a>$/;"	a
-method-i-initialize_schema_migrations_table	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-initialize_schema_migrations_table"><\/a>$/;"	a
-method-i-initialize_template_class	doc/api/ActionController/Compatibility.html	/^				<a name="method-i-initialize_template_class"><\/a>$/;"	a
-method-i-insert	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-insert"><\/a>$/;"	a
-method-i-insert	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-insert"><\/a>$/;"	a
-method-i-insert	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-insert"><\/a>$/;"	a
-method-i-insert_fixture	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-insert_fixture"><\/a>$/;"	a
-method-i-insert_fixtures	doc/api/Fixtures.html	/^				<a name="method-i-insert_fixtures"><\/a>$/;"	a
-method-i-insert_html	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-insert_html"><\/a>$/;"	a
-method-i-insert_sql	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-insert_sql"><\/a>$/;"	a
-method-i-inspect	doc/api/ActionView/Template.html	/^				<a name="method-i-inspect"><\/a>$/;"	a
-method-i-inspect	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-inspect"><\/a>$/;"	a
-method-i-inspect	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-inspect"><\/a>$/;"	a
-method-i-inspect	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-inspect"><\/a>$/;"	a
-method-i-inspect	doc/api/DateTime.html	/^				<a name="method-i-inspect"><\/a>$/;"	a
-method-i-instance_method_already_implemented%3F	doc/api/ActiveModel/AttributeMethods/ClassMethods.html	/^				<a name="method-i-instance_method_already_implemented%3F"><\/a>$/;"	a
-method-i-instance_method_already_implemented%3F	doc/api/ActiveRecord/AttributeMethods/ClassMethods.html	/^				<a name="method-i-instance_method_already_implemented%3F"><\/a>$/;"	a
-method-i-instance_variable_names	doc/api/Object.html	/^				<a name="method-i-instance_variable_names"><\/a>$/;"	a
-method-i-instantiate_fixtures	doc/api/ActiveRecord/TestFixtures.html	/^				<a name="method-i-instantiate_fixtures"><\/a>$/;"	a
-method-i-instantiate_observers	doc/api/ActiveModel/Observing/ClassMethods.html	/^				<a name="method-i-instantiate_observers"><\/a>$/;"	a
-method-i-instantiate_time_object	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-instantiate_time_object"><\/a>$/;"	a
-method-i-instantiator%3F	doc/api/ActiveRecord/DynamicFinderMatch.html	/^				<a name="method-i-instantiator%3F"><\/a>$/;"	a
-method-i-instrument	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-instrument"><\/a>$/;"	a
-method-i-instrument	doc/api/ActiveSupport/Notifications/Instrumenter.html	/^				<a name="method-i-instrument"><\/a>$/;"	a
-method-i-instrument_page_cache	doc/api/ActionController/Caching/Pages/ClassMethods.html	/^				<a name="method-i-instrument_page_cache"><\/a>$/;"	a
-method-i-interpolate_sql	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-interpolate_sql"><\/a>$/;"	a
-method-i-interpolate_sql_for_preload	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-interpolate_sql_for_preload"><\/a>$/;"	a
-method-i-invalid%3F	doc/api/ActiveModel/DeprecatedErrorMethods.html	/^				<a name="method-i-invalid%3F"><\/a>$/;"	a
-method-i-invalid%3F	doc/api/ActiveModel/Validations.html	/^				<a name="method-i-invalid%3F"><\/a>$/;"	a
-method-i-irregular	doc/api/ActiveSupport/Inflector/Inflections.html	/^				<a name="method-i-irregular"><\/a>$/;"	a
-method-i-is_a%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-is_a%3F"><\/a>$/;"	a
-method-i-is_missing%3F	doc/api/LoadError.html	/^				<a name="method-i-is_missing%3F"><\/a>$/;"	a
-method-i-is_uri%3F	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-is_uri%3F"><\/a>$/;"	a
-method-i-isdst	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-isdst"><\/a>$/;"	a
-method-i-iso8601	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-iso8601"><\/a>$/;"	a
-method-i-j	doc/api/ERB/Util.html	/^				<a name="method-i-j"><\/a>$/;"	a
-method-i-javascript_include_tag	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-javascript_include_tag"><\/a>$/;"	a
-method-i-javascript_object_for	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-javascript_object_for"><\/a>$/;"	a
-method-i-javascript_path	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-javascript_path"><\/a>$/;"	a
-method-i-javascript_src_tag	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-javascript_src_tag"><\/a>$/;"	a
-method-i-javascript_tag	doc/api/ActionView/Helpers/JavaScriptHelper.html	/^				<a name="method-i-javascript_tag"><\/a>$/;"	a
-method-i-join_asset_file_contents	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-join_asset_file_contents"><\/a>$/;"	a
-method-i-join_table_name	doc/api/ActiveRecord/Associations/ClassMethods.html	/^				<a name="method-i-join_table_name"><\/a>$/;"	a
-method-i-joins	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-joins"><\/a>$/;"	a
-method-i-joins_per_query	doc/api/ActiveRecord/ConnectionAdapters/DatabaseLimits.html	/^				<a name="method-i-joins_per_query"><\/a>$/;"	a
-method-i-json_escape	doc/api/ERB/Util.html	/^				<a name="method-i-json_escape"><\/a>$/;"	a
-method-i-key%3F	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-key%3F"><\/a>$/;"	a
-method-i-key_file_path	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-key_file_path"><\/a>$/;"	a
-method-i-key_matcher	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-key_matcher"><\/a>$/;"	a
-method-i-kind	doc/api/ActiveModel/Validator.html	/^				<a name="method-i-kind"><\/a>$/;"	a
-method-i-kind_of%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-kind_of%3F"><\/a>$/;"	a
-method-i-klass	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-i-klass"><\/a>$/;"	a
-method-i-klass	doc/api/ActiveRecord/Reflection/MacroReflection.html	/^				<a name="method-i-klass"><\/a>$/;"	a
-method-i-known_attributes	doc/api/ActiveResource/Base.html	/^				<a name="method-i-known_attributes"><\/a>$/;"	a
-method-i-l	doc/api/ActionView/Helpers/TranslationHelper.html	/^				<a name="method-i-l"><\/a>$/;"	a
-method-i-label	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-label"><\/a>$/;"	a
-method-i-label_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-label_tag"><\/a>$/;"	a
-method-i-last	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-last"><\/a>$/;"	a
-method-i-legitimize_auth_type	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-legitimize_auth_type"><\/a>$/;"	a
-method-i-limit	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-limit"><\/a>$/;"	a
-method-i-limit	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-limit"><\/a>$/;"	a
-method-i-limited_update_conditions	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-limited_update_conditions"><\/a>$/;"	a
-method-i-limited_update_conditions	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-limited_update_conditions"><\/a>$/;"	a
-method-i-link_to	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-link_to"><\/a>$/;"	a
-method-i-link_to_function	doc/api/ActionView/Helpers/JavaScriptHelper.html	/^				<a name="method-i-link_to_function"><\/a>$/;"	a
-method-i-link_to_if	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-link_to_if"><\/a>$/;"	a
-method-i-link_to_unless	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-link_to_unless"><\/a>$/;"	a
-method-i-link_to_unless_current	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-link_to_unless_current"><\/a>$/;"	a
-method-i-listeners_for	doc/api/ActiveSupport/Notifications/Fanout.html	/^				<a name="method-i-listeners_for"><\/a>$/;"	a
-method-i-listening%3F	doc/api/ActiveSupport/Notifications/Fanout.html	/^				<a name="method-i-listening%3F"><\/a>$/;"	a
-method-i-literal	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-literal"><\/a>$/;"	a
-method-i-ljust	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-ljust"><\/a>$/;"	a
-method-i-load	doc/api/ActiveResource/Base.html	/^				<a name="method-i-load"><\/a>$/;"	a
-method-i-load	doc/api/ActiveSupport/Multibyte/Unicode/UnicodeDatabase.html	/^				<a name="method-i-load"><\/a>$/;"	a
-method-i-load_attributes_from_response	doc/api/ActiveResource/Base.html	/^				<a name="method-i-load_attributes_from_response"><\/a>$/;"	a
-method-i-load_fixtures	doc/api/ActiveRecord/TestFixtures.html	/^				<a name="method-i-load_fixtures"><\/a>$/;"	a
-method-i-load_instances%3F	doc/api/ActiveRecord/TestFixtures.html	/^				<a name="method-i-load_instances%3F"><\/a>$/;"	a
-method-i-load_migration	doc/api/ActiveRecord/MigrationProxy.html	/^				<a name="method-i-load_migration"><\/a>$/;"	a
-method-i-loaded%3F	doc/api/ActiveRecord/SessionStore/Session.html	/^				<a name="method-i-loaded%3F"><\/a>$/;"	a
-method-i-loaded%3F	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="method-i-loaded%3F"><\/a>$/;"	a
-method-i-local	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-local"><\/a>$/;"	a
-method-i-local_cache	doc/api/ActiveSupport/Cache/Strategy/LocalCache.html	/^				<a name="method-i-local_cache"><\/a>$/;"	a
-method-i-local_to_utc	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-local_to_utc"><\/a>$/;"	a
-method-i-locale	doc/api/ActionView/LookupContext/Details.html	/^				<a name="method-i-locale"><\/a>$/;"	a
-method-i-locale%3D	doc/api/ActionView/LookupContext/Details.html	/^				<a name="method-i-locale%3D"><\/a>$/;"	a
-method-i-localize	doc/api/ActionView/Helpers/TranslationHelper.html	/^				<a name="method-i-localize"><\/a>$/;"	a
-method-i-locals	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-locals"><\/a>$/;"	a
-method-i-localtime	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-localtime"><\/a>$/;"	a
-method-i-location	doc/api/ActionController/Metal.html	/^				<a name="method-i-location"><\/a>$/;"	a
-method-i-location%3D	doc/api/ActionController/Metal.html	/^				<a name="method-i-location%3D"><\/a>$/;"	a
-method-i-lock	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-lock"><\/a>$/;"	a
-method-i-lock%21	doc/api/ActiveRecord/Locking/Pessimistic.html	/^				<a name="method-i-lock%21"><\/a>$/;"	a
-method-i-locking_column	doc/api/ActiveRecord/Locking/Optimistic/ClassMethods.html	/^				<a name="method-i-locking_column"><\/a>$/;"	a
-method-i-locking_enabled%3F	doc/api/ActiveRecord/Locking/Optimistic/ClassMethods.html	/^				<a name="method-i-locking_enabled%3F"><\/a>$/;"	a
-method-i-log	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-log"><\/a>$/;"	a
-method-i-log	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-log"><\/a>$/;"	a
-method-i-log_process_action	doc/api/ActiveRecord/Railties/ControllerRuntime/ClassMethods.html	/^				<a name="method-i-log_process_action"><\/a>$/;"	a
-method-i-logged	doc/api/ActiveSupport/LogSubscriber/TestHelper/MockLogger.html	/^				<a name="method-i-logged"><\/a>$/;"	a
-method-i-logger	doc/api/ActionController/LogSubscriber.html	/^				<a name="method-i-logger"><\/a>$/;"	a
-method-i-logger	doc/api/ActionView/LogSubscriber.html	/^				<a name="method-i-logger"><\/a>$/;"	a
-method-i-logger	doc/api/ActiveRecord/LogSubscriber.html	/^				<a name="method-i-logger"><\/a>$/;"	a
-method-i-logger	doc/api/ActiveResource/LogSubscriber.html	/^				<a name="method-i-logger"><\/a>$/;"	a
-method-i-lookup_ancestors	doc/api/ActiveModel/Translation.html	/^				<a name="method-i-lookup_ancestors"><\/a>$/;"	a
-method-i-loop_on_multiple_args	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-loop_on_multiple_args"><\/a>$/;"	a
-method-i-lstrip	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-lstrip"><\/a>$/;"	a
-method-i-mail	doc/api/ActionMailer/Base.html	/^				<a name="method-i-mail"><\/a>$/;"	a
-method-i-mail_to	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-mail_to"><\/a>$/;"	a
-method-i-make_test_case_available_to_view%21	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-make_test_case_available_to_view%21"><\/a>$/;"	a
-method-i-many%3F	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-many%3F"><\/a>$/;"	a
-method-i-many%3F	doc/api/Enumerable.html	/^				<a name="method-i-many%3F"><\/a>$/;"	a
-method-i-mark_for_destruction	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-mark_for_destruction"><\/a>$/;"	a
-method-i-marked_for_destruction%3F	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-marked_for_destruction%3F"><\/a>$/;"	a
-method-i-marshal_data%21	doc/api/ActiveRecord/SessionStore/Session.html	/^				<a name="method-i-marshal_data%21"><\/a>$/;"	a
-method-i-marshal_dump	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-marshal_dump"><\/a>$/;"	a
-method-i-marshal_load	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-marshal_load"><\/a>$/;"	a
-method-i-mass_assignment_authorizer	doc/api/ActiveModel/MassAssignmentSecurity.html	/^				<a name="method-i-mass_assignment_authorizer"><\/a>$/;"	a
-method-i-match	doc/api/ActiveModel/AttributeMethods/ClassMethods/AttributeMethodMatcher.html	/^				<a name="method-i-match"><\/a>$/;"	a
-method-i-match	doc/api/HTML/Selector.html	/^				<a name="method-i-match"><\/a>$/;"	a
-method-i-match_attribute_method%3F	doc/api/ActiveModel/AttributeMethods.html	/^				<a name="method-i-match_attribute_method%3F"><\/a>$/;"	a
-method-i-matches%3F	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-matches%3F"><\/a>$/;"	a
-method-i-maximum	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-maximum"><\/a>$/;"	a
-method-i-measure	doc/api/ActiveSupport/Testing/Performance/Metrics/Base.html	/^				<a name="method-i-measure"><\/a>$/;"	a
-method-i-measure	doc/api/ActiveSupport/Testing/Performance/Metrics/CpuTime.html	/^				<a name="method-i-measure"><\/a>$/;"	a
-method-i-measure	doc/api/ActiveSupport/Testing/Performance/Metrics/GcRuns.html	/^				<a name="method-i-measure"><\/a>$/;"	a
-method-i-measure	doc/api/ActiveSupport/Testing/Performance/Metrics/GcTime.html	/^				<a name="method-i-measure"><\/a>$/;"	a
-method-i-measure	doc/api/ActiveSupport/Testing/Performance/Metrics/Memory.html	/^				<a name="method-i-measure"><\/a>$/;"	a
-method-i-measure	doc/api/ActiveSupport/Testing/Performance/Metrics/Objects.html	/^				<a name="method-i-measure"><\/a>$/;"	a
-method-i-measure	doc/api/ActiveSupport/Testing/Performance/Metrics/ProcessTime.html	/^				<a name="method-i-measure"><\/a>$/;"	a
-method-i-measure	doc/api/ActiveSupport/Testing/Performance/Metrics/Time.html	/^				<a name="method-i-measure"><\/a>$/;"	a
-method-i-measure	doc/api/ActiveSupport/Testing/Performance/Metrics/WallTime.html	/^				<a name="method-i-measure"><\/a>$/;"	a
-method-i-measure_mode	doc/api/ActiveSupport/Testing/Performance/Metrics/Base.html	/^				<a name="method-i-measure_mode"><\/a>$/;"	a
-method-i-member%3F	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-member%3F"><\/a>$/;"	a
-method-i-memoize	doc/api/ActiveSupport/Memoizable.html	/^				<a name="method-i-memoize"><\/a>$/;"	a
-method-i-memoize_all	doc/api/ActiveSupport/Memoizable/InstanceMethods.html	/^				<a name="method-i-memoize_all"><\/a>$/;"	a
-method-i-merge	doc/api/ActiveRecord/SpawnMethods.html	/^				<a name="method-i-merge"><\/a>$/;"	a
-method-i-merge	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-merge"><\/a>$/;"	a
-method-i-merge%21	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-merge%21"><\/a>$/;"	a
-method-i-method_added	doc/api/ActiveRecord/Callbacks/ClassMethods.html	/^				<a name="method-i-method_added"><\/a>$/;"	a
-method-i-method_for_action	doc/api/ActionController/Compatibility.html	/^				<a name="method-i-method_for_action"><\/a>$/;"	a
-method-i-method_for_action	doc/api/ActionController/HideActions.html	/^				<a name="method-i-method_for_action"><\/a>$/;"	a
-method-i-method_for_action	doc/api/ActionController/ImplicitRender.html	/^				<a name="method-i-method_for_action"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActionMailer/Base/DeprecatedHeaderProxy.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActionView/Helpers/AtomFeedHelper/AtomBuilder.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActiveModel/AttributeMethods.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActiveSupport/LogSubscriber/TestHelper/MockLogger.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActiveSupport/OrderedOptions.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActiveSupport/StringInquirer.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActiveSupport/Testing/ProxyTestResult.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-method_missing"><\/a>$/;"	a
-method-i-method_missing_target	doc/api/ActiveModel/AttributeMethods/ClassMethods/AttributeMethodMatcher.html	/^				<a name="method-i-method_missing_target"><\/a>$/;"	a
-method-i-method_name	doc/api/ActiveModel/AttributeMethods/ClassMethods/AttributeMethodMatcher.html	/^				<a name="method-i-method_name"><\/a>$/;"	a
-method-i-method_option_to_s	doc/api/ActionView/Helpers/PrototypeHelper.html	/^				<a name="method-i-method_option_to_s"><\/a>$/;"	a
-method-i-middleware	doc/api/ActiveSupport/Cache/Strategy/LocalCache.html	/^				<a name="method-i-middleware"><\/a>$/;"	a
-method-i-midnight	doc/api/DateTime.html	/^				<a name="method-i-midnight"><\/a>$/;"	a
-method-i-midnight	doc/api/Time.html	/^				<a name="method-i-midnight"><\/a>$/;"	a
-method-i-migration	doc/api/ActiveRecord/MigrationProxy.html	/^				<a name="method-i-migration"><\/a>$/;"	a
-method-i-mime_type	doc/api/ActionView/Template.html	/^				<a name="method-i-mime_type"><\/a>$/;"	a
-method-i-mime_type	doc/api/ActiveResource/Formats/JsonFormat.html	/^				<a name="method-i-mime_type"><\/a>$/;"	a
-method-i-mime_type	doc/api/ActiveResource/Formats/XmlFormat.html	/^				<a name="method-i-mime_type"><\/a>$/;"	a
-method-i-minimum	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-minimum"><\/a>$/;"	a
-method-i-minus_with_coercion	doc/api/Time.html	/^				<a name="method-i-minus_with_coercion"><\/a>$/;"	a
-method-i-minus_without_coercion	doc/api/Time.html	/^				<a name="method-i-minus_without_coercion"><\/a>$/;"	a
-method-i-minus_without_duration	doc/api/Time.html	/^				<a name="method-i-minus_without_duration"><\/a>$/;"	a
-method-i-missing_attribute	doc/api/ActiveModel/AttributeMethods.html	/^				<a name="method-i-missing_attribute"><\/a>$/;"	a
-method-i-missing_name	doc/api/NameError.html	/^				<a name="method-i-missing_name"><\/a>$/;"	a
-method-i-missing_name%3F	doc/api/NameError.html	/^				<a name="method-i-missing_name%3F"><\/a>$/;"	a
-method-i-model	doc/api/ActiveModel/Lint/Tests.html	/^				<a name="method-i-model"><\/a>$/;"	a
-method-i-model_class	doc/api/Fixtures.html	/^				<a name="method-i-model_class"><\/a>$/;"	a
-method-i-model_name	doc/api/ActiveModel/Naming.html	/^				<a name="method-i-model_name"><\/a>$/;"	a
-method-i-modules_for_helpers	doc/api/ActionController/Helpers/ClassMethods.html	/^				<a name="method-i-modules_for_helpers"><\/a>$/;"	a
-method-i-monday	doc/api/Time.html	/^				<a name="method-i-monday"><\/a>$/;"	a
-method-i-month	doc/api/Integer.html	/^				<a name="method-i-month"><\/a>$/;"	a
-method-i-months	doc/api/Integer.html	/^				<a name="method-i-months"><\/a>$/;"	a
-method-i-months_ago	doc/api/Time.html	/^				<a name="method-i-months_ago"><\/a>$/;"	a
-method-i-months_since	doc/api/Time.html	/^				<a name="method-i-months_since"><\/a>$/;"	a
-method-i-multiple_of%3F	doc/api/Integer.html	/^				<a name="method-i-multiple_of%3F"><\/a>$/;"	a
-method-i-mute	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-mute"><\/a>$/;"	a
-method-i-name	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-name"><\/a>$/;"	a
-method-i-name	doc/api/ActiveSupport/Testing/Performance/Metrics/Base.html	/^				<a name="method-i-name"><\/a>$/;"	a
-method-i-named_scope	doc/api/ActiveRecord/NamedScope/ClassMethods.html	/^				<a name="method-i-named_scope"><\/a>$/;"	a
-method-i-namespaced_key	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-namespaced_key"><\/a>$/;"	a
-method-i-native	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-native"><\/a>$/;"	a
-method-i-native	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="method-i-native"><\/a>$/;"	a
-method-i-native_database_types	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-native_database_types"><\/a>$/;"	a
-method-i-navigation_behavior	doc/api/ActionController/Responder.html	/^				<a name="method-i-navigation_behavior"><\/a>$/;"	a
-method-i-navigation_location	doc/api/ActionController/Responder.html	/^				<a name="method-i-navigation_location"><\/a>$/;"	a
-method-i-nested_records_changed_for_autosave%3F	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-nested_records_changed_for_autosave%3F"><\/a>$/;"	a
-method-i-new	doc/api/ActionView/TestCase/Behavior/ClassMethods.html	/^				<a name="method-i-new"><\/a>$/;"	a
-method-i-new	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-new"><\/a>$/;"	a
-method-i-new%3F	doc/api/ActiveResource/Base.html	/^				<a name="method-i-new%3F"><\/a>$/;"	a
-method-i-new_cipher	doc/api/ActiveSupport/MessageEncryptor.html	/^				<a name="method-i-new_cipher"><\/a>$/;"	a
-method-i-new_connection	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-new_connection"><\/a>$/;"	a
-method-i-new_constants	doc/api/ActiveSupport/Dependencies/WatchStack.html	/^				<a name="method-i-new_constants"><\/a>$/;"	a
-method-i-new_element_path	doc/api/ActiveResource/Base.html	/^				<a name="method-i-new_element_path"><\/a>$/;"	a
-method-i-new_http	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-new_http"><\/a>$/;"	a
-method-i-new_record%3F	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-new_record%3F"><\/a>$/;"	a
-method-i-new_record%3F	doc/api/ActiveResource/Base.html	/^				<a name="method-i-new_record%3F"><\/a>$/;"	a
-method-i-next_element	doc/api/HTML/Selector.html	/^				<a name="method-i-next_element"><\/a>$/;"	a
-method-i-next_id	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-next_id"><\/a>$/;"	a
-method-i-next_month	doc/api/Time.html	/^				<a name="method-i-next_month"><\/a>$/;"	a
-method-i-next_selector	doc/api/HTML/Selector.html	/^				<a name="method-i-next_selector"><\/a>$/;"	a
-method-i-next_week	doc/api/Time.html	/^				<a name="method-i-next_week"><\/a>$/;"	a
-method-i-next_year	doc/api/Time.html	/^				<a name="method-i-next_year"><\/a>$/;"	a
-method-i-noise	doc/api/ActiveSupport/BacktraceCleaner.html	/^				<a name="method-i-noise"><\/a>$/;"	a
-method-i-nonce	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-nonce"><\/a>$/;"	a
-method-i-normalize	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-normalize"><\/a>$/;"	a
-method-i-normalize	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="method-i-normalize"><\/a>$/;"	a
-method-i-normalize%21	doc/api/ActionController/Caching/Actions/ActionCachePath.html	/^				<a name="method-i-normalize%21"><\/a>$/;"	a
-method-i-normalize_options%21	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-normalize_options%21"><\/a>$/;"	a
-method-i-notify_observers	doc/api/ActiveModel/Observing.html	/^				<a name="method-i-notify_observers"><\/a>$/;"	a
-method-i-notify_observers	doc/api/ActiveModel/Observing/ClassMethods.html	/^				<a name="method-i-notify_observers"><\/a>$/;"	a
-method-i-now	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-now"><\/a>$/;"	a
-method-i-nth_child	doc/api/HTML/Selector.html	/^				<a name="method-i-nth_child"><\/a>$/;"	a
-method-i-number%3F	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-i-number%3F"><\/a>$/;"	a
-method-i-number_field	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-number_field"><\/a>$/;"	a
-method-i-number_field_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-number_field_tag"><\/a>$/;"	a
-method-i-number_to_currency	doc/api/ActionView/Helpers/NumberHelper.html	/^				<a name="method-i-number_to_currency"><\/a>$/;"	a
-method-i-number_to_human	doc/api/ActionView/Helpers/NumberHelper.html	/^				<a name="method-i-number_to_human"><\/a>$/;"	a
-method-i-number_to_human_size	doc/api/ActionView/Helpers/NumberHelper.html	/^				<a name="method-i-number_to_human_size"><\/a>$/;"	a
-method-i-number_to_percentage	doc/api/ActionView/Helpers/NumberHelper.html	/^				<a name="method-i-number_to_percentage"><\/a>$/;"	a
-method-i-number_to_phone	doc/api/ActionView/Helpers/NumberHelper.html	/^				<a name="method-i-number_to_phone"><\/a>$/;"	a
-method-i-number_with_delimiter	doc/api/ActionView/Helpers/NumberHelper.html	/^				<a name="method-i-number_with_delimiter"><\/a>$/;"	a
-method-i-number_with_precision	doc/api/ActionView/Helpers/NumberHelper.html	/^				<a name="method-i-number_with_precision"><\/a>$/;"	a
-method-i-object	doc/api/ActionView/Helpers/ActiveModelInstanceTag.html	/^				<a name="method-i-object"><\/a>$/;"	a
-method-i-object_from_yaml	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-object_from_yaml"><\/a>$/;"	a
-method-i-object_has_errors%3F	doc/api/ActionView/Helpers/ActiveModelInstanceTag.html	/^				<a name="method-i-object_has_errors%3F"><\/a>$/;"	a
-method-i-observe_callbacks%3F	doc/api/ActiveRecord/Observer.html	/^				<a name="method-i-observe_callbacks%3F"><\/a>$/;"	a
-method-i-observed_descendants	doc/api/ActiveRecord/Observer.html	/^				<a name="method-i-observed_descendants"><\/a>$/;"	a
-method-i-observers	doc/api/ActiveModel/Observing/ClassMethods.html	/^				<a name="method-i-observers"><\/a>$/;"	a
-method-i-observers%3D	doc/api/ActiveModel/Observing/ClassMethods.html	/^				<a name="method-i-observers%3D"><\/a>$/;"	a
-method-i-odd%3F	doc/api/ActiveRecord/LogSubscriber.html	/^				<a name="method-i-odd%3F"><\/a>$/;"	a
-method-i-offset	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-offset"><\/a>$/;"	a
-method-i-on	doc/api/ActiveModel/DeprecatedErrorMethods.html	/^				<a name="method-i-on"><\/a>$/;"	a
-method-i-on_base	doc/api/ActiveModel/DeprecatedErrorMethods.html	/^				<a name="method-i-on_base"><\/a>$/;"	a
-method-i-on_cdata_block	doc/api/ActiveSupport/XmlMini_LibXMLSAX/HashBuilder.html	/^				<a name="method-i-on_cdata_block"><\/a>$/;"	a
-method-i-on_characters	doc/api/ActiveSupport/XmlMini_LibXMLSAX/HashBuilder.html	/^				<a name="method-i-on_characters"><\/a>$/;"	a
-method-i-on_end_document	doc/api/ActiveSupport/XmlMini_LibXMLSAX/HashBuilder.html	/^				<a name="method-i-on_end_document"><\/a>$/;"	a
-method-i-on_end_element	doc/api/ActiveSupport/XmlMini_LibXMLSAX/HashBuilder.html	/^				<a name="method-i-on_end_element"><\/a>$/;"	a
-method-i-on_start_document	doc/api/ActiveSupport/XmlMini_LibXMLSAX/HashBuilder.html	/^				<a name="method-i-on_start_document"><\/a>$/;"	a
-method-i-on_start_element	doc/api/ActiveSupport/XmlMini_LibXMLSAX/HashBuilder.html	/^				<a name="method-i-on_start_element"><\/a>$/;"	a
-method-i-only	doc/api/ActiveRecord/SpawnMethods.html	/^				<a name="method-i-only"><\/a>$/;"	a
-method-i-only_child	doc/api/HTML/Selector.html	/^				<a name="method-i-only_child"><\/a>$/;"	a
-method-i-opaque	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-opaque"><\/a>$/;"	a
-method-i-open_transactions	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-open_transactions"><\/a>$/;"	a
-method-i-operation_over_aggregate_column	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-operation_over_aggregate_column"><\/a>$/;"	a
-method-i-option_groups_from_collection_for_select	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-option_groups_from_collection_for_select"><\/a>$/;"	a
-method-i-option_html_attributes	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-option_html_attributes"><\/a>$/;"	a
-method-i-option_text_and_value	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-option_text_and_value"><\/a>$/;"	a
-method-i-option_value_selected%3F	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-option_value_selected%3F"><\/a>$/;"	a
-method-i-options_for	doc/api/ActiveSupport/JSON/Encoding/Encoder.html	/^				<a name="method-i-options_for"><\/a>$/;"	a
-method-i-options_for_ajax	doc/api/ActionView/Helpers/PrototypeHelper.html	/^				<a name="method-i-options_for_ajax"><\/a>$/;"	a
-method-i-options_for_javascript	doc/api/ActionView/Helpers/PrototypeHelper.html	/^				<a name="method-i-options_for_javascript"><\/a>$/;"	a
-method-i-options_for_javascript	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-options_for_javascript"><\/a>$/;"	a
-method-i-options_for_select	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-options_for_select"><\/a>$/;"	a
-method-i-options_from_collection_for_select	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-options_from_collection_for_select"><\/a>$/;"	a
-method-i-options_include_default%3F	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-options_include_default%3F"><\/a>$/;"	a
-method-i-ord	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-ord"><\/a>$/;"	a
-method-i-order	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-order"><\/a>$/;"	a
-method-i-ordinalize	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-ordinalize"><\/a>$/;"	a
-method-i-ordinalize	doc/api/Integer.html	/^				<a name="method-i-ordinalize"><\/a>$/;"	a
-method-i-output_filename	doc/api/ActiveSupport/Testing/Performance/Benchmarker.html	/^				<a name="method-i-output_filename"><\/a>$/;"	a
-method-i-output_filename	doc/api/ActiveSupport/Testing/Performance/Performer.html	/^				<a name="method-i-output_filename"><\/a>$/;"	a
-method-i-output_filename	doc/api/ActiveSupport/Testing/Performance/Profiler.html	/^				<a name="method-i-output_filename"><\/a>$/;"	a
-method-i-outside_transaction%3F	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-outside_transaction%3F"><\/a>$/;"	a
-method-i-outside_transaction%3F	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-outside_transaction%3F"><\/a>$/;"	a
-method-i-page	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-page"><\/a>$/;"	a
-method-i-page_cache_file	doc/api/ActionController/Caching/Pages/ClassMethods.html	/^				<a name="method-i-page_cache_file"><\/a>$/;"	a
-method-i-page_cache_path	doc/api/ActionController/Caching/Pages/ClassMethods.html	/^				<a name="method-i-page_cache_path"><\/a>$/;"	a
-method-i-parameterize	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-parameterize"><\/a>$/;"	a
-method-i-params	doc/api/ActionController/Metal.html	/^				<a name="method-i-params"><\/a>$/;"	a
-method-i-params%3D	doc/api/ActionController/Metal.html	/^				<a name="method-i-params%3D"><\/a>$/;"	a
-method-i-parent_of%3F	doc/api/ActiveSupport/Notifications/Event.html	/^				<a name="method-i-parent_of%3F"><\/a>$/;"	a
-method-i-parse	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-parse"><\/a>$/;"	a
-method-i-parse	doc/api/ActiveSupport/XmlMini_LibXMLSAX.html	/^				<a name="method-i-parse"><\/a>$/;"	a
-method-i-parse	doc/api/ActiveSupport/XmlMini_NokogiriSAX.html	/^				<a name="method-i-parse"><\/a>$/;"	a
-method-i-parse_raw_value_as_a_number	doc/api/ActiveModel/Validations/NumericalityValidator.html	/^				<a name="method-i-parse_raw_value_as_a_number"><\/a>$/;"	a
-method-i-parse_raw_value_as_an_integer	doc/api/ActiveModel/Validations/NumericalityValidator.html	/^				<a name="method-i-parse_raw_value_as_an_integer"><\/a>$/;"	a
-method-i-parse_yaml_string	doc/api/Fixtures.html	/^				<a name="method-i-parse_yaml_string"><\/a>$/;"	a
-method-i-password%3D	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-password%3D"><\/a>$/;"	a
-method-i-password_field	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-password_field"><\/a>$/;"	a
-method-i-password_field_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-password_field_tag"><\/a>$/;"	a
-method-i-past%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-past%3F"><\/a>$/;"	a
-method-i-past%3F	doc/api/DateTime.html	/^				<a name="method-i-past%3F"><\/a>$/;"	a
-method-i-past%3F	doc/api/Time.html	/^				<a name="method-i-past%3F"><\/a>$/;"	a
-method-i-path	doc/api/LoadError.html	/^				<a name="method-i-path"><\/a>$/;"	a
-method-i-path_to_audio	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-path_to_audio"><\/a>$/;"	a
-method-i-path_to_image	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-path_to_image"><\/a>$/;"	a
-method-i-path_to_javascript	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-path_to_javascript"><\/a>$/;"	a
-method-i-path_to_stylesheet	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-path_to_stylesheet"><\/a>$/;"	a
-method-i-path_to_video	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-path_to_video"><\/a>$/;"	a
-method-i-pending	doc/api/ActiveSupport/Testing/Pending.html	/^				<a name="method-i-pending"><\/a>$/;"	a
-method-i-perform_calculation	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-perform_calculation"><\/a>$/;"	a
-method-i-perform_validations	doc/api/ActiveRecord/Validations.html	/^				<a name="method-i-perform_validations"><\/a>$/;"	a
-method-i-performed%3F	doc/api/ActionController/Compatibility.html	/^				<a name="method-i-performed%3F"><\/a>$/;"	a
-method-i-period	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-period"><\/a>$/;"	a
-method-i-period_for_local	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-period_for_local"><\/a>$/;"	a
-method-i-period_for_utc	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-period_for_utc"><\/a>$/;"	a
-method-i-persisted%3F	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-persisted%3F"><\/a>$/;"	a
-method-i-persisted%3F	doc/api/ActiveResource/Base.html	/^				<a name="method-i-persisted%3F"><\/a>$/;"	a
-method-i-phone_field	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-phone_field"><\/a>$/;"	a
-method-i-phone_field_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-phone_field_tag"><\/a>$/;"	a
-method-i-plural	doc/api/ActiveSupport/Inflector/Inflections.html	/^				<a name="method-i-plural"><\/a>$/;"	a
-method-i-pluralize	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-pluralize"><\/a>$/;"	a
-method-i-pluralize	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-pluralize"><\/a>$/;"	a
-method-i-pop_modules	doc/api/ActiveSupport/Dependencies/WatchStack.html	/^				<a name="method-i-pop_modules"><\/a>$/;"	a
-method-i-populate_with_current_scope_attributes	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-populate_with_current_scope_attributes"><\/a>$/;"	a
-method-i-post	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="method-i-post"><\/a>$/;"	a
-method-i-post	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-post"><\/a>$/;"	a
-method-i-post	doc/api/ActiveResource/CustomMethods/InstanceMethods.html	/^				<a name="method-i-post"><\/a>$/;"	a
-method-i-postgresql_version	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-postgresql_version"><\/a>$/;"	a
-method-i-precisionless_round	doc/api/Float.html	/^				<a name="method-i-precisionless_round"><\/a>$/;"	a
-method-i-prefetch_primary_key%3F	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-prefetch_primary_key%3F"><\/a>$/;"	a
-method-i-preload	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-preload"><\/a>$/;"	a
-method-i-preload_associations	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-preload_associations"><\/a>$/;"	a
-method-i-preload_belongs_to_association	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-preload_belongs_to_association"><\/a>$/;"	a
-method-i-preload_has_and_belongs_to_many_association	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-preload_has_and_belongs_to_many_association"><\/a>$/;"	a
-method-i-preload_has_many_association	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-preload_has_many_association"><\/a>$/;"	a
-method-i-preload_has_one_association	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-preload_has_one_association"><\/a>$/;"	a
-method-i-preload_one_association	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-preload_one_association"><\/a>$/;"	a
-method-i-preload_through_records	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-preload_through_records"><\/a>$/;"	a
-method-i-prepare_controller_class	doc/api/ActionController/TestCase/Behavior/ClassMethods.html	/^				<a name="method-i-prepare_controller_class"><\/a>$/;"	a
-method-i-presence	doc/api/Object.html	/^				<a name="method-i-presence"><\/a>$/;"	a
-method-i-present%3F	doc/api/Object.html	/^				<a name="method-i-present%3F"><\/a>$/;"	a
-method-i-prev_month	doc/api/Time.html	/^				<a name="method-i-prev_month"><\/a>$/;"	a
-method-i-prev_year	doc/api/Time.html	/^				<a name="method-i-prev_year"><\/a>$/;"	a
-method-i-previous_changes	doc/api/ActiveModel/Dirty.html	/^				<a name="method-i-previous_changes"><\/a>$/;"	a
-method-i-primary_key	doc/api/ActiveRecord/AttributeMethods/PrimaryKey/ClassMethods.html	/^				<a name="method-i-primary_key"><\/a>$/;"	a
-method-i-primary_key	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-primary_key"><\/a>$/;"	a
-method-i-primary_key	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-primary_key"><\/a>$/;"	a
-method-i-primary_key	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="method-i-primary_key"><\/a>$/;"	a
-method-i-primary_key	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-primary_key"><\/a>$/;"	a
-method-i-primary_key%3D	doc/api/ActiveRecord/AttributeMethods/PrimaryKey/ClassMethods.html	/^				<a name="method-i-primary_key%3D"><\/a>$/;"	a
-method-i-primary_key_name	doc/api/Fixtures.html	/^				<a name="method-i-primary_key_name"><\/a>$/;"	a
-method-i-prime_cache	doc/api/ActiveSupport/Memoizable/InstanceMethods.html	/^				<a name="method-i-prime_cache"><\/a>$/;"	a
-method-i-process	doc/api/ActionController/Middleware.html	/^				<a name="method-i-process"><\/a>$/;"	a
-method-i-process	doc/api/ActionController/TemplateAssertions.html	/^				<a name="method-i-process"><\/a>$/;"	a
-method-i-process	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="method-i-process"><\/a>$/;"	a
-method-i-process_action	doc/api/ActionController/Instrumentation.html	/^				<a name="method-i-process_action"><\/a>$/;"	a
-method-i-process_action	doc/api/ActionController/LogSubscriber.html	/^				<a name="method-i-process_action"><\/a>$/;"	a
-method-i-process_action	doc/api/ActionController/Rescue.html	/^				<a name="method-i-process_action"><\/a>$/;"	a
-method-i-process_attributes_for	doc/api/HTML/WhiteListSanitizer.html	/^				<a name="method-i-process_attributes_for"><\/a>$/;"	a
-method-i-process_node	doc/api/HTML/FullSanitizer.html	/^				<a name="method-i-process_node"><\/a>$/;"	a
-method-i-process_node	doc/api/HTML/LinkSanitizer.html	/^				<a name="method-i-process_node"><\/a>$/;"	a
-method-i-process_node	doc/api/HTML/Sanitizer.html	/^				<a name="method-i-process_node"><\/a>$/;"	a
-method-i-process_node	doc/api/HTML/WhiteListSanitizer.html	/^				<a name="method-i-process_node"><\/a>$/;"	a
-method-i-process_with_new_base_test	doc/api/ActionController/Testing.html	/^				<a name="method-i-process_with_new_base_test"><\/a>$/;"	a
-method-i-profile	doc/api/ActiveSupport/Testing/Performance/Metrics/Base.html	/^				<a name="method-i-profile"><\/a>$/;"	a
-method-i-protect_against_forgery%3F	doc/api/ActionController/RequestForgeryProtection.html	/^				<a name="method-i-protect_against_forgery%3F"><\/a>$/;"	a
-method-i-protect_against_forgery%3F	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-protect_against_forgery%3F"><\/a>$/;"	a
-method-i-protect_from_forgery	doc/api/ActionController/RequestForgeryProtection.html	/^				<a name="method-i-protect_from_forgery"><\/a>$/;"	a
-method-i-protect_from_forgery	doc/api/ActionController/RequestForgeryProtection/ClassMethods.html	/^				<a name="method-i-protect_from_forgery"><\/a>$/;"	a
-method-i-protected_attributes	doc/api/ActiveModel/MassAssignmentSecurity/ClassMethods.html	/^				<a name="method-i-protected_attributes"><\/a>$/;"	a
-method-i-proxy%3D	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-proxy%3D"><\/a>$/;"	a
-method-i-prune	doc/api/ActiveSupport/Cache/MemoryStore.html	/^				<a name="method-i-prune"><\/a>$/;"	a
-method-i-pruning%3F	doc/api/ActiveSupport/Cache/MemoryStore.html	/^				<a name="method-i-pruning%3F"><\/a>$/;"	a
-method-i-publish	doc/api/ActiveSupport/Notifications/Fanout.html	/^				<a name="method-i-publish"><\/a>$/;"	a
-method-i-put	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="method-i-put"><\/a>$/;"	a
-method-i-put	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-put"><\/a>$/;"	a
-method-i-put	doc/api/ActiveResource/CustomMethods/InstanceMethods.html	/^				<a name="method-i-put"><\/a>$/;"	a
-method-i-query	doc/api/ActionView/FixtureResolver.html	/^				<a name="method-i-query"><\/a>$/;"	a
-method-i-query	doc/api/ActionView/NullResolver.html	/^				<a name="method-i-query"><\/a>$/;"	a
-method-i-query	doc/api/ActionView/PathResolver.html	/^				<a name="method-i-query"><\/a>$/;"	a
-method-i-query_attribute	doc/api/ActiveRecord/AttributeMethods/Query.html	/^				<a name="method-i-query_attribute"><\/a>$/;"	a
-method-i-quote	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-quote"><\/a>$/;"	a
-method-i-quote	doc/api/ActiveRecord/ConnectionAdapters/Quoting.html	/^				<a name="method-i-quote"><\/a>$/;"	a
-method-i-quote_column_name	doc/api/ActiveRecord/ConnectionAdapters/Quoting.html	/^				<a name="method-i-quote_column_name"><\/a>$/;"	a
-method-i-quote_columns	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-quote_columns"><\/a>$/;"	a
-method-i-quote_string	doc/api/ActiveRecord/ConnectionAdapters/Quoting.html	/^				<a name="method-i-quote_string"><\/a>$/;"	a
-method-i-quote_table_name	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-quote_table_name"><\/a>$/;"	a
-method-i-quote_table_name	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-quote_table_name"><\/a>$/;"	a
-method-i-quote_table_name	doc/api/ActiveRecord/ConnectionAdapters/Quoting.html	/^				<a name="method-i-quote_table_name"><\/a>$/;"	a
-method-i-quote_value	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-quote_value"><\/a>$/;"	a
-method-i-quoted_columns_for_index	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-quoted_columns_for_index"><\/a>$/;"	a
-method-i-quoted_columns_for_index	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-quoted_columns_for_index"><\/a>$/;"	a
-method-i-quoted_comma_pair_list	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-quoted_comma_pair_list"><\/a>$/;"	a
-method-i-quoted_date	doc/api/ActiveRecord/ConnectionAdapters/Quoting.html	/^				<a name="method-i-quoted_date"><\/a>$/;"	a
-method-i-quoted_false	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-quoted_false"><\/a>$/;"	a
-method-i-quoted_false	doc/api/ActiveRecord/ConnectionAdapters/Quoting.html	/^				<a name="method-i-quoted_false"><\/a>$/;"	a
-method-i-quoted_locking_column	doc/api/ActiveRecord/Locking/Optimistic/ClassMethods.html	/^				<a name="method-i-quoted_locking_column"><\/a>$/;"	a
-method-i-quoted_true	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-quoted_true"><\/a>$/;"	a
-method-i-quoted_true	doc/api/ActiveRecord/ConnectionAdapters/Quoting.html	/^				<a name="method-i-quoted_true"><\/a>$/;"	a
-method-i-radio_button	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-radio_button"><\/a>$/;"	a
-method-i-radio_button_checked%3F	doc/api/ActionView/Helpers/InstanceTagMethods/ClassMethods.html	/^				<a name="method-i-radio_button_checked%3F"><\/a>$/;"	a
-method-i-radio_button_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-radio_button_tag"><\/a>$/;"	a
-method-i-rails_asset_id	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-rails_asset_id"><\/a>$/;"	a
-method-i-raise_on_session_data_overflow%21	doc/api/ActiveRecord/SessionStore/Session.html	/^				<a name="method-i-raise_on_session_data_overflow%21"><\/a>$/;"	a
-method-i-range_field	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-range_field"><\/a>$/;"	a
-method-i-range_field_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-range_field_tag"><\/a>$/;"	a
-method-i-raw	doc/api/ActionView/Helpers/RawOutputHelper.html	/^				<a name="method-i-raw"><\/a>$/;"	a
-method-i-raw_connection	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-raw_connection"><\/a>$/;"	a
-method-i-raw_value	doc/api/ActiveSupport/Cache/Entry.html	/^				<a name="method-i-raw_value"><\/a>$/;"	a
-method-i-read	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-read"><\/a>$/;"	a
-method-i-read_attribute	doc/api/ActiveRecord/AttributeMethods/Read.html	/^				<a name="method-i-read_attribute"><\/a>$/;"	a
-method-i-read_attribute_before_type_cast	doc/api/ActiveRecord/AttributeMethods/BeforeTypeCast.html	/^				<a name="method-i-read_attribute_before_type_cast"><\/a>$/;"	a
-method-i-read_csv_fixture_files	doc/api/Fixtures.html	/^				<a name="method-i-read_csv_fixture_files"><\/a>$/;"	a
-method-i-read_entry	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-read_entry"><\/a>$/;"	a
-method-i-read_entry	doc/api/ActiveSupport/Cache/Strategy/LocalCache/LocalStore.html	/^				<a name="method-i-read_entry"><\/a>$/;"	a
-method-i-read_fixture_files	doc/api/Fixtures.html	/^				<a name="method-i-read_fixture_files"><\/a>$/;"	a
-method-i-read_multi	doc/api/ActiveSupport/Cache/MemCacheStore.html	/^				<a name="method-i-read_multi"><\/a>$/;"	a
-method-i-read_multi	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-read_multi"><\/a>$/;"	a
-method-i-read_yaml_fixture_files	doc/api/Fixtures.html	/^				<a name="method-i-read_yaml_fixture_files"><\/a>$/;"	a
-method-i-readable_inspect	doc/api/DateTime.html	/^				<a name="method-i-readable_inspect"><\/a>$/;"	a
-method-i-reader_method	doc/api/ActiveRecord/Aggregations/ClassMethods.html	/^				<a name="method-i-reader_method"><\/a>$/;"	a
-method-i-readonly	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-readonly"><\/a>$/;"	a
-method-i-readonly%21	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-readonly%21"><\/a>$/;"	a
-method-i-readonly%3F	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-readonly%3F"><\/a>$/;"	a
-method-i-recompile%21	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-recompile%21"><\/a>$/;"	a
-method-i-reconnect%21	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-reconnect%21"><\/a>$/;"	a
-method-i-reconnect%21	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-reconnect%21"><\/a>$/;"	a
-method-i-reconnect%21	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-reconnect%21"><\/a>$/;"	a
-method-i-record	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-record"><\/a>$/;"	a
-method-i-record	doc/api/ActiveSupport/Testing/Performance/Benchmarker.html	/^				<a name="method-i-record"><\/a>$/;"	a
-method-i-record	doc/api/ActiveSupport/Testing/Performance/Profiler.html	/^				<a name="method-i-record"><\/a>$/;"	a
-method-i-recycle%21	doc/api/ActionController/TestResponse.html	/^				<a name="method-i-recycle%21"><\/a>$/;"	a
-method-i-redirect_to	doc/api/ActionController/Flash.html	/^				<a name="method-i-redirect_to"><\/a>$/;"	a
-method-i-redirect_to	doc/api/ActionController/Instrumentation.html	/^				<a name="method-i-redirect_to"><\/a>$/;"	a
-method-i-redirect_to	doc/api/ActionController/LogSubscriber.html	/^				<a name="method-i-redirect_to"><\/a>$/;"	a
-method-i-redirect_to	doc/api/ActionController/Redirecting.html	/^				<a name="method-i-redirect_to"><\/a>$/;"	a
-method-i-redirect_to	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-redirect_to"><\/a>$/;"	a
-method-i-references	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-references"><\/a>$/;"	a
-method-i-references	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="method-i-references"><\/a>$/;"	a
-method-i-references_eager_loaded_tables%3F	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-references_eager_loaded_tables%3F"><\/a>$/;"	a
-method-i-reflect_on_aggregation	doc/api/ActiveRecord/Reflection/ClassMethods.html	/^				<a name="method-i-reflect_on_aggregation"><\/a>$/;"	a
-method-i-reflect_on_all_aggregations	doc/api/ActiveRecord/Reflection/ClassMethods.html	/^				<a name="method-i-reflect_on_all_aggregations"><\/a>$/;"	a
-method-i-reflect_on_all_associations	doc/api/ActiveRecord/Reflection/ClassMethods.html	/^				<a name="method-i-reflect_on_all_associations"><\/a>$/;"	a
-method-i-reflect_on_all_autosave_associations	doc/api/ActiveRecord/Reflection/ClassMethods.html	/^				<a name="method-i-reflect_on_all_autosave_associations"><\/a>$/;"	a
-method-i-reflect_on_association	doc/api/ActiveRecord/Reflection/ClassMethods.html	/^				<a name="method-i-reflect_on_association"><\/a>$/;"	a
-method-i-reflections	doc/api/ActiveRecord/Reflection/ClassMethods.html	/^				<a name="method-i-reflections"><\/a>$/;"	a
-method-i-regular_update	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-regular_update"><\/a>$/;"	a
-method-i-regular_writer	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-regular_writer"><\/a>$/;"	a
-method-i-release_connection	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-release_connection"><\/a>$/;"	a
-method-i-release_savepoint	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-release_savepoint"><\/a>$/;"	a
-method-i-release_savepoint	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-release_savepoint"><\/a>$/;"	a
-method-i-release_savepoint	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-release_savepoint"><\/a>$/;"	a
-method-i-reload	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-reload"><\/a>$/;"	a
-method-i-reload	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-reload"><\/a>$/;"	a
-method-i-reload	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-reload"><\/a>$/;"	a
-method-i-reload	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-reload"><\/a>$/;"	a
-method-i-reload	doc/api/ActiveResource/Base.html	/^				<a name="method-i-reload"><\/a>$/;"	a
-method-i-remember_transaction_record_state	doc/api/ActiveRecord/Transactions.html	/^				<a name="method-i-remember_transaction_record_state"><\/a>$/;"	a
-method-i-remote_function	doc/api/ActionView/Helpers/PrototypeHelper.html	/^				<a name="method-i-remote_function"><\/a>$/;"	a
-method-i-remove	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-remove"><\/a>$/;"	a
-method-i-remove	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-remove"><\/a>$/;"	a
-method-i-remove_belongs_to	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-remove_belongs_to"><\/a>$/;"	a
-method-i-remove_column	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-remove_column"><\/a>$/;"	a
-method-i-remove_columns	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-remove_columns"><\/a>$/;"	a
-method-i-remove_connection	doc/api/ActiveRecord/ConnectionAdapters/ConnectionHandler.html	/^				<a name="method-i-remove_connection"><\/a>$/;"	a
-method-i-remove_filters%21	doc/api/ActiveSupport/BacktraceCleaner.html	/^				<a name="method-i-remove_filters%21"><\/a>$/;"	a
-method-i-remove_index	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-remove_index"><\/a>$/;"	a
-method-i-remove_index	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-remove_index"><\/a>$/;"	a
-method-i-remove_multiparameter_id	doc/api/ActiveModel/MassAssignmentSecurity/PermissionSet.html	/^				<a name="method-i-remove_multiparameter_id"><\/a>$/;"	a
-method-i-remove_references	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-remove_references"><\/a>$/;"	a
-method-i-remove_silencers%21	doc/api/ActiveSupport/BacktraceCleaner.html	/^				<a name="method-i-remove_silencers%21"><\/a>$/;"	a
-method-i-remove_timestamps	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-remove_timestamps"><\/a>$/;"	a
-method-i-remove_timestamps	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-remove_timestamps"><\/a>$/;"	a
-method-i-rename	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-rename"><\/a>$/;"	a
-method-i-rename_column	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-rename_column"><\/a>$/;"	a
-method-i-rename_column	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-rename_column"><\/a>$/;"	a
-method-i-rename_index	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-rename_index"><\/a>$/;"	a
-method-i-rename_key	doc/api/ActiveSupport/XmlMini.html	/^				<a name="method-i-rename_key"><\/a>$/;"	a
-method-i-rename_table	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-rename_table"><\/a>$/;"	a
-method-i-rename_table	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-rename_table"><\/a>$/;"	a
-method-i-rename_table	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-rename_table"><\/a>$/;"	a
-method-i-rename_table	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-rename_table"><\/a>$/;"	a
-method-i-render	doc/api/ActionController/Instrumentation.html	/^				<a name="method-i-render"><\/a>$/;"	a
-method-i-render	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-render"><\/a>$/;"	a
-method-i-render	doc/api/ActionView/Rendering.html	/^				<a name="method-i-render"><\/a>$/;"	a
-method-i-render	doc/api/ActionView/Template.html	/^				<a name="method-i-render"><\/a>$/;"	a
-method-i-render	doc/api/ActionView/Template/Handler.html	/^				<a name="method-i-render"><\/a>$/;"	a
-method-i-render	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-render"><\/a>$/;"	a
-method-i-render_collection	doc/api/ActionView/LogSubscriber.html	/^				<a name="method-i-render_collection"><\/a>$/;"	a
-method-i-render_partial	doc/api/ActionView/LogSubscriber.html	/^				<a name="method-i-render_partial"><\/a>$/;"	a
-method-i-render_template	doc/api/ActionView/LogSubscriber.html	/^				<a name="method-i-render_template"><\/a>$/;"	a
-method-i-render_to_body	doc/api/ActionController/Compatibility.html	/^				<a name="method-i-render_to_body"><\/a>$/;"	a
-method-i-render_to_body	doc/api/ActionController/Renderers.html	/^				<a name="method-i-render_to_body"><\/a>$/;"	a
-method-i-reorder	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-reorder"><\/a>$/;"	a
-method-i-reorder_characters	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="method-i-reorder_characters"><\/a>$/;"	a
-method-i-replace	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-replace"><\/a>$/;"	a
-method-i-replace	doc/api/ActiveRecord/Associations/HasOneThroughAssociation.html	/^				<a name="method-i-replace"><\/a>$/;"	a
-method-i-replace_html	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-replace_html"><\/a>$/;"	a
-method-i-report	doc/api/ActiveSupport/Testing/Performance/Performer.html	/^				<a name="method-i-report"><\/a>$/;"	a
-method-i-report	doc/api/ActiveSupport/Testing/Performance/Profiler.html	/^				<a name="method-i-report"><\/a>$/;"	a
-method-i-request	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-request"><\/a>$/;"	a
-method-i-request	doc/api/ActiveResource/LogSubscriber.html	/^				<a name="method-i-request"><\/a>$/;"	a
-method-i-request_http_basic_authentication	doc/api/ActionController/HttpAuthentication/Basic/ControllerMethods.html	/^				<a name="method-i-request_http_basic_authentication"><\/a>$/;"	a
-method-i-request_http_digest_authentication	doc/api/ActionController/HttpAuthentication/Digest/ControllerMethods.html	/^				<a name="method-i-request_http_digest_authentication"><\/a>$/;"	a
-method-i-request_http_token_authentication	doc/api/ActionController/HttpAuthentication/Token/ControllerMethods.html	/^				<a name="method-i-request_http_token_authentication"><\/a>$/;"	a
-method-i-require_fixture_classes	doc/api/ActiveRecord/TestFixtures/ClassMethods.html	/^				<a name="method-i-require_fixture_classes"><\/a>$/;"	a
-method-i-require_library_or_gem	doc/api/Kernel.html	/^				<a name="method-i-require_library_or_gem"><\/a>$/;"	a
-method-i-requires_reloading%3F	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-requires_reloading%3F"><\/a>$/;"	a
-method-i-requires_reloading%3F	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-requires_reloading%3F"><\/a>$/;"	a
-method-i-rescue_action	doc/api/ActionController/Compatibility.html	/^				<a name="method-i-rescue_action"><\/a>$/;"	a
-method-i-rescue_action_in_public%21	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="method-i-rescue_action_in_public%21"><\/a>$/;"	a
-method-i-rescue_action_without_handler	doc/api/ActionController/TestCase/RaiseActionExceptions.html	/^				<a name="method-i-rescue_action_without_handler"><\/a>$/;"	a
-method-i-rescue_from	doc/api/ActiveSupport/Rescuable/ClassMethods.html	/^				<a name="method-i-rescue_from"><\/a>$/;"	a
-method-i-rescue_with_handler	doc/api/ActionController/Rescue.html	/^				<a name="method-i-rescue_with_handler"><\/a>$/;"	a
-method-i-rescue_with_handler	doc/api/ActiveSupport/Rescuable.html	/^				<a name="method-i-rescue_with_handler"><\/a>$/;"	a
-method-i-reset	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-reset"><\/a>$/;"	a
-method-i-reset%21	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-reset%21"><\/a>$/;"	a
-method-i-reset%21	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-reset%21"><\/a>$/;"	a
-method-i-reset_attribute%21	doc/api/ActiveModel/Dirty.html	/^				<a name="method-i-reset_attribute%21"><\/a>$/;"	a
-method-i-reset_callbacks	doc/api/ActiveSupport/Callbacks/ClassMethods.html	/^				<a name="method-i-reset_callbacks"><\/a>$/;"	a
-method-i-reset_counters	doc/api/ActiveRecord/CounterCache.html	/^				<a name="method-i-reset_counters"><\/a>$/;"	a
-method-i-reset_cycle	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-reset_cycle"><\/a>$/;"	a
-method-i-reset_locking_column	doc/api/ActiveRecord/Locking/Optimistic/ClassMethods.html	/^				<a name="method-i-reset_locking_column"><\/a>$/;"	a
-method-i-reset_sequence%21	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-reset_sequence%21"><\/a>$/;"	a
-method-i-reset_session	doc/api/ActionController/RackDelegation.html	/^				<a name="method-i-reset_session"><\/a>$/;"	a
-method-i-resource_location	doc/api/ActionController/Responder.html	/^				<a name="method-i-resource_location"><\/a>$/;"	a
-method-i-resourceful%3F	doc/api/ActionController/Responder.html	/^				<a name="method-i-resourceful%3F"><\/a>$/;"	a
-method-i-respond	doc/api/ActionController/Responder.html	/^				<a name="method-i-respond"><\/a>$/;"	a
-method-i-respond_to	doc/api/ActionController/MimeResponds/ClassMethods.html	/^				<a name="method-i-respond_to"><\/a>$/;"	a
-method-i-respond_to%3F	doc/api/ActiveModel/AttributeMethods.html	/^				<a name="method-i-respond_to%3F"><\/a>$/;"	a
-method-i-respond_to%3F	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-respond_to%3F"><\/a>$/;"	a
-method-i-respond_to%3F	doc/api/ActiveResource/Base.html	/^				<a name="method-i-respond_to%3F"><\/a>$/;"	a
-method-i-respond_to%3F	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-respond_to%3F"><\/a>$/;"	a
-method-i-respond_to%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-respond_to%3F"><\/a>$/;"	a
-method-i-respond_to_without_attributes%3F	doc/api/ActiveModel/AttributeMethods.html	/^				<a name="method-i-respond_to_without_attributes%3F"><\/a>$/;"	a
-method-i-respond_to_without_attributes%3F	doc/api/ActiveResource/Base.html	/^				<a name="method-i-respond_to_without_attributes%3F"><\/a>$/;"	a
-method-i-response_auth_header	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-response_auth_header"><\/a>$/;"	a
-method-i-response_body%3D	doc/api/ActionController/Metal.html	/^				<a name="method-i-response_body%3D"><\/a>$/;"	a
-method-i-response_body%3D	doc/api/ActionController/RackDelegation.html	/^				<a name="method-i-response_body%3D"><\/a>$/;"	a
-method-i-response_from_page_or_rjs	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-response_from_page_or_rjs"><\/a>$/;"	a
-method-i-restore_transaction_record_state	doc/api/ActiveRecord/Transactions.html	/^				<a name="method-i-restore_transaction_record_state"><\/a>$/;"	a
-method-i-retrieve_connection_pool	doc/api/ActiveRecord/ConnectionAdapters/ConnectionHandler.html	/^				<a name="method-i-retrieve_connection_pool"><\/a>$/;"	a
-method-i-returning	doc/api/Object.html	/^				<a name="method-i-returning"><\/a>$/;"	a
-method-i-reverse	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-reverse"><\/a>$/;"	a
-method-i-reverse_merge	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-reverse_merge"><\/a>$/;"	a
-method-i-reverse_merge%21	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-reverse_merge%21"><\/a>$/;"	a
-method-i-reverse_order	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-reverse_order"><\/a>$/;"	a
-method-i-reverse_sql_order	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-reverse_sql_order"><\/a>$/;"	a
-method-i-rewrite_asset_path	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-rewrite_asset_path"><\/a>$/;"	a
-method-i-rewrite_extension%3F	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-rewrite_extension%3F"><\/a>$/;"	a
-method-i-rewrite_host_and_protocol	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-rewrite_host_and_protocol"><\/a>$/;"	a
-method-i-rfc2822	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-rfc2822"><\/a>$/;"	a
-method-i-rfc822	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-rfc822"><\/a>$/;"	a
-method-i-rindex	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-rindex"><\/a>$/;"	a
-method-i-rjust	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-rjust"><\/a>$/;"	a
-method-i-rollback_active_record_state%21	doc/api/ActiveRecord/Transactions.html	/^				<a name="method-i-rollback_active_record_state%21"><\/a>$/;"	a
-method-i-rollback_db_transaction	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-rollback_db_transaction"><\/a>$/;"	a
-method-i-rollback_db_transaction	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-rollback_db_transaction"><\/a>$/;"	a
-method-i-rollback_to_savepoint	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-rollback_to_savepoint"><\/a>$/;"	a
-method-i-rollback_to_savepoint	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-rollback_to_savepoint"><\/a>$/;"	a
-method-i-rollback_to_savepoint	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-rollback_to_savepoint"><\/a>$/;"	a
-method-i-rollback_transaction_records	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-rollback_transaction_records"><\/a>$/;"	a
-method-i-round	doc/api/Float.html	/^				<a name="method-i-round"><\/a>$/;"	a
-method-i-rstrip	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-rstrip"><\/a>$/;"	a
-method-i-run	doc/api/ActiveSupport/Testing/Isolation/MiniTest.html	/^				<a name="method-i-run"><\/a>$/;"	a
-method-i-run	doc/api/ActiveSupport/Testing/Isolation/TestUnit.html	/^				<a name="method-i-run"><\/a>$/;"	a
-method-i-run	doc/api/ActiveSupport/Testing/Performance.html	/^				<a name="method-i-run"><\/a>$/;"	a
-method-i-run	doc/api/ActiveSupport/Testing/Performance/Benchmarker.html	/^				<a name="method-i-run"><\/a>$/;"	a
-method-i-run	doc/api/ActiveSupport/Testing/Performance/Profiler.html	/^				<a name="method-i-run"><\/a>$/;"	a
-method-i-run	doc/api/ActiveSupport/Testing/SetupAndTeardown/ForClassicTestUnit.html	/^				<a name="method-i-run"><\/a>$/;"	a
-method-i-run	doc/api/ActiveSupport/Testing/SetupAndTeardown/ForMiniTest.html	/^				<a name="method-i-run"><\/a>$/;"	a
-method-i-run_callbacks	doc/api/ActiveSupport/Callbacks.html	/^				<a name="method-i-run_callbacks"><\/a>$/;"	a
-method-i-run_in_isolation	doc/api/ActiveSupport/Testing/Isolation/Forking.html	/^				<a name="method-i-run_in_isolation"><\/a>$/;"	a
-method-i-run_in_isolation	doc/api/ActiveSupport/Testing/Isolation/Subprocess.html	/^				<a name="method-i-run_in_isolation"><\/a>$/;"	a
-method-i-run_in_transaction%3F	doc/api/ActiveRecord/TestFixtures.html	/^				<a name="method-i-run_in_transaction%3F"><\/a>$/;"	a
-method-i-run_profile	doc/api/ActiveSupport/Testing/Performance.html	/^				<a name="method-i-run_profile"><\/a>$/;"	a
-method-i-run_test	doc/api/ActiveSupport/Testing/Performance.html	/^				<a name="method-i-run_test"><\/a>$/;"	a
-method-i-run_validations%21	doc/api/ActiveModel/Validations.html	/^				<a name="method-i-run_validations%21"><\/a>$/;"	a
-method-i-run_validations%21	doc/api/ActiveModel/Validations/Callbacks.html	/^				<a name="method-i-run_validations%21"><\/a>$/;"	a
-method-i-run_warmup	doc/api/ActiveSupport/Testing/Performance.html	/^				<a name="method-i-run_warmup"><\/a>$/;"	a
-method-i-safe_concat	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-safe_concat"><\/a>$/;"	a
-method-i-safe_concat	doc/api/ActiveSupport/SafeBuffer.html	/^				<a name="method-i-safe_concat"><\/a>$/;"	a
-method-i-sanitize	doc/api/ActionView/Helpers/SanitizeHelper.html	/^				<a name="method-i-sanitize"><\/a>$/;"	a
-method-i-sanitize	doc/api/ActiveModel/MassAssignmentSecurity/Sanitizer.html	/^				<a name="method-i-sanitize"><\/a>$/;"	a
-method-i-sanitize	doc/api/HTML/FullSanitizer.html	/^				<a name="method-i-sanitize"><\/a>$/;"	a
-method-i-sanitize	doc/api/HTML/Sanitizer.html	/^				<a name="method-i-sanitize"><\/a>$/;"	a
-method-i-sanitize_css	doc/api/ActionView/Helpers/SanitizeHelper.html	/^				<a name="method-i-sanitize_css"><\/a>$/;"	a
-method-i-sanitize_css	doc/api/HTML/WhiteListSanitizer.html	/^				<a name="method-i-sanitize_css"><\/a>$/;"	a
-method-i-sanitize_for_mass_assignment	doc/api/ActiveModel/MassAssignmentSecurity.html	/^				<a name="method-i-sanitize_for_mass_assignment"><\/a>$/;"	a
-method-i-sanitize_limit	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-sanitize_limit"><\/a>$/;"	a
-method-i-sanitize_to_id	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-sanitize_to_id"><\/a>$/;"	a
-method-i-sanitizeable%3F	doc/api/HTML/LinkSanitizer.html	/^				<a name="method-i-sanitizeable%3F"><\/a>$/;"	a
-method-i-sanitizeable%3F	doc/api/HTML/Sanitizer.html	/^				<a name="method-i-sanitizeable%3F"><\/a>$/;"	a
-method-i-save	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-save"><\/a>$/;"	a
-method-i-save	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="method-i-save"><\/a>$/;"	a
-method-i-save	doc/api/ActiveRecord/Validations.html	/^				<a name="method-i-save"><\/a>$/;"	a
-method-i-save	doc/api/ActiveResource/Base.html	/^				<a name="method-i-save"><\/a>$/;"	a
-method-i-save%21	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-save%21"><\/a>$/;"	a
-method-i-save%21	doc/api/ActiveRecord/Validations.html	/^				<a name="method-i-save%21"><\/a>$/;"	a
-method-i-save%21	doc/api/ActiveResource/Base.html	/^				<a name="method-i-save%21"><\/a>$/;"	a
-method-i-save_belongs_to_association	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-save_belongs_to_association"><\/a>$/;"	a
-method-i-save_collection_association	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-save_collection_association"><\/a>$/;"	a
-method-i-save_has_one_association	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-save_has_one_association"><\/a>$/;"	a
-method-i-save_with_validation	doc/api/ActiveResource/Validations.html	/^				<a name="method-i-save_with_validation"><\/a>$/;"	a
-method-i-say_no_to_protect_against_forgery%21	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-say_no_to_protect_against_forgery%21"><\/a>$/;"	a
-method-i-schema	doc/api/ActiveResource/Base.html	/^				<a name="method-i-schema"><\/a>$/;"	a
-method-i-schema_search_path	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-schema_search_path"><\/a>$/;"	a
-method-i-schema_search_path%3D	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-schema_search_path%3D"><\/a>$/;"	a
-method-i-scope	doc/api/ActiveRecord/NamedScope/ClassMethods.html	/^				<a name="method-i-scope"><\/a>$/;"	a
-method-i-scope_for_create	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-scope_for_create"><\/a>$/;"	a
-method-i-scope_key_by_partial	doc/api/ActionView/Helpers/TranslationHelper.html	/^				<a name="method-i-scope_key_by_partial"><\/a>$/;"	a
-method-i-scoped	doc/api/ActiveRecord/NamedScope/ClassMethods.html	/^				<a name="method-i-scoped"><\/a>$/;"	a
-method-i-scopes	doc/api/ActiveRecord/NamedScope/ClassMethods.html	/^				<a name="method-i-scopes"><\/a>$/;"	a
-method-i-scoping	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-scoping"><\/a>$/;"	a
-method-i-search_dir	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-search_dir"><\/a>$/;"	a
-method-i-search_field	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-search_field"><\/a>$/;"	a
-method-i-search_field_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-search_field_tag"><\/a>$/;"	a
-method-i-seconds_since_midnight	doc/api/DateTime.html	/^				<a name="method-i-seconds_since_midnight"><\/a>$/;"	a
-method-i-seconds_since_midnight	doc/api/Time.html	/^				<a name="method-i-seconds_since_midnight"><\/a>$/;"	a
-method-i-seconds_since_unix_epoch	doc/api/DateTime.html	/^				<a name="method-i-seconds_since_unix_epoch"><\/a>$/;"	a
-method-i-secret_token	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-secret_token"><\/a>$/;"	a
-method-i-secure_compare	doc/api/ActiveSupport/MessageVerifier.html	/^				<a name="method-i-secure_compare"><\/a>$/;"	a
-method-i-select	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-select"><\/a>$/;"	a
-method-i-select	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-select"><\/a>$/;"	a
-method-i-select	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-select"><\/a>$/;"	a
-method-i-select	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-select"><\/a>$/;"	a
-method-i-select	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-select"><\/a>$/;"	a
-method-i-select	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-select"><\/a>$/;"	a
-method-i-select	doc/api/HTML/Selector.html	/^				<a name="method-i-select"><\/a>$/;"	a
-method-i-select_all	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-select_all"><\/a>$/;"	a
-method-i-select_all	doc/api/ActiveRecord/ConnectionAdapters/QueryCache.html	/^				<a name="method-i-select_all"><\/a>$/;"	a
-method-i-select_date	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-select_date"><\/a>$/;"	a
-method-i-select_datetime	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-select_datetime"><\/a>$/;"	a
-method-i-select_day	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-select_day"><\/a>$/;"	a
-method-i-select_first	doc/api/HTML/Selector.html	/^				<a name="method-i-select_first"><\/a>$/;"	a
-method-i-select_for_count	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-select_for_count"><\/a>$/;"	a
-method-i-select_hour	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-select_hour"><\/a>$/;"	a
-method-i-select_minute	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-select_minute"><\/a>$/;"	a
-method-i-select_month	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-select_month"><\/a>$/;"	a
-method-i-select_one	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-select_one"><\/a>$/;"	a
-method-i-select_raw	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-select_raw"><\/a>$/;"	a
-method-i-select_rows	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-select_rows"><\/a>$/;"	a
-method-i-select_rows	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-select_rows"><\/a>$/;"	a
-method-i-select_rows	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-select_rows"><\/a>$/;"	a
-method-i-select_rows	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-select_rows"><\/a>$/;"	a
-method-i-select_second	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-select_second"><\/a>$/;"	a
-method-i-select_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-select_tag"><\/a>$/;"	a
-method-i-select_time	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-select_time"><\/a>$/;"	a
-method-i-select_value	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-select_value"><\/a>$/;"	a
-method-i-select_values	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-select_values"><\/a>$/;"	a
-method-i-select_year	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-select_year"><\/a>$/;"	a
-method-i-send_action	doc/api/ActionController/ImplicitRender.html	/^				<a name="method-i-send_action"><\/a>$/;"	a
-method-i-send_data	doc/api/ActionController/Instrumentation.html	/^				<a name="method-i-send_data"><\/a>$/;"	a
-method-i-send_data	doc/api/ActionController/LogSubscriber.html	/^				<a name="method-i-send_data"><\/a>$/;"	a
-method-i-send_data	doc/api/ActionController/Streaming.html	/^				<a name="method-i-send_data"><\/a>$/;"	a
-method-i-send_file	doc/api/ActionController/Instrumentation.html	/^				<a name="method-i-send_file"><\/a>$/;"	a
-method-i-send_file	doc/api/ActionController/LogSubscriber.html	/^				<a name="method-i-send_file"><\/a>$/;"	a
-method-i-send_file	doc/api/ActionController/Streaming.html	/^				<a name="method-i-send_file"><\/a>$/;"	a
-method-i-send_file_headers%21	doc/api/ActionController/Streaming.html	/^				<a name="method-i-send_file_headers%21"><\/a>$/;"	a
-method-i-serializable_add_includes	doc/api/ActiveRecord/Serialization.html	/^				<a name="method-i-serializable_add_includes"><\/a>$/;"	a
-method-i-serializable_hash	doc/api/ActiveModel/Serialization.html	/^				<a name="method-i-serializable_hash"><\/a>$/;"	a
-method-i-serializable_hash	doc/api/ActiveRecord/Serialization.html	/^				<a name="method-i-serializable_hash"><\/a>$/;"	a
-method-i-set	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-set"><\/a>$/;"	a
-method-i-set_association_collection_records	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-set_association_collection_records"><\/a>$/;"	a
-method-i-set_association_single_records	doc/api/ActiveRecord/AssociationPreload/ClassMethods.html	/^				<a name="method-i-set_association_single_records"><\/a>$/;"	a
-method-i-set_callback	doc/api/ActiveSupport/Callbacks/ClassMethods.html	/^				<a name="method-i-set_callback"><\/a>$/;"	a
-method-i-set_content_type	doc/api/ActionMailer/Base.html	/^				<a name="method-i-set_content_type"><\/a>$/;"	a
-method-i-set_cycle	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-set_cycle"><\/a>$/;"	a
-method-i-set_fixture_class	doc/api/ActiveRecord/TestFixtures/ClassMethods.html	/^				<a name="method-i-set_fixture_class"><\/a>$/;"	a
-method-i-set_locking_column	doc/api/ActiveRecord/Locking/Optimistic/ClassMethods.html	/^				<a name="method-i-set_locking_column"><\/a>$/;"	a
-method-i-set_logger	doc/api/ActiveSupport/LogSubscriber/TestHelper.html	/^				<a name="method-i-set_logger"><\/a>$/;"	a
-method-i-set_primary_key	doc/api/ActiveRecord/AttributeMethods/PrimaryKey/ClassMethods.html	/^				<a name="method-i-set_primary_key"><\/a>$/;"	a
-method-i-set_session	doc/api/ActiveRecord/SessionStore.html	/^				<a name="method-i-set_session"><\/a>$/;"	a
-method-i-set_standard_conforming_strings	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-set_standard_conforming_strings"><\/a>$/;"	a
-method-i-set_test_assigns	doc/api/ActionController/Testing.html	/^				<a name="method-i-set_test_assigns"><\/a>$/;"	a
-method-i-setup	doc/api/ActiveModel/Validations/AcceptanceValidator.html	/^				<a name="method-i-setup"><\/a>$/;"	a
-method-i-setup	doc/api/ActiveModel/Validations/ConfirmationValidator.html	/^				<a name="method-i-setup"><\/a>$/;"	a
-method-i-setup	doc/api/ActiveRecord/Validations/UniquenessValidator.html	/^				<a name="method-i-setup"><\/a>$/;"	a
-method-i-setup	doc/api/ActiveSupport/LogSubscriber/TestHelper.html	/^				<a name="method-i-setup"><\/a>$/;"	a
-method-i-setup	doc/api/ActiveSupport/Testing/SetupAndTeardown/ClassMethods.html	/^				<a name="method-i-setup"><\/a>$/;"	a
-method-i-setup_controller_request_and_response	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="method-i-setup_controller_request_and_response"><\/a>$/;"	a
-method-i-setup_fixture_accessors	doc/api/ActiveRecord/TestFixtures/ClassMethods.html	/^				<a name="method-i-setup_fixture_accessors"><\/a>$/;"	a
-method-i-setup_fixtures	doc/api/ActiveRecord/TestFixtures.html	/^				<a name="method-i-setup_fixtures"><\/a>$/;"	a
-method-i-setup_subscriptions	doc/api/ActionController/TemplateAssertions.html	/^				<a name="method-i-setup_subscriptions"><\/a>$/;"	a
-method-i-setup_with_controller	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-setup_with_controller"><\/a>$/;"	a
-method-i-should_compress%3F	doc/api/ActiveSupport/Cache/Entry.html	/^				<a name="method-i-should_compress%3F"><\/a>$/;"	a
-method-i-should_record_timestamps%3F	doc/api/ActiveRecord/Timestamp.html	/^				<a name="method-i-should_record_timestamps%3F"><\/a>$/;"	a
-method-i-show	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-show"><\/a>$/;"	a
-method-i-show_variable	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-show_variable"><\/a>$/;"	a
-method-i-silence	doc/api/ActiveSupport/BacktraceCleaner.html	/^				<a name="method-i-silence"><\/a>$/;"	a
-method-i-silence	doc/api/ActiveSupport/BufferedLogger.html	/^				<a name="method-i-silence"><\/a>$/;"	a
-method-i-silence%21	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-silence%21"><\/a>$/;"	a
-method-i-silence_stream	doc/api/Kernel.html	/^				<a name="method-i-silence_stream"><\/a>$/;"	a
-method-i-silence_warnings	doc/api/Kernel.html	/^				<a name="method-i-silence_warnings"><\/a>$/;"	a
-method-i-simple_format	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-simple_format"><\/a>$/;"	a
-method-i-simple_selector	doc/api/HTML/Selector.html	/^				<a name="method-i-simple_selector"><\/a>$/;"	a
-method-i-simplified_type	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-i-simplified_type"><\/a>$/;"	a
-method-i-simplified_type	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLColumn.html	/^				<a name="method-i-simplified_type"><\/a>$/;"	a
-method-i-since	doc/api/ActiveSupport/Duration.html	/^				<a name="method-i-since"><\/a>$/;"	a
-method-i-since	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-since"><\/a>$/;"	a
-method-i-since	doc/api/DateTime.html	/^				<a name="method-i-since"><\/a>$/;"	a
-method-i-since	doc/api/Time.html	/^				<a name="method-i-since"><\/a>$/;"	a
-method-i-singleton_class	doc/api/Kernel.html	/^				<a name="method-i-singleton_class"><\/a>$/;"	a
-method-i-singular	doc/api/ActiveSupport/Inflector/Inflections.html	/^				<a name="method-i-singular"><\/a>$/;"	a
-method-i-singularize	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-singularize"><\/a>$/;"	a
-method-i-site%3D	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-site%3D"><\/a>$/;"	a
-method-i-size	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-size"><\/a>$/;"	a
-method-i-size	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-size"><\/a>$/;"	a
-method-i-size	doc/api/ActiveSupport/Cache/Entry.html	/^				<a name="method-i-size"><\/a>$/;"	a
-method-i-size	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-size"><\/a>$/;"	a
-method-i-skip_callback	doc/api/ActiveSupport/Callbacks/ClassMethods.html	/^				<a name="method-i-skip_callback"><\/a>$/;"	a
-method-i-skip_default_locale%21	doc/api/ActionView/LookupContext/Details.html	/^				<a name="method-i-skip_default_locale%21"><\/a>$/;"	a
-method-i-slice	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-slice"><\/a>$/;"	a
-method-i-sortable	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-sortable"><\/a>$/;"	a
-method-i-sortable_element	doc/api/ActionView/Helpers/ScriptaculousHelper.html	/^				<a name="method-i-sortable_element"><\/a>$/;"	a
-method-i-split	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-split"><\/a>$/;"	a
-method-i-split_options	doc/api/ActiveResource/Base.html	/^				<a name="method-i-split_options"><\/a>$/;"	a
-method-i-sql	doc/api/ActiveRecord/LogSubscriber.html	/^				<a name="method-i-sql"><\/a>$/;"	a
-method-i-sql_conditions	doc/api/ActiveRecord/Associations/ThroughAssociationScope.html	/^				<a name="method-i-sql_conditions"><\/a>$/;"	a
-method-i-sql_query_length	doc/api/ActiveRecord/ConnectionAdapters/DatabaseLimits.html	/^				<a name="method-i-sql_query_length"><\/a>$/;"	a
-method-i-sqlite_version	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-sqlite_version"><\/a>$/;"	a
-method-i-ssl_options%3D	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-ssl_options%3D"><\/a>$/;"	a
-method-i-stale%3F	doc/api/ActionController/ConditionalGet.html	/^				<a name="method-i-stale%3F"><\/a>$/;"	a
-method-i-start	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="method-i-start"><\/a>$/;"	a
-method-i-start_document	doc/api/ActiveSupport/XmlMini_NokogiriSAX/HashBuilder.html	/^				<a name="method-i-start_document"><\/a>$/;"	a
-method-i-start_element	doc/api/ActiveSupport/XmlMini_NokogiriSAX/HashBuilder.html	/^				<a name="method-i-start_element"><\/a>$/;"	a
-method-i-start_processing	doc/api/ActionController/LogSubscriber.html	/^				<a name="method-i-start_processing"><\/a>$/;"	a
-method-i-stats	doc/api/ActiveSupport/Cache/MemCacheStore.html	/^				<a name="method-i-stats"><\/a>$/;"	a
-method-i-status	doc/api/ActionController/Metal.html	/^				<a name="method-i-status"><\/a>$/;"	a
-method-i-status%3D	doc/api/ActionController/Metal.html	/^				<a name="method-i-status%3D"><\/a>$/;"	a
-method-i-store	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-store"><\/a>$/;"	a
-method-i-strftime	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-strftime"><\/a>$/;"	a
-method-i-stringify_keys	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-stringify_keys"><\/a>$/;"	a
-method-i-stringify_keys%21	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-stringify_keys%21"><\/a>$/;"	a
-method-i-strip	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-strip"><\/a>$/;"	a
-method-i-strip_links	doc/api/ActionView/Helpers/SanitizeHelper.html	/^				<a name="method-i-strip_links"><\/a>$/;"	a
-method-i-strip_tags	doc/api/ActionView/Helpers/SanitizeHelper.html	/^				<a name="method-i-strip_tags"><\/a>$/;"	a
-method-i-structure_dump	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-structure_dump"><\/a>$/;"	a
-method-i-stylesheet_link_tag	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-stylesheet_link_tag"><\/a>$/;"	a
-method-i-stylesheet_path	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-stylesheet_path"><\/a>$/;"	a
-method-i-stylesheet_tag	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-stylesheet_tag"><\/a>$/;"	a
-method-i-submit_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-submit_tag"><\/a>$/;"	a
-method-i-subscribe	doc/api/ActiveSupport/Notifications/Fanout.html	/^				<a name="method-i-subscribe"><\/a>$/;"	a
-method-i-success%3F	doc/api/ActiveResource/Response.html	/^				<a name="method-i-success%3F"><\/a>$/;"	a
-method-i-sum	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-sum"><\/a>$/;"	a
-method-i-sum	doc/api/Enumerable.html	/^				<a name="method-i-sum"><\/a>$/;"	a
-method-i-supports_add_column%3F	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-supports_add_column%3F"><\/a>$/;"	a
-method-i-supports_count_distinct%3F	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-supports_count_distinct%3F"><\/a>$/;"	a
-method-i-supports_ddl_transactions%3F	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-supports_ddl_transactions%3F"><\/a>$/;"	a
-method-i-supports_ddl_transactions%3F	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-supports_ddl_transactions%3F"><\/a>$/;"	a
-method-i-supports_ddl_transactions%3F	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-supports_ddl_transactions%3F"><\/a>$/;"	a
-method-i-supports_insert_with_returning%3F	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-supports_insert_with_returning%3F"><\/a>$/;"	a
-method-i-supports_migrations%3F	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-supports_migrations%3F"><\/a>$/;"	a
-method-i-supports_migrations%3F	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-supports_migrations%3F"><\/a>$/;"	a
-method-i-supports_primary_key%3F	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-supports_primary_key%3F"><\/a>$/;"	a
-method-i-supports_savepoints%3F	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-supports_savepoints%3F"><\/a>$/;"	a
-method-i-supports_savepoints%3F	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-supports_savepoints%3F"><\/a>$/;"	a
-method-i-supports_views%3F	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-supports_views%3F"><\/a>$/;"	a
-method-i-suppress	doc/api/Kernel.html	/^				<a name="method-i-suppress"><\/a>$/;"	a
-method-i-symbolize_keys	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-symbolize_keys"><\/a>$/;"	a
-method-i-t	doc/api/ActionView/Helpers/TranslationHelper.html	/^				<a name="method-i-t"><\/a>$/;"	a
-method-i-table_alias_for	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-table_alias_for"><\/a>$/;"	a
-method-i-table_alias_length	doc/api/ActiveRecord/ConnectionAdapters/DatabaseLimits.html	/^				<a name="method-i-table_alias_length"><\/a>$/;"	a
-method-i-table_alias_length	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-table_alias_length"><\/a>$/;"	a
-method-i-table_exists%3F	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-table_exists%3F"><\/a>$/;"	a
-method-i-table_exists%3F	doc/api/ActiveRecord/ConnectionAdapters/SchemaStatements.html	/^				<a name="method-i-table_exists%3F"><\/a>$/;"	a
-method-i-table_name_length	doc/api/ActiveRecord/ConnectionAdapters/DatabaseLimits.html	/^				<a name="method-i-table_name_length"><\/a>$/;"	a
-method-i-table_structure	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-table_structure"><\/a>$/;"	a
-method-i-tableize	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-tableize"><\/a>$/;"	a
-method-i-tables	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-tables"><\/a>$/;"	a
-method-i-tables_in_string	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-tables_in_string"><\/a>$/;"	a
-method-i-tag	doc/api/ActionView/Helpers/ActiveModelInstanceTag.html	/^				<a name="method-i-tag"><\/a>$/;"	a
-method-i-tag	doc/api/ActionView/Helpers/TagHelper.html	/^				<a name="method-i-tag"><\/a>$/;"	a
-method-i-tag_generate_errors%3F	doc/api/ActionView/Helpers/ActiveModelInstanceTag.html	/^				<a name="method-i-tag_generate_errors%3F"><\/a>$/;"	a
-method-i-tag_options	doc/api/ActionView/Helpers/TagHelper.html	/^				<a name="method-i-tag_options"><\/a>$/;"	a
-method-i-teardown	doc/api/ActiveSupport/LogSubscriber/TestHelper.html	/^				<a name="method-i-teardown"><\/a>$/;"	a
-method-i-teardown	doc/api/ActiveSupport/Testing/SetupAndTeardown/ClassMethods.html	/^				<a name="method-i-teardown"><\/a>$/;"	a
-method-i-teardown_fixtures	doc/api/ActiveRecord/TestFixtures.html	/^				<a name="method-i-teardown_fixtures"><\/a>$/;"	a
-method-i-teardown_subscriptions	doc/api/ActionController/TemplateAssertions.html	/^				<a name="method-i-teardown_subscriptions"><\/a>$/;"	a
-method-i-telephone_field	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-telephone_field"><\/a>$/;"	a
-method-i-telephone_field_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-telephone_field_tag"><\/a>$/;"	a
-method-i-template_exists%3F	doc/api/ActionView/LookupContext/ViewPaths.html	/^				<a name="method-i-template_exists%3F"><\/a>$/;"	a
-method-i-test	doc/api/ActiveSupport/Testing/Declarative.html	/^				<a name="method-i-test"><\/a>$/;"	a
-method-i-test_errors_aref	doc/api/ActiveModel/Lint/Tests.html	/^				<a name="method-i-test_errors_aref"><\/a>$/;"	a
-method-i-test_errors_full_messages	doc/api/ActiveModel/Lint/Tests.html	/^				<a name="method-i-test_errors_full_messages"><\/a>$/;"	a
-method-i-test_model_naming	doc/api/ActiveModel/Lint/Tests.html	/^				<a name="method-i-test_model_naming"><\/a>$/;"	a
-method-i-test_persisted%3F	doc/api/ActiveModel/Lint/Tests.html	/^				<a name="method-i-test_persisted%3F"><\/a>$/;"	a
-method-i-test_to_key	doc/api/ActiveModel/Lint/Tests.html	/^				<a name="method-i-test_to_key"><\/a>$/;"	a
-method-i-test_to_param	doc/api/ActiveModel/Lint/Tests.html	/^				<a name="method-i-test_to_param"><\/a>$/;"	a
-method-i-test_valid%3F	doc/api/ActiveModel/Lint/Tests.html	/^				<a name="method-i-test_valid%3F"><\/a>$/;"	a
-method-i-tests	doc/api/ActionController/TestCase/Behavior/ClassMethods.html	/^				<a name="method-i-tests"><\/a>$/;"	a
-method-i-tests	doc/api/ActionView/TestCase/Behavior/ClassMethods.html	/^				<a name="method-i-tests"><\/a>$/;"	a
-method-i-text%3F	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-i-text%3F"><\/a>$/;"	a
-method-i-text_area	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-text_area"><\/a>$/;"	a
-method-i-text_area_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-text_area_tag"><\/a>$/;"	a
-method-i-text_field	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-text_field"><\/a>$/;"	a
-method-i-text_field_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-text_field_tag"><\/a>$/;"	a
-method-i-thread_local_key	doc/api/ActiveSupport/Cache/Strategy/LocalCache.html	/^				<a name="method-i-thread_local_key"><\/a>$/;"	a
-method-i-tidy_byte	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="method-i-tidy_byte"><\/a>$/;"	a
-method-i-tidy_bytes	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-tidy_bytes"><\/a>$/;"	a
-method-i-tidy_bytes	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="method-i-tidy_bytes"><\/a>$/;"	a
-method-i-time	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-time"><\/a>$/;"	a
-method-i-time_ago_in_words	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-time_ago_in_words"><\/a>$/;"	a
-method-i-time_select	doc/api/ActionView/Helpers/DateHelper.html	/^				<a name="method-i-time_select"><\/a>$/;"	a
-method-i-time_zone_options_for_select	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-time_zone_options_for_select"><\/a>$/;"	a
-method-i-time_zone_select	doc/api/ActionView/Helpers/FormOptionsHelper.html	/^				<a name="method-i-time_zone_select"><\/a>$/;"	a
-method-i-timeout%3D	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-timeout%3D"><\/a>$/;"	a
-method-i-timestamp_attributes_for_update_in_model	doc/api/ActiveRecord/Timestamp.html	/^				<a name="method-i-timestamp_attributes_for_update_in_model"><\/a>$/;"	a
-method-i-timestamp_column_names	doc/api/Fixtures.html	/^				<a name="method-i-timestamp_column_names"><\/a>$/;"	a
-method-i-timestamps	doc/api/ActiveRecord/ConnectionAdapters/Table.html	/^				<a name="method-i-timestamps"><\/a>$/;"	a
-method-i-timestamps	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="method-i-timestamps"><\/a>$/;"	a
-method-i-titlecase	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-titlecase"><\/a>$/;"	a
-method-i-titleize	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-titleize"><\/a>$/;"	a
-method-i-titleize	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-titleize"><\/a>$/;"	a
-method-i-to_a	doc/api/ActionController/Metal.html	/^				<a name="method-i-to_a"><\/a>$/;"	a
-method-i-to_a	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-to_a"><\/a>$/;"	a
-method-i-to_a	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-to_a"><\/a>$/;"	a
-method-i-to_a	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-to_a"><\/a>$/;"	a
-method-i-to_date	doc/api/DateTime.html	/^				<a name="method-i-to_date"><\/a>$/;"	a
-method-i-to_date	doc/api/Time.html	/^				<a name="method-i-to_date"><\/a>$/;"	a
-method-i-to_datetime	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-to_datetime"><\/a>$/;"	a
-method-i-to_datetime	doc/api/DateTime.html	/^				<a name="method-i-to_datetime"><\/a>$/;"	a
-method-i-to_datetime	doc/api/Time.html	/^				<a name="method-i-to_datetime"><\/a>$/;"	a
-method-i-to_default_s	doc/api/DateTime.html	/^				<a name="method-i-to_default_s"><\/a>$/;"	a
-method-i-to_default_s	doc/api/Time.html	/^				<a name="method-i-to_default_s"><\/a>$/;"	a
-method-i-to_f	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-to_f"><\/a>$/;"	a
-method-i-to_f	doc/api/DateTime.html	/^				<a name="method-i-to_f"><\/a>$/;"	a
-method-i-to_format	doc/api/ActionController/Responder.html	/^				<a name="method-i-to_format"><\/a>$/;"	a
-method-i-to_formatted_s	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-to_formatted_s"><\/a>$/;"	a
-method-i-to_formatted_s	doc/api/BigDecimal.html	/^				<a name="method-i-to_formatted_s"><\/a>$/;"	a
-method-i-to_formatted_s	doc/api/DateTime.html	/^				<a name="method-i-to_formatted_s"><\/a>$/;"	a
-method-i-to_formatted_s	doc/api/Time.html	/^				<a name="method-i-to_formatted_s"><\/a>$/;"	a
-method-i-to_hash	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-to_hash"><\/a>$/;"	a
-method-i-to_html	doc/api/ActionController/Responder.html	/^				<a name="method-i-to_html"><\/a>$/;"	a
-method-i-to_i	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-to_i"><\/a>$/;"	a
-method-i-to_i	doc/api/DateTime.html	/^				<a name="method-i-to_i"><\/a>$/;"	a
-method-i-to_json	doc/api/ActiveResource/Base.html	/^				<a name="method-i-to_json"><\/a>$/;"	a
-method-i-to_key	doc/api/ActiveModel/Conversion.html	/^				<a name="method-i-to_key"><\/a>$/;"	a
-method-i-to_key	doc/api/ActiveRecord/AttributeMethods/PrimaryKey.html	/^				<a name="method-i-to_key"><\/a>$/;"	a
-method-i-to_model	doc/api/ActiveModel/Conversion.html	/^				<a name="method-i-to_model"><\/a>$/;"	a
-method-i-to_options%21	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-to_options%21"><\/a>$/;"	a
-method-i-to_param	doc/api/ActiveModel/Conversion.html	/^				<a name="method-i-to_param"><\/a>$/;"	a
-method-i-to_param	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-to_param"><\/a>$/;"	a
-method-i-to_param	doc/api/Object.html	/^				<a name="method-i-to_param"><\/a>$/;"	a
-method-i-to_path	doc/api/ActionView/PathResolver.html	/^				<a name="method-i-to_path"><\/a>$/;"	a
-method-i-to_query	doc/api/Object.html	/^				<a name="method-i-to_query"><\/a>$/;"	a
-method-i-to_s	doc/api/ActionView/PathResolver.html	/^				<a name="method-i-to_s"><\/a>$/;"	a
-method-i-to_s	doc/api/ActiveResource/Request.html	/^				<a name="method-i-to_s"><\/a>$/;"	a
-method-i-to_s	doc/api/ActiveResource/SSLError.html	/^				<a name="method-i-to_s"><\/a>$/;"	a
-method-i-to_s	doc/api/ActiveResource/TimeoutError.html	/^				<a name="method-i-to_s"><\/a>$/;"	a
-method-i-to_s	doc/api/ActiveSupport/SafeBuffer.html	/^				<a name="method-i-to_s"><\/a>$/;"	a
-method-i-to_s	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-to_s"><\/a>$/;"	a
-method-i-to_s	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-to_s"><\/a>$/;"	a
-method-i-to_s	doc/api/BigDecimal.html	/^				<a name="method-i-to_s"><\/a>$/;"	a
-method-i-to_s	doc/api/DateTime.html	/^				<a name="method-i-to_s"><\/a>$/;"	a
-method-i-to_s	doc/api/Time.html	/^				<a name="method-i-to_s"><\/a>$/;"	a
-method-i-to_sql	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="method-i-to_sql"><\/a>$/;"	a
-method-i-to_sql	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-to_sql"><\/a>$/;"	a
-method-i-to_tag	doc/api/ActiveSupport/XmlMini.html	/^				<a name="method-i-to_tag"><\/a>$/;"	a
-method-i-to_time	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-to_time"><\/a>$/;"	a
-method-i-to_time	doc/api/DateTime.html	/^				<a name="method-i-to_time"><\/a>$/;"	a
-method-i-to_time	doc/api/Time.html	/^				<a name="method-i-to_time"><\/a>$/;"	a
-method-i-to_xml	doc/api/ActiveModel/Errors.html	/^				<a name="method-i-to_xml"><\/a>$/;"	a
-method-i-to_xml	doc/api/ActiveModel/Serializers/Xml.html	/^				<a name="method-i-to_xml"><\/a>$/;"	a
-method-i-to_xml	doc/api/ActiveRecord/Serialization.html	/^				<a name="method-i-to_xml"><\/a>$/;"	a
-method-i-to_xml	doc/api/ActiveResource/Base.html	/^				<a name="method-i-to_xml"><\/a>$/;"	a
-method-i-to_yaml	doc/api/ActiveSupport/SafeBuffer.html	/^				<a name="method-i-to_yaml"><\/a>$/;"	a
-method-i-to_yaml	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-to_yaml"><\/a>$/;"	a
-method-i-to_yaml	doc/api/BigDecimal.html	/^				<a name="method-i-to_yaml"><\/a>$/;"	a
-method-i-today	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-today"><\/a>$/;"	a
-method-i-today%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-today%3F"><\/a>$/;"	a
-method-i-today%3F	doc/api/Time.html	/^				<a name="method-i-today%3F"><\/a>$/;"	a
-method-i-toggle	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-toggle"><\/a>$/;"	a
-method-i-toggle	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-toggle"><\/a>$/;"	a
-method-i-toggle%21	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-toggle%21"><\/a>$/;"	a
-method-i-token_and_options	doc/api/ActionController/HttpAuthentication/Token.html	/^				<a name="method-i-token_and_options"><\/a>$/;"	a
-method-i-token_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-token_tag"><\/a>$/;"	a
-method-i-tokenize	doc/api/HTML/Sanitizer.html	/^				<a name="method-i-tokenize"><\/a>$/;"	a
-method-i-tokenize	doc/api/HTML/WhiteListSanitizer.html	/^				<a name="method-i-tokenize"><\/a>$/;"	a
-method-i-tomorrow	doc/api/Time.html	/^				<a name="method-i-tomorrow"><\/a>$/;"	a
-method-i-touch	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-touch"><\/a>$/;"	a
-method-i-transaction	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-transaction"><\/a>$/;"	a
-method-i-transaction	doc/api/ActiveRecord/Transactions.html	/^				<a name="method-i-transaction"><\/a>$/;"	a
-method-i-transaction	doc/api/ActiveRecord/Transactions/ClassMethods.html	/^				<a name="method-i-transaction"><\/a>$/;"	a
-method-i-transaction_include_action%3F	doc/api/ActiveRecord/Transactions.html	/^				<a name="method-i-transaction_include_action%3F"><\/a>$/;"	a
-method-i-transaction_joinable%3D	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-transaction_joinable%3D"><\/a>$/;"	a
-method-i-transaction_record_state	doc/api/ActiveRecord/Transactions.html	/^				<a name="method-i-transaction_record_state"><\/a>$/;"	a
-method-i-transfer_time_values_to_utc_constructor	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-transfer_time_values_to_utc_constructor"><\/a>$/;"	a
-method-i-translate	doc/api/ActionView/Helpers/TranslationHelper.html	/^				<a name="method-i-translate"><\/a>$/;"	a
-method-i-translate_exception	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-translate_exception"><\/a>$/;"	a
-method-i-translate_exception	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-translate_exception"><\/a>$/;"	a
-method-i-translate_exception	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-translate_exception"><\/a>$/;"	a
-method-i-translate_exception	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-translate_exception"><\/a>$/;"	a
-method-i-transliterate	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-transliterate"><\/a>$/;"	a
-method-i-truncate	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-truncate"><\/a>$/;"	a
-method-i-try	doc/api/Object.html	/^				<a name="method-i-try"><\/a>$/;"	a
-method-i-try_to_load_dependency	doc/api/ActiveRecord/TestFixtures/ClassMethods.html	/^				<a name="method-i-try_to_load_dependency"><\/a>$/;"	a
-method-i-tv_sec	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-tv_sec"><\/a>$/;"	a
-method-i-type_cast	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-i-type_cast"><\/a>$/;"	a
-method-i-type_cast_attribute_value	doc/api/ActiveRecord/Base.html	/^				<a name="method-i-type_cast_attribute_value"><\/a>$/;"	a
-method-i-type_cast_calculated_value	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-type_cast_calculated_value"><\/a>$/;"	a
-method-i-type_cast_code	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="method-i-type_cast_code"><\/a>$/;"	a
-method-i-type_cast_using_column	doc/api/ActiveRecord/Calculations.html	/^				<a name="method-i-type_cast_using_column"><\/a>$/;"	a
-method-i-type_to_sql	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-type_to_sql"><\/a>$/;"	a
-method-i-type_to_sql	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-type_to_sql"><\/a>$/;"	a
-method-i-u_unpack	doc/api/ActiveSupport/Multibyte/Unicode.html	/^				<a name="method-i-u_unpack"><\/a>$/;"	a
-method-i-uncached	doc/api/ActiveRecord/ConnectionAdapters/QueryCache.html	/^				<a name="method-i-uncached"><\/a>$/;"	a
-method-i-uncached	doc/api/ActiveRecord/QueryCache/ClassMethods.html	/^				<a name="method-i-uncached"><\/a>$/;"	a
-method-i-uncountable	doc/api/ActiveSupport/Inflector/Inflections.html	/^				<a name="method-i-uncountable"><\/a>$/;"	a
-method-i-undefine_attribute_methods	doc/api/ActiveModel/AttributeMethods/ClassMethods.html	/^				<a name="method-i-undefine_attribute_methods"><\/a>$/;"	a
-method-i-underscore	doc/api/ActiveSupport/Inflector.html	/^				<a name="method-i-underscore"><\/a>$/;"	a
-method-i-unescape	doc/api/Object.html	/^				<a name="method-i-unescape"><\/a>$/;"	a
-method-i-unescape_bytea	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-unescape_bytea"><\/a>$/;"	a
-method-i-unique_id	doc/api/ActiveSupport/Notifications/Instrumenter.html	/^				<a name="method-i-unique_id"><\/a>$/;"	a
-method-i-unmemoize_all	doc/api/ActiveSupport/Memoizable/InstanceMethods.html	/^				<a name="method-i-unmemoize_all"><\/a>$/;"	a
-method-i-unserializable_attribute%3F	doc/api/ActiveRecord/AttributeMethods/Read.html	/^				<a name="method-i-unserializable_attribute%3F"><\/a>$/;"	a
-method-i-unserialize_attribute	doc/api/ActiveRecord/AttributeMethods/Read.html	/^				<a name="method-i-unserialize_attribute"><\/a>$/;"	a
-method-i-unsubscribe	doc/api/ActiveSupport/Notifications/Fanout.html	/^				<a name="method-i-unsubscribe"><\/a>$/;"	a
-method-i-until	doc/api/ActiveSupport/Duration.html	/^				<a name="method-i-until"><\/a>$/;"	a
-method-i-upcase	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="method-i-upcase"><\/a>$/;"	a
-method-i-update	doc/api/ActiveRecord/AttributeMethods/Dirty.html	/^				<a name="method-i-update"><\/a>$/;"	a
-method-i-update	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-update"><\/a>$/;"	a
-method-i-update	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-update"><\/a>$/;"	a
-method-i-update	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-update"><\/a>$/;"	a
-method-i-update	doc/api/ActiveResource/Base.html	/^				<a name="method-i-update"><\/a>$/;"	a
-method-i-update	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-update"><\/a>$/;"	a
-method-i-update_all	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-update_all"><\/a>$/;"	a
-method-i-update_attribute	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-update_attribute"><\/a>$/;"	a
-method-i-update_attribute	doc/api/ActiveResource/Base.html	/^				<a name="method-i-update_attribute"><\/a>$/;"	a
-method-i-update_attributes	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-update_attributes"><\/a>$/;"	a
-method-i-update_attributes	doc/api/ActiveResource/Base.html	/^				<a name="method-i-update_attributes"><\/a>$/;"	a
-method-i-update_attributes%21	doc/api/ActiveRecord/Persistence.html	/^				<a name="method-i-update_attributes%21"><\/a>$/;"	a
-method-i-update_counters	doc/api/ActiveRecord/CounterCache.html	/^				<a name="method-i-update_counters"><\/a>$/;"	a
-method-i-update_counters	doc/api/ActiveRecord/Locking/Optimistic/ClassMethods.html	/^				<a name="method-i-update_counters"><\/a>$/;"	a
-method-i-update_details	doc/api/ActionView/LookupContext/Details.html	/^				<a name="method-i-update_details"><\/a>$/;"	a
-method-i-update_page	doc/api/ActionView/Helpers/PrototypeHelper.html	/^				<a name="method-i-update_page"><\/a>$/;"	a
-method-i-update_page_tag	doc/api/ActionView/Helpers/PrototypeHelper.html	/^				<a name="method-i-update_page_tag"><\/a>$/;"	a
-method-i-update_sql	doc/api/ActiveRecord/ConnectionAdapters/DatabaseStatements.html	/^				<a name="method-i-update_sql"><\/a>$/;"	a
-method-i-update_sql	doc/api/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html	/^				<a name="method-i-update_sql"><\/a>$/;"	a
-method-i-updated	doc/api/ActionView/Helpers/AtomFeedHelper/AtomFeedBuilder.html	/^				<a name="method-i-updated"><\/a>$/;"	a
-method-i-updated_at	doc/api/ActiveSupport/FileUpdateChecker.html	/^				<a name="method-i-updated_at"><\/a>$/;"	a
-method-i-url_field	doc/api/ActionView/Helpers/FormHelper.html	/^				<a name="method-i-url_field"><\/a>$/;"	a
-method-i-url_field_tag	doc/api/ActionView/Helpers/FormTagHelper.html	/^				<a name="method-i-url_field_tag"><\/a>$/;"	a
-method-i-url_for	doc/api/ActionController/Metal.html	/^				<a name="method-i-url_for"><\/a>$/;"	a
-method-i-url_for	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-url_for"><\/a>$/;"	a
-method-i-url_options	doc/api/ActionController/UrlFor.html	/^				<a name="method-i-url_options"><\/a>$/;"	a
-method-i-url_options	doc/api/ActionView/Helpers/UrlHelper.html	/^				<a name="method-i-url_options"><\/a>$/;"	a
-method-i-use_renderer	doc/api/ActionController/Renderers/ClassMethods.html	/^				<a name="method-i-use_renderer"><\/a>$/;"	a
-method-i-use_renderers	doc/api/ActionController/Renderers/ClassMethods.html	/^				<a name="method-i-use_renderers"><\/a>$/;"	a
-method-i-usec	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-usec"><\/a>$/;"	a
-method-i-user%3D	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-user%3D"><\/a>$/;"	a
-method-i-user_name_and_password	doc/api/ActionController/HttpAuthentication/Basic.html	/^				<a name="method-i-user_name_and_password"><\/a>$/;"	a
-method-i-uses_transaction	doc/api/ActiveRecord/TestFixtures/ClassMethods.html	/^				<a name="method-i-uses_transaction"><\/a>$/;"	a
-method-i-uses_transaction%3F	doc/api/ActiveRecord/TestFixtures/ClassMethods.html	/^				<a name="method-i-uses_transaction%3F"><\/a>$/;"	a
-method-i-using_limitable_reflections%3F	doc/api/ActiveRecord/FinderMethods.html	/^				<a name="method-i-using_limitable_reflections%3F"><\/a>$/;"	a
-method-i-utc	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-utc"><\/a>$/;"	a
-method-i-utc	doc/api/DateTime.html	/^				<a name="method-i-utc"><\/a>$/;"	a
-method-i-utc%3F	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-utc%3F"><\/a>$/;"	a
-method-i-utc%3F	doc/api/DateTime.html	/^				<a name="method-i-utc%3F"><\/a>$/;"	a
-method-i-utc_offset	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-utc_offset"><\/a>$/;"	a
-method-i-utc_offset	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-utc_offset"><\/a>$/;"	a
-method-i-utc_offset	doc/api/DateTime.html	/^				<a name="method-i-utc_offset"><\/a>$/;"	a
-method-i-utc_to_local	doc/api/ActiveSupport/TimeZone.html	/^				<a name="method-i-utc_to_local"><\/a>$/;"	a
-method-i-valid%3F	doc/api/ActiveModel/Validations.html	/^				<a name="method-i-valid%3F"><\/a>$/;"	a
-method-i-valid%3F	doc/api/ActiveRecord/Validations.html	/^				<a name="method-i-valid%3F"><\/a>$/;"	a
-method-i-valid%3F	doc/api/ActiveResource/Validations.html	/^				<a name="method-i-valid%3F"><\/a>$/;"	a
-method-i-valid_alter_table_options	doc/api/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html	/^				<a name="method-i-valid_alter_table_options"><\/a>$/;"	a
-method-i-valid_encoding	doc/api/ActionView/Template/Handlers/ERB.html	/^				<a name="method-i-valid_encoding"><\/a>$/;"	a
-method-i-valid_scope_name%3F	doc/api/ActiveRecord/NamedScope/ClassMethods.html	/^				<a name="method-i-valid_scope_name%3F"><\/a>$/;"	a
-method-i-validate	doc/api/ActiveModel/EachValidator.html	/^				<a name="method-i-validate"><\/a>$/;"	a
-method-i-validate	doc/api/ActiveModel/Validations/ClassMethods.html	/^				<a name="method-i-validate"><\/a>$/;"	a
-method-i-validate	doc/api/ActiveModel/Validations/PresenceValidator.html	/^				<a name="method-i-validate"><\/a>$/;"	a
-method-i-validate	doc/api/ActiveModel/Validator.html	/^				<a name="method-i-validate"><\/a>$/;"	a
-method-i-validate_collection_association	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-validate_collection_association"><\/a>$/;"	a
-method-i-validate_digest_response	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-validate_digest_response"><\/a>$/;"	a
-method-i-validate_each	doc/api/ActiveModel/BlockValidator.html	/^				<a name="method-i-validate_each"><\/a>$/;"	a
-method-i-validate_each	doc/api/ActiveModel/EachValidator.html	/^				<a name="method-i-validate_each"><\/a>$/;"	a
-method-i-validate_each	doc/api/ActiveModel/Validations/AcceptanceValidator.html	/^				<a name="method-i-validate_each"><\/a>$/;"	a
-method-i-validate_each	doc/api/ActiveModel/Validations/ConfirmationValidator.html	/^				<a name="method-i-validate_each"><\/a>$/;"	a
-method-i-validate_each	doc/api/ActiveModel/Validations/ExclusionValidator.html	/^				<a name="method-i-validate_each"><\/a>$/;"	a
-method-i-validate_each	doc/api/ActiveModel/Validations/FormatValidator.html	/^				<a name="method-i-validate_each"><\/a>$/;"	a
-method-i-validate_each	doc/api/ActiveModel/Validations/InclusionValidator.html	/^				<a name="method-i-validate_each"><\/a>$/;"	a
-method-i-validate_each	doc/api/ActiveModel/Validations/LengthValidator.html	/^				<a name="method-i-validate_each"><\/a>$/;"	a
-method-i-validate_each	doc/api/ActiveModel/Validations/NumericalityValidator.html	/^				<a name="method-i-validate_each"><\/a>$/;"	a
-method-i-validate_each	doc/api/ActiveRecord/Validations/AssociatedValidator.html	/^				<a name="method-i-validate_each"><\/a>$/;"	a
-method-i-validate_each	doc/api/ActiveRecord/Validations/UniquenessValidator.html	/^				<a name="method-i-validate_each"><\/a>$/;"	a
-method-i-validate_nonce	doc/api/ActionController/HttpAuthentication/Digest.html	/^				<a name="method-i-validate_nonce"><\/a>$/;"	a
-method-i-validate_single_association	doc/api/ActiveRecord/AutosaveAssociation.html	/^				<a name="method-i-validate_single_association"><\/a>$/;"	a
-method-i-validates	doc/api/ActiveModel/Validations/ClassMethods.html	/^				<a name="method-i-validates"><\/a>$/;"	a
-method-i-validates_acceptance_of	doc/api/ActiveModel/Validations/HelperMethods.html	/^				<a name="method-i-validates_acceptance_of"><\/a>$/;"	a
-method-i-validates_associated	doc/api/ActiveRecord/Validations/ClassMethods.html	/^				<a name="method-i-validates_associated"><\/a>$/;"	a
-method-i-validates_confirmation_of	doc/api/ActiveModel/Validations/HelperMethods.html	/^				<a name="method-i-validates_confirmation_of"><\/a>$/;"	a
-method-i-validates_each	doc/api/ActiveModel/Validations/ClassMethods.html	/^				<a name="method-i-validates_each"><\/a>$/;"	a
-method-i-validates_exclusion_of	doc/api/ActiveModel/Validations/HelperMethods.html	/^				<a name="method-i-validates_exclusion_of"><\/a>$/;"	a
-method-i-validates_format_of	doc/api/ActiveModel/Validations/HelperMethods.html	/^				<a name="method-i-validates_format_of"><\/a>$/;"	a
-method-i-validates_inclusion_of	doc/api/ActiveModel/Validations/HelperMethods.html	/^				<a name="method-i-validates_inclusion_of"><\/a>$/;"	a
-method-i-validates_length_of	doc/api/ActiveModel/Validations/HelperMethods.html	/^				<a name="method-i-validates_length_of"><\/a>$/;"	a
-method-i-validates_numericality_of	doc/api/ActiveModel/Validations/HelperMethods.html	/^				<a name="method-i-validates_numericality_of"><\/a>$/;"	a
-method-i-validates_presence_of	doc/api/ActiveModel/Validations/HelperMethods.html	/^				<a name="method-i-validates_presence_of"><\/a>$/;"	a
-method-i-validates_size_of	doc/api/ActiveModel/Validations/HelperMethods.html	/^				<a name="method-i-validates_size_of"><\/a>$/;"	a
-method-i-validates_uniqueness_of	doc/api/ActiveRecord/Validations/ClassMethods.html	/^				<a name="method-i-validates_uniqueness_of"><\/a>$/;"	a
-method-i-validates_with	doc/api/ActiveModel/Validations.html	/^				<a name="method-i-validates_with"><\/a>$/;"	a
-method-i-validates_with	doc/api/ActiveModel/Validations/ClassMethods.html	/^				<a name="method-i-validates_with"><\/a>$/;"	a
-method-i-validators	doc/api/ActiveModel/Validations/ClassMethods.html	/^				<a name="method-i-validators"><\/a>$/;"	a
-method-i-validators_on	doc/api/ActiveModel/Validations/ClassMethods.html	/^				<a name="method-i-validators_on"><\/a>$/;"	a
-method-i-value	doc/api/ActionView/Helpers/InstanceTagMethods/ClassMethods.html	/^				<a name="method-i-value"><\/a>$/;"	a
-method-i-value	doc/api/ActiveSupport/Cache/Entry.html	/^				<a name="method-i-value"><\/a>$/;"	a
-method-i-value_before_type_cast	doc/api/ActionView/Helpers/InstanceTagMethods/ClassMethods.html	/^				<a name="method-i-value_before_type_cast"><\/a>$/;"	a
-method-i-values_at	doc/api/ActiveSupport/HashWithIndifferentAccess.html	/^				<a name="method-i-values_at"><\/a>$/;"	a
-method-i-variable_name	doc/api/ActionView/Template.html	/^				<a name="method-i-variable_name"><\/a>$/;"	a
-method-i-verified_request%3F	doc/api/ActionController/RequestForgeryProtection.html	/^				<a name="method-i-verified_request%3F"><\/a>$/;"	a
-method-i-verifier	doc/api/ActiveSupport/MessageEncryptor.html	/^				<a name="method-i-verifier"><\/a>$/;"	a
-method-i-verify	doc/api/ActiveSupport/MessageVerifier.html	/^				<a name="method-i-verify"><\/a>$/;"	a
-method-i-verify%21	doc/api/ActiveRecord/ConnectionAdapters/AbstractAdapter.html	/^				<a name="method-i-verify%21"><\/a>$/;"	a
-method-i-verify_authenticity_token	doc/api/ActionController/RequestForgeryProtection.html	/^				<a name="method-i-verify_authenticity_token"><\/a>$/;"	a
-method-i-version	doc/api/ActiveRecord/ConnectionAdapters/MysqlAdapter.html	/^				<a name="method-i-version"><\/a>$/;"	a
-method-i-video_path	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-video_path"><\/a>$/;"	a
-method-i-video_tag	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-video_tag"><\/a>$/;"	a
-method-i-view	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-view"><\/a>$/;"	a
-method-i-view_assigns	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="method-i-view_assigns"><\/a>$/;"	a
-method-i-view_paths%3D	doc/api/ActionView/LookupContext/ViewPaths.html	/^				<a name="method-i-view_paths%3D"><\/a>$/;"	a
-method-i-visible_action%3F	doc/api/ActionController/HideActions/ClassMethods.html	/^				<a name="method-i-visible_action%3F"><\/a>$/;"	a
-method-i-visual_effect	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-visual_effect"><\/a>$/;"	a
-method-i-visual_effect	doc/api/ActionView/Helpers/ScriptaculousHelper.html	/^				<a name="method-i-visual_effect"><\/a>$/;"	a
-method-i-wait	doc/api/ActiveSupport/LogSubscriber/TestHelper.html	/^				<a name="method-i-wait"><\/a>$/;"	a
-method-i-wait	doc/api/ActiveSupport/Notifications/Fanout.html	/^				<a name="method-i-wait"><\/a>$/;"	a
-method-i-warn%21	doc/api/ActiveModel/MassAssignmentSecurity/Sanitizer.html	/^				<a name="method-i-warn%21"><\/a>$/;"	a
-method-i-watch_namespaces	doc/api/ActiveSupport/Dependencies/WatchStack.html	/^				<a name="method-i-watch_namespaces"><\/a>$/;"	a
-method-i-where	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="method-i-where"><\/a>$/;"	a
-method-i-where_values_hash	doc/api/ActiveRecord/Relation.html	/^				<a name="method-i-where_values_hash"><\/a>$/;"	a
-method-i-with_auth	doc/api/ActiveResource/Connection.html	/^				<a name="method-i-with_auth"><\/a>$/;"	a
-method-i-with_backend	doc/api/ActiveSupport/XmlMini.html	/^				<a name="method-i-with_backend"><\/a>$/;"	a
-method-i-with_connection	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="method-i-with_connection"><\/a>$/;"	a
-method-i-with_fallbacks	doc/api/ActionView/LookupContext/ViewPaths.html	/^				<a name="method-i-with_fallbacks"><\/a>$/;"	a
-method-i-with_formats	doc/api/ActionView/Helpers/PrototypeHelper/JavaScriptGenerator/GeneratorMethods.html	/^				<a name="method-i-with_formats"><\/a>$/;"	a
-method-i-with_gc_stats	doc/api/ActiveSupport/Testing/Performance/Metrics/Base.html	/^				<a name="method-i-with_gc_stats"><\/a>$/;"	a
-method-i-with_layout_format	doc/api/ActionView/LookupContext/Details.html	/^				<a name="method-i-with_layout_format"><\/a>$/;"	a
-method-i-with_local_cache	doc/api/ActiveSupport/Cache/Strategy/LocalCache.html	/^				<a name="method-i-with_local_cache"><\/a>$/;"	a
-method-i-with_options	doc/api/Object.html	/^				<a name="method-i-with_options"><\/a>$/;"	a
-method-i-with_output_file	doc/api/ActiveSupport/Testing/Performance/Benchmarker.html	/^				<a name="method-i-with_output_file"><\/a>$/;"	a
-method-i-with_transaction_returning_status	doc/api/ActiveRecord/Transactions.html	/^				<a name="method-i-with_transaction_returning_status"><\/a>$/;"	a
-method-i-with_warnings	doc/api/Kernel.html	/^				<a name="method-i-with_warnings"><\/a>$/;"	a
-method-i-word_wrap	doc/api/ActionView/Helpers/TextHelper.html	/^				<a name="method-i-word_wrap"><\/a>$/;"	a
-method-i-write	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="method-i-write"><\/a>$/;"	a
-method-i-write_asset_file_contents	doc/api/ActionView/Helpers/AssetTagHelper.html	/^				<a name="method-i-write_asset_file_contents"><\/a>$/;"	a
-method-i-write_attribute	doc/api/ActiveRecord/AttributeMethods/Dirty.html	/^				<a name="method-i-write_attribute"><\/a>$/;"	a
-method-i-write_attribute	doc/api/ActiveRecord/AttributeMethods/Write.html	/^				<a name="method-i-write_attribute"><\/a>$/;"	a
-method-i-write_entry	doc/api/ActiveSupport/Cache/FileStore.html	/^				<a name="method-i-write_entry"><\/a>$/;"	a
-method-i-write_entry	doc/api/ActiveSupport/Cache/Strategy/LocalCache/LocalStore.html	/^				<a name="method-i-write_entry"><\/a>$/;"	a
-method-i-writer_method	doc/api/ActiveRecord/Aggregations/ClassMethods.html	/^				<a name="method-i-writer_method"><\/a>$/;"	a
-method-i-xhr	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="method-i-xhr"><\/a>$/;"	a
-method-i-xhtml_block%3F	doc/api/ActionView/Helpers/AtomFeedHelper/AtomBuilder.html	/^				<a name="method-i-xhtml_block%3F"><\/a>$/;"	a
-method-i-xml	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="method-i-xml"><\/a>$/;"	a
-method-i-xml_column_fallback	doc/api/ActiveRecord/ConnectionAdapters/TableDefinition.html	/^				<a name="method-i-xml_column_fallback"><\/a>$/;"	a
-method-i-xml_http_request	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="method-i-xml_http_request"><\/a>$/;"	a
-method-i-xmlschema	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-xmlschema"><\/a>$/;"	a
-method-i-xmlschema	doc/api/DateTime.html	/^				<a name="method-i-xmlschema"><\/a>$/;"	a
-method-i-yaml_file_path	doc/api/Fixtures.html	/^				<a name="method-i-yaml_file_path"><\/a>$/;"	a
-method-i-yaml_fixtures_key	doc/api/Fixtures.html	/^				<a name="method-i-yaml_fixtures_key"><\/a>$/;"	a
-method-i-year	doc/api/Integer.html	/^				<a name="method-i-year"><\/a>$/;"	a
-method-i-years	doc/api/Integer.html	/^				<a name="method-i-years"><\/a>$/;"	a
-method-i-years_ago	doc/api/Time.html	/^				<a name="method-i-years_ago"><\/a>$/;"	a
-method-i-years_since	doc/api/Time.html	/^				<a name="method-i-years_since"><\/a>$/;"	a
-method-i-yesterday	doc/api/Time.html	/^				<a name="method-i-yesterday"><\/a>$/;"	a
-method-i-zone	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="method-i-zone"><\/a>$/;"	a
-method=	doc/api/ActiveResource/Request.html	/^				<a name="method="><\/a>$/;"	a
-mine	app/controllers/profiles_controller.rb	/^  def mine$/;"	f	class:ProfilesController
-mock_creation	spec/controllers/creations_controller_spec.rb	/^  def mock_creation(stubs={})$/;"	f
-mock_creation	spec/controllers/photos_controller_spec.rb	/^  def mock_creation(stubs={})$/;"	f
-mock_photo	spec/controllers/photos_controller_spec.rb	/^  def mock_photo(stubs={})$/;"	f
-name	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="name"><\/a>$/;"	a
-name	doc/api/ActiveRecord/MigrationProxy.html	/^				<a name="name"><\/a>$/;"	a
-name	doc/api/ActiveRecord/Reflection/MacroReflection.html	/^				<a name="name"><\/a>$/;"	a
-name	doc/api/ActiveSupport/Callbacks/CallbackChain.html	/^				<a name="name"><\/a>$/;"	a
-name	doc/api/ActiveSupport/Dependencies/Reference.html	/^				<a name="name"><\/a>$/;"	a
-name	doc/api/ActiveSupport/Notifications/Event.html	/^				<a name="name"><\/a>$/;"	a
-name	doc/api/ActiveSupport/TimeZone.html	/^				<a name="name"><\/a>$/;"	a
-name	doc/api/Fixtures.html	/^				<a name="name"><\/a>$/;"	a
-name=	doc/api/ActiveRecord/MigrationProxy.html	/^				<a name="name="><\/a>$/;"	a
-namespace.events.cleanUp	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-namespace.events.spyOn	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^  namespace.events = {$/;"	m
-namespace.events.spyOn.handler	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^      var handler = function(e) {$/;"	f
-namespace.events.wasTriggered	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-new	app/controllers/creations_controller.rb	/^  def new$/;"	f	class:CreationsController
-newSelection	vendor/assets/javascripts/jquery.Jcrop.js	/^    function newSelection(e) \/\/{{{$/;"	f
-newTracker	vendor/assets/javascripts/jquery.Jcrop.js	/^    function newTracker() \/\/{{{$/;"	f
-new_record	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="new_record"><\/a>$/;"	a
-notifier	doc/api/ActiveSupport/Notifications.html	/^				<a name="notifier"><\/a>$/;"	a
-notifier=	doc/api/ActiveSupport/Notifications.html	/^				<a name="notifier="><\/a>$/;"	a
-null	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="null"><\/a>$/;"	a
-number	doc/api/ActionView/Helpers/NumberHelper/InvalidNumberError.html	/^				<a name="number"><\/a>$/;"	a
-number=	doc/api/ActionView/Helpers/NumberHelper/InvalidNumberError.html	/^				<a name="number="><\/a>$/;"	a
-offset_value	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="offset_value"><\/a>$/;"	a
-offset_value=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="offset_value="><\/a>$/;"	a
-oppLockCorner	vendor/assets/javascripts/jquery.Jcrop.js	/^    function oppLockCorner(ord) \/\/{{{$/;"	f
-options	doc/api/ActionController/Responder.html	/^				<a name="options"><\/a>$/;"	a
-options	doc/api/ActiveModel/Validator.html	/^				<a name="options"><\/a>$/;"	a
-options	doc/api/ActiveRecord/Reflection/MacroReflection.html	/^				<a name="options"><\/a>$/;"	a
-options	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="options"><\/a>$/;"	a
-options	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="options"><\/a>$/;"	a
-options	doc/api/ActiveSupport/JSON/Encoding/Encoder.html	/^				<a name="options"><\/a>$/;"	a
-options.onChange	vendor/assets/javascripts/jquery.Jcrop.js	/^      if (typeof(options.onChange) !== 'function') {$/;"	f
-options.onRelease	vendor/assets/javascripts/jquery.Jcrop.js	/^      if (typeof(options.onRelease) !== 'function') {$/;"	f
-options.onSelect	vendor/assets/javascripts/jquery.Jcrop.js	/^      if (typeof(options.onSelect) !== 'function') {$/;"	f
-options=	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="options="><\/a>$/;"	a
-order_values	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="order_values"><\/a>$/;"	a
-order_values=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="order_values="><\/a>$/;"	a
-original_encoding	doc/api/ActionView/Template.html	/^				<a name="original_encoding"><\/a>$/;"	a
-original_exception	doc/api/ActiveRecord/WrappedDatabaseException.html	/^				<a name="original_exception"><\/a>$/;"	a
-output_buffer	doc/api/ActionView/Context.html	/^				<a name="output_buffer"><\/a>$/;"	a
-output_buffer	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="output_buffer"><\/a>$/;"	a
-output_buffer=	doc/api/ActionView/Context.html	/^				<a name="output_buffer="><\/a>$/;"	a
-output_buffer=	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="output_buffer="><\/a>$/;"	a
-paginate	spec/support/kaminari.rb	/^  def paginate(scope, options = {}, &block)$/;"	f	class:Kaminari
-params	doc/api/ActionView/TestCase/TestController.html	/^				<a name="params"><\/a>$/;"	a
-params=	doc/api/ActionView/TestCase/TestController.html	/^				<a name="params="><\/a>$/;"	a
-parse_error	doc/api/ActiveSupport/JSON.html	/^				<a name="parse_error"><\/a>$/;"	a
-partial_path	doc/api/ActiveModel/Name.html	/^				<a name="partial_path"><\/a>$/;"	a
-parts	doc/api/ActiveSupport/Duration.html	/^				<a name="parts"><\/a>$/;"	a
-parts=	doc/api/ActiveSupport/Duration.html	/^				<a name="parts="><\/a>$/;"	a
-password	doc/api/ActiveResource/Connection.html	/^				<a name="password"><\/a>$/;"	a
-path	doc/api/ActionController/Caching/Actions/ActionCachePath.html	/^				<a name="path"><\/a>$/;"	a
-path	doc/api/ActiveResource/Request.html	/^				<a name="path"><\/a>$/;"	a
-path=	doc/api/ActiveResource/Request.html	/^				<a name="path="><\/a>$/;"	a
-paths	doc/api/ActiveSupport/FileUpdateChecker.html	/^				<a name="paths"><\/a>$/;"	a
-payload	doc/api/ActiveSupport/Notifications/Event.html	/^				<a name="payload"><\/a>$/;"	a
-per_key	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="per_key"><\/a>$/;"	a
-per_key=	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="per_key="><\/a>$/;"	a
-plural	doc/api/ActiveModel/Name.html	/^				<a name="plural"><\/a>$/;"	a
-plurals	doc/api/ActiveSupport/Inflector/Inflections.html	/^				<a name="plurals"><\/a>$/;"	a
-precision	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="precision"><\/a>$/;"	a
-prefix	doc/api/ActiveModel/AttributeMethods/ClassMethods/AttributeMethodMatcher.html	/^				<a name="prefix"><\/a>$/;"	a
-preloadFixtures	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^var preloadFixtures = function() {$/;"	f
-preload_values	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="preload_values"><\/a>$/;"	a
-preload_values=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="preload_values="><\/a>$/;"	a
-presize	vendor/assets/javascripts/jquery.Jcrop.js	/^    function presize($obj, w, h) \/\/{{{$/;"	f
-primary	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="primary"><\/a>$/;"	a
-primary=	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="primary="><\/a>$/;"	a
-profile_geometry	app/models/creation.rb	/^  def profile_geometry$/;"	f	class:Creation
-proxy	doc/api/ActiveResource/Connection.html	/^				<a name="proxy"><\/a>$/;"	a
-query_cache	doc/api/ActiveRecord/ConnectionAdapters/QueryCache.html	/^				<a name="query_cache"><\/a>$/;"	a
-query_cache_enabled	doc/api/ActiveRecord/ConnectionAdapters/QueryCache.html	/^				<a name="query_cache_enabled"><\/a>$/;"	a
-raw_filter	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="raw_filter"><\/a>$/;"	a
-raw_filter=	doc/api/ActiveSupport/Callbacks/Callback.html	/^				<a name="raw_filter="><\/a>$/;"	a
-readFixtures	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^var readFixtures = function() {$/;"	f
-readonly_value	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="readonly_value"><\/a>$/;"	a
-readonly_value=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="readonly_value="><\/a>$/;"	a
-record	doc/api/ActiveRecord/RecordInvalid.html	/^				<a name="record"><\/a>$/;"	a
-rendered	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="rendered"><\/a>$/;"	a
-rendered=	doc/api/ActionView/TestCase/Behavior.html	/^				<a name="rendered="><\/a>$/;"	a
-reorder_flag	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="reorder_flag"><\/a>$/;"	a
-reorder_flag=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="reorder_flag="><\/a>$/;"	a
-reprocess_image	app/models/creation.rb	/^  def reprocess_image$/;"	f	class:Creation
-request	doc/api/ActionController/Responder.html	/^				<a name="request"><\/a>$/;"	a
-request	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="request"><\/a>$/;"	a
-request	doc/api/ActionView/TestCase/TestController.html	/^				<a name="request"><\/a>$/;"	a
-request=	doc/api/ActionView/TestCase/TestController.html	/^				<a name="request="><\/a>$/;"	a
-resource	doc/api/ActionController/Responder.html	/^				<a name="resource"><\/a>$/;"	a
-resources	doc/api/ActionController/Responder.html	/^				<a name="resources"><\/a>$/;"	a
-response	doc/api/ActionController/TestCase/Behavior.html	/^				<a name="response"><\/a>$/;"	a
-response	doc/api/ActionView/TestCase/TestController.html	/^				<a name="response"><\/a>$/;"	a
-response=	doc/api/ActionView/TestCase/TestController.html	/^				<a name="response="><\/a>$/;"	a
-s	doc/api/ActionView/Helpers/PrototypeHelper.html	/^functions (and actually more than are listed here); check out the$/;"	f
-sandbox	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^var sandbox = function(attributes) {$/;"	f
-scale	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="scale"><\/a>$/;"	a
-scope	doc/api/ActiveRecord/DynamicScopeMatch.html	/^				<a name="scope"><\/a>$/;"	a
-selectDrag	vendor/assets/javascripts/jquery.Jcrop.js	/^    function selectDrag(pos) \/\/{{{$/;"	f
-select_values	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="select_values"><\/a>$/;"	a
-select_values=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="select_values="><\/a>$/;"	a
-session_id	doc/api/ActiveRecord/SessionStore/SqlBypass.html	/^				<a name="session_id"><\/a>$/;"	a
-setClass	vendor/assets/javascripts/jquery.Jcrop.js	/^    function setClass(cname) \/\/{{{$/;"	f
-setFixtures	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^var setFixtures = function(html) {$/;"	f
-setImage	vendor/assets/javascripts/jquery.Jcrop.js	/^    function setImage(src, callback) \/\/{{{$/;"	f
-setOptionsNew	vendor/assets/javascripts/jquery.Jcrop.js	/^    function setOptionsNew(opt) \/\/{{{$/;"	f
-setSelect	vendor/assets/javascripts/jquery.Jcrop.js	/^    function setSelect(rect) \/\/{{{$/;"	f
-setSelectRaw	vendor/assets/javascripts/jquery.Jcrop.js	/^    function setSelectRaw(l) \/\/{{{$/;"	f
-short_story	app/models/creation.rb	/^  def short_story$/;"	f	class:Creation
-show	app/controllers/categories_controller.rb	/^  def show$/;"	f	class:CategoriesController
-show	app/controllers/creations_controller.rb	/^  def show$/;"	f	class:CreationsController
-show	app/controllers/profiles_controller.rb	/^  def show$/;"	f	class:ProfilesController
-silence	doc/api/ActiveSupport/Cache/Store.html	/^				<a name="silence"><\/a>$/;"	a
-singular	doc/api/ActiveModel/Name.html	/^				<a name="singular"><\/a>$/;"	a
-singulars	doc/api/ActiveSupport/Inflector/Inflections.html	/^				<a name="singulars"><\/a>$/;"	a
-site	doc/api/ActiveResource/Connection.html	/^				<a name="site"><\/a>$/;"	a
-source	doc/api/ActionView/Template.html	/^				<a name="source"><\/a>$/;"	a
-spec	doc/api/ActiveRecord/ConnectionAdapters/ConnectionPool.html	/^				<a name="spec"><\/a>$/;"	a
-spiedEvents	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^  var data = {$/;"	p
-spyOnEvent	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^var spyOnEvent = function(selector, eventName) {$/;"	f
-sql_type	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="sql_type"><\/a>$/;"	a
-ssl_options	doc/api/ActiveResource/Connection.html	/^				<a name="ssl_options"><\/a>$/;"	a
-store_dir	app/uploaders/image_uploader.rb	/^  def store_dir$/;"	f	class:ImageUploader
-store_dir	app/uploaders/photo_uploader.rb	/^  def store_dir$/;"	f	class:PhotoUploader
-suffix	doc/api/ActiveModel/AttributeMethods/ClassMethods/AttributeMethodMatcher.html	/^				<a name="suffix"><\/a>$/;"	a
-tab	vendor/assets/javascripts/bootstrap-tabs.js	/^  function tab( e ) {$/;"	f
-table	doc/api/ActiveRecord/Relation.html	/^				<a name="table"><\/a>$/;"	a
-table_name	doc/api/Fixtures.html	/^				<a name="table_name"><\/a>$/;"	a
-tellScaled	vendor/assets/javascripts/jquery.Jcrop.js	/^    function tellScaled() \/\/{{{$/;"	f
-tellSelect	vendor/assets/javascripts/jquery.Jcrop.js	/^    function tellSelect() \/\/{{{$/;"	f
-time	doc/api/ActiveSupport/Notifications/Event.html	/^				<a name="time"><\/a>$/;"	a
-time_zone	doc/api/ActiveSupport/TimeWithZone.html	/^				<a name="time_zone"><\/a>$/;"	a
-timeout	doc/api/ActiveResource/Connection.html	/^				<a name="timeout"><\/a>$/;"	a
-toBe	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toBeChecked	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toBeDisabled	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toBeEmpty	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toBeHidden	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toBeSelected	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toBeVisible	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toContain	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toExist	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toHandle	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toHandleWith	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toHaveAttr	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toHaveClass	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^  var jQueryMatchers = {$/;"	m
-toHaveData	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toHaveHtml	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toHaveId	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toHaveText	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toHaveValue	spec/javascripts/helpers/jasmine_jquery-1.3.1.js	/^    },$/;"	m
-toggle	vendor/assets/javascripts/bootstrap-buttons.js	/^  function toggle(el) {$/;"	f
-total	doc/api/ActiveSupport/Testing/Performance/Metrics/Base.html	/^				<a name="total"><\/a>$/;"	a
-transaction_id	doc/api/ActiveSupport/Notifications/Event.html	/^				<a name="transaction_id"><\/a>$/;"	a
-type	doc/api/ActiveRecord/ConnectionAdapters/Column.html	/^				<a name="type"><\/a>$/;"	a
-tzinfo	doc/api/ActiveSupport/TimeZone.html	/^				<a name="tzinfo"><\/a>$/;"	a
-uncountables	doc/api/ActiveSupport/Inflector/Inflections.html	/^				<a name="uncountables"><\/a>$/;"	a
-unscale	vendor/assets/javascripts/jquery.Jcrop.js	/^    function unscale(c) \/\/{{{$/;"	f
-up	db/migrate/20110417070236_devise_create_users.rb	/^  def self.up$/;"	F	class:DeviseCreateUsers
-up	db/migrate/20110419012853_create_authentications.rb	/^  def self.up$/;"	F	class:CreateAuthentications
-up	db/migrate/20110503032142_create_creations.rb	/^  def self.up$/;"	F	class:CreateCreations
-up	db/migrate/20110504010209_add_user_id_to_creations.rb	/^  def self.up$/;"	F	class:AddUserIdToCreations
-up	db/migrate/20110504144954_add_image_to_creations.rb	/^  def self.up$/;"	F	class:AddImageToCreations
-up	db/migrate/20110505035236_add_name_to_users.rb	/^  def self.up$/;"	F	class:AddNameToUsers
-up	db/migrate/20110803020957_create_categories.rb	/^  def self.up$/;"	F	class:CreateCategories
-up	db/migrate/20110803021631_create_creation_category_join_table.rb	/^  def self.up$/;"	F	class:CreateCreationCategoryJoinTable
-up	db/migrate/20110808024353_add_slug_to_categories.rb	/^  def self.up$/;"	F	class:AddSlugToCategories
-up	db/migrate/20111125071349_drop_authentications.rb	/^  def up$/;"	f	class:DropAuthentications
-update	app/controllers/creations_controller.rb	/^  def update$/;"	f	class:CreationsController
-uppercase_mapping	doc/api/ActiveSupport/Multibyte/Unicode/Codepoint.html	/^				<a name="uppercase_mapping"><\/a>$/;"	a
-uppercase_mapping=	doc/api/ActiveSupport/Multibyte/Unicode/Codepoint.html	/^				<a name="uppercase_mapping="><\/a>$/;"	a
-user	doc/api/ActiveResource/Connection.html	/^				<a name="user"><\/a>$/;"	a
-valid_attributes	spec/controllers/likes_controller_spec.rb	/^  def valid_attributes$/;"	f
-value	doc/api/ActiveSupport/Duration.html	/^				<a name="value"><\/a>$/;"	a
-value=	doc/api/ActiveSupport/Duration.html	/^				<a name="value="><\/a>$/;"	a
-version	doc/api/ActiveRecord/MigrationProxy.html	/^				<a name="version"><\/a>$/;"	a
-version=	doc/api/ActiveRecord/MigrationProxy.html	/^				<a name="version="><\/a>$/;"	a
-view_paths	doc/api/ActionView/LookupContext/ViewPaths.html	/^				<a name="view_paths"><\/a>$/;"	a
-virtual_path	doc/api/ActionView/Template.html	/^				<a name="virtual_path"><\/a>$/;"	a
-where_values	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="where_values"><\/a>$/;"	a
-where_values=	doc/api/ActiveRecord/QueryMethods.html	/^				<a name="where_values="><\/a>$/;"	a
-wrapped_string	doc/api/ActiveSupport/Multibyte/Chars.html	/^				<a name="wrapped_string"><\/a>$/;"	a
-zone_default	doc/api/Time.html	/^				<a name="zone_default"><\/a>$/;"	a
-zone_default=	doc/api/Time.html	/^				<a name="zone_default="><\/a>$/;"	a