├── .gitignore ├── Capfile ├── Gemfile ├── Gemfile.lock ├── README.markdown ├── Rakefile ├── assets ├── images │ ├── belongs_to.png │ ├── book_icon.gif │ ├── bullet.gif │ ├── challenge.png │ ├── chapters_icon.gif │ ├── check_bullet.gif │ ├── credits_pic_blank.gif │ ├── csrf.png │ ├── customized_error_messages.png │ ├── edge_badge.png │ ├── error_messages.png │ ├── feature_tile.gif │ ├── footer_tile.gif │ ├── fxn.png │ ├── getting_started │ │ ├── new_post.png │ │ ├── routing_error_no_controller.png │ │ ├── routing_error_no_route_matches.png │ │ ├── template_is_missing_posts_new.png │ │ ├── unknown_action_create_for_posts.png │ │ └── unknown_action_new_for_posts.png │ ├── grey_bullet.gif │ ├── habtm.png │ ├── has_many.png │ ├── has_many_through.png │ ├── has_one.png │ ├── has_one_through.png │ ├── header_backdrop.png │ ├── header_tile.gif │ ├── i18n │ │ ├── demo_html_safe.png │ │ ├── demo_localized_pirate.png │ │ ├── demo_translated_en.png │ │ ├── demo_translated_pirate.png │ │ ├── demo_translation_missing.png │ │ └── demo_untranslated.png │ ├── icons │ │ ├── README │ │ ├── callouts │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── caution.png │ │ ├── example.png │ │ ├── favicon.ico │ │ ├── home.png │ │ ├── important.png │ │ ├── next.png │ │ ├── note.png │ │ ├── prev.png │ │ ├── tip.png │ │ ├── up.png │ │ └── warning.png │ ├── jaimeiniesta.jpg │ ├── nav_arrow.gif │ ├── polymorphic.png │ ├── posts_index.png │ ├── radar.png │ ├── rails_guides_kindle_cover.jpg │ ├── rails_guides_logo.gif │ ├── rails_logo_remix.gif │ ├── rails_welcome.png │ ├── session_fixation.png │ ├── tab_grey.gif │ ├── tab_info.gif │ ├── tab_note.gif │ ├── tab_red.gif │ ├── tab_yellow.gif │ ├── tab_yellow.png │ ├── validation_error_messages.png │ └── vijaydev.jpg ├── javascripts │ ├── guides.js │ └── syntaxhighlighter │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ └── shCore.js └── stylesheets │ ├── fixes.css │ ├── kindle.css │ ├── main.css │ ├── print.css │ ├── reset.css │ ├── style.css │ └── syntaxhighlighter │ ├── shCore.css │ ├── shCoreDefault.css │ ├── shCoreDjango.css │ ├── shCoreEclipse.css │ ├── shCoreEmacs.css │ ├── shCoreFadeToGrey.css │ ├── shCoreMDUltra.css │ ├── shCoreMidnight.css │ ├── shCoreRDark.css │ ├── shThemeDefault.css │ ├── shThemeDjango.css │ ├── shThemeEclipse.css │ ├── shThemeEmacs.css │ ├── shThemeFadeToGrey.css │ ├── shThemeMDUltra.css │ ├── shThemeMidnight.css │ ├── shThemeRDark.css │ └── shThemeRailsGuides.css ├── config └── deploy.rb ├── rails_guides.rb ├── rails_guides ├── body_converter.rb ├── check_anchors.rb ├── generator.rb ├── helpers.rb ├── indexer.rb ├── levenshtein.rb ├── markdown_render.rb ├── text_process.rb └── version.rb ├── source ├── CN │ ├── 2_2_release_notes.textile │ ├── 2_3_release_notes.textile │ ├── 3_0_release_notes.textile │ ├── 3_1_release_notes.textile │ ├── 3_2_release_notes.textile │ ├── _feedback.html.erb │ ├── _license.html.erb │ ├── _welcome.html.erb │ ├── action_controller_overview.textile │ ├── action_mailer_basics.textile │ ├── action_view_overview.textile │ ├── active_model_basics.textile │ ├── active_record_basics.textile │ ├── active_record_querying.textile │ ├── active_record_validations_callbacks.textile │ ├── active_support_core_extensions.textile │ ├── active_support_instrumentation.textile │ ├── ajax_on_rails.textile │ ├── api_documentation_guidelines.textile │ ├── asset_pipeline.textile │ ├── association_basics.md │ ├── caching_with_rails.textile │ ├── command_line.textile │ ├── configuring.textile │ ├── contributing_to_ruby_on_rails.textile │ ├── credits.html.erb │ ├── debugging_rails_applications.textile │ ├── engines.textile │ ├── form_helpers.textile │ ├── generators.textile │ ├── getting_started.backup.textile │ ├── getting_started.textile │ ├── i18n.textile │ ├── index.html.erb │ ├── initialization.textile │ ├── layout.html.erb │ ├── layouts_and_rendering.textile │ ├── migrations.textile │ ├── nested_model_forms.textile │ ├── performance_testing.textile │ ├── plugins.textile │ ├── rails_application_templates.textile │ ├── rails_on_rack.textile │ ├── routing.textile │ ├── ruby_on_rails_guides_guidelines.textile │ ├── security.textile │ ├── testing.textile │ └── upgrading_ruby_on_rails.textile ├── EN │ ├── 2_2_release_notes.md │ ├── 2_2_release_notes.textile │ ├── 2_3_release_notes.md │ ├── 2_3_release_notes.textile │ ├── 3_0_release_notes.md │ ├── 3_0_release_notes.textile │ ├── 3_1_release_notes.md │ ├── 3_1_release_notes.textile │ ├── 3_2_release_notes.md │ ├── 3_2_release_notes.textile │ ├── 4_0_release_notes.md │ ├── _license.html.erb │ ├── _welcome.html.erb │ ├── action_controller_overview.md │ ├── action_controller_overview.textile │ ├── action_mailer_basics.md │ ├── action_mailer_basics.textile │ ├── action_view_overview.md │ ├── action_view_overview.textile │ ├── active_model_basics.md │ ├── active_model_basics.textile │ ├── active_record_basics.md │ ├── active_record_basics.textile │ ├── active_record_querying.md │ ├── active_record_querying.textile │ ├── active_record_validations_callbacks.md │ ├── active_record_validations_callbacks.textile │ ├── active_support_core_extensions.md │ ├── active_support_core_extensions.textile │ ├── active_support_instrumentation.md │ ├── active_support_instrumentation.textile │ ├── ajax_on_rails.md │ ├── ajax_on_rails.textile │ ├── api_documentation_guidelines.md │ ├── api_documentation_guidelines.textile │ ├── asset_pipeline.md │ ├── asset_pipeline.textile │ ├── association_basics.md │ ├── association_basics.textile │ ├── caching_with_rails.md │ ├── caching_with_rails.textile │ ├── command_line.md │ ├── command_line.textile │ ├── configuring.md │ ├── configuring.textile │ ├── contributing_to_ruby_on_rails.md │ ├── contributing_to_ruby_on_rails.textile │ ├── credits.html.erb │ ├── debugging_rails_applications.md │ ├── debugging_rails_applications.textile │ ├── development_dependencies_install.md │ ├── documents.yaml │ ├── engines.md │ ├── engines.textile │ ├── form_helpers.md │ ├── form_helpers.textile │ ├── generators.md │ ├── generators.textile │ ├── getting_started.md │ ├── getting_started.textile │ ├── i18n.md │ ├── i18n.textile │ ├── index.html.erb │ ├── initialization.md │ ├── initialization.textile │ ├── layout.html.erb │ ├── layouts_and_rendering.md │ ├── layouts_and_rendering.textile │ ├── migrations.md │ ├── migrations.textile │ ├── nested_model_forms.md │ ├── nested_model_forms.textile │ ├── performance_testing.md │ ├── performance_testing.textile │ ├── plugins.md │ ├── plugins.textile │ ├── rails_application_templates.md │ ├── rails_application_templates.textile │ ├── rails_on_rack.md │ ├── rails_on_rack.textile │ ├── routing.md │ ├── routing.textile │ ├── ruby_on_rails_guides_guidelines.md │ ├── ruby_on_rails_guides_guidelines.textile │ ├── security.md │ ├── security.textile │ ├── testing.md │ ├── testing.textile │ ├── upgrading_ruby_on_rails.md │ └── upgrading_ruby_on_rails.textile ├── documents_CN.yaml ├── documents_EN.yaml └── kindle │ ├── KINDLE.md │ ├── KINDLE.md~HEAD │ ├── copyright.html.erb │ ├── copyright.html.erb~HEAD │ ├── layout.html.erb │ ├── layout.html.erb~HEAD │ ├── rails_guides.opf.erb │ ├── rails_guides.opf.erb~HEAD │ ├── toc.html.erb │ ├── toc.html.erb~HEAD │ ├── toc.ncx.erb │ ├── toc.ncx.erb~HEAD │ ├── welcome.html.erb │ └── welcome.html.erb~HEAD └── w3c_validator.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/.gitignore -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/Rakefile -------------------------------------------------------------------------------- /assets/images/belongs_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/belongs_to.png -------------------------------------------------------------------------------- /assets/images/book_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/book_icon.gif -------------------------------------------------------------------------------- /assets/images/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/bullet.gif -------------------------------------------------------------------------------- /assets/images/challenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/challenge.png -------------------------------------------------------------------------------- /assets/images/chapters_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/chapters_icon.gif -------------------------------------------------------------------------------- /assets/images/check_bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/check_bullet.gif -------------------------------------------------------------------------------- /assets/images/credits_pic_blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/credits_pic_blank.gif -------------------------------------------------------------------------------- /assets/images/csrf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/csrf.png -------------------------------------------------------------------------------- /assets/images/customized_error_messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/customized_error_messages.png -------------------------------------------------------------------------------- /assets/images/edge_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/edge_badge.png -------------------------------------------------------------------------------- /assets/images/error_messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/error_messages.png -------------------------------------------------------------------------------- /assets/images/feature_tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/feature_tile.gif -------------------------------------------------------------------------------- /assets/images/footer_tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/footer_tile.gif -------------------------------------------------------------------------------- /assets/images/fxn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/fxn.png -------------------------------------------------------------------------------- /assets/images/getting_started/new_post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/getting_started/new_post.png -------------------------------------------------------------------------------- /assets/images/getting_started/routing_error_no_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/getting_started/routing_error_no_controller.png -------------------------------------------------------------------------------- /assets/images/getting_started/routing_error_no_route_matches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/getting_started/routing_error_no_route_matches.png -------------------------------------------------------------------------------- /assets/images/getting_started/template_is_missing_posts_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/getting_started/template_is_missing_posts_new.png -------------------------------------------------------------------------------- /assets/images/getting_started/unknown_action_create_for_posts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/getting_started/unknown_action_create_for_posts.png -------------------------------------------------------------------------------- /assets/images/getting_started/unknown_action_new_for_posts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/getting_started/unknown_action_new_for_posts.png -------------------------------------------------------------------------------- /assets/images/grey_bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/grey_bullet.gif -------------------------------------------------------------------------------- /assets/images/habtm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/habtm.png -------------------------------------------------------------------------------- /assets/images/has_many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/has_many.png -------------------------------------------------------------------------------- /assets/images/has_many_through.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/has_many_through.png -------------------------------------------------------------------------------- /assets/images/has_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/has_one.png -------------------------------------------------------------------------------- /assets/images/has_one_through.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/has_one_through.png -------------------------------------------------------------------------------- /assets/images/header_backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/header_backdrop.png -------------------------------------------------------------------------------- /assets/images/header_tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/header_tile.gif -------------------------------------------------------------------------------- /assets/images/i18n/demo_html_safe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/i18n/demo_html_safe.png -------------------------------------------------------------------------------- /assets/images/i18n/demo_localized_pirate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/i18n/demo_localized_pirate.png -------------------------------------------------------------------------------- /assets/images/i18n/demo_translated_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/i18n/demo_translated_en.png -------------------------------------------------------------------------------- /assets/images/i18n/demo_translated_pirate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/i18n/demo_translated_pirate.png -------------------------------------------------------------------------------- /assets/images/i18n/demo_translation_missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/i18n/demo_translation_missing.png -------------------------------------------------------------------------------- /assets/images/i18n/demo_untranslated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/i18n/demo_untranslated.png -------------------------------------------------------------------------------- /assets/images/icons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/README -------------------------------------------------------------------------------- /assets/images/icons/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/1.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/10.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/11.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/12.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/13.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/14.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/15.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/2.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/3.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/4.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/5.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/6.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/7.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/8.png -------------------------------------------------------------------------------- /assets/images/icons/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/callouts/9.png -------------------------------------------------------------------------------- /assets/images/icons/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/caution.png -------------------------------------------------------------------------------- /assets/images/icons/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/example.png -------------------------------------------------------------------------------- /assets/images/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/favicon.ico -------------------------------------------------------------------------------- /assets/images/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/home.png -------------------------------------------------------------------------------- /assets/images/icons/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/important.png -------------------------------------------------------------------------------- /assets/images/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/next.png -------------------------------------------------------------------------------- /assets/images/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/note.png -------------------------------------------------------------------------------- /assets/images/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/prev.png -------------------------------------------------------------------------------- /assets/images/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/tip.png -------------------------------------------------------------------------------- /assets/images/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/up.png -------------------------------------------------------------------------------- /assets/images/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/icons/warning.png -------------------------------------------------------------------------------- /assets/images/jaimeiniesta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/jaimeiniesta.jpg -------------------------------------------------------------------------------- /assets/images/nav_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/nav_arrow.gif -------------------------------------------------------------------------------- /assets/images/polymorphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/polymorphic.png -------------------------------------------------------------------------------- /assets/images/posts_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/posts_index.png -------------------------------------------------------------------------------- /assets/images/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/radar.png -------------------------------------------------------------------------------- /assets/images/rails_guides_kindle_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/rails_guides_kindle_cover.jpg -------------------------------------------------------------------------------- /assets/images/rails_guides_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/rails_guides_logo.gif -------------------------------------------------------------------------------- /assets/images/rails_logo_remix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/rails_logo_remix.gif -------------------------------------------------------------------------------- /assets/images/rails_welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/rails_welcome.png -------------------------------------------------------------------------------- /assets/images/session_fixation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/session_fixation.png -------------------------------------------------------------------------------- /assets/images/tab_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/tab_grey.gif -------------------------------------------------------------------------------- /assets/images/tab_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/tab_info.gif -------------------------------------------------------------------------------- /assets/images/tab_note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/tab_note.gif -------------------------------------------------------------------------------- /assets/images/tab_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/tab_red.gif -------------------------------------------------------------------------------- /assets/images/tab_yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/tab_yellow.gif -------------------------------------------------------------------------------- /assets/images/tab_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/tab_yellow.png -------------------------------------------------------------------------------- /assets/images/validation_error_messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/validation_error_messages.png -------------------------------------------------------------------------------- /assets/images/vijaydev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/images/vijaydev.jpg -------------------------------------------------------------------------------- /assets/javascripts/guides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/guides.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushAS3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushAS3.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushAppleScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushBash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushBash.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushCSharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushCSharp.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushColdFusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushCpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushCpp.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushCss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushCss.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushDelphi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushDelphi.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushDiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushDiff.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushErlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushErlang.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushGroovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushGroovy.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushJScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushJScript.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushJava.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushJava.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushJavaFX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushPerl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushPerl.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushPhp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushPhp.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushPlain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushPlain.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushPowerShell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushPowerShell.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushPython.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushPython.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushRuby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushRuby.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushSass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushSass.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushScala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushScala.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushSql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushSql.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushVb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushVb.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shBrushXml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shBrushXml.js -------------------------------------------------------------------------------- /assets/javascripts/syntaxhighlighter/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/javascripts/syntaxhighlighter/shCore.js -------------------------------------------------------------------------------- /assets/stylesheets/fixes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/fixes.css -------------------------------------------------------------------------------- /assets/stylesheets/kindle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/kindle.css -------------------------------------------------------------------------------- /assets/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/main.css -------------------------------------------------------------------------------- /assets/stylesheets/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/print.css -------------------------------------------------------------------------------- /assets/stylesheets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/reset.css -------------------------------------------------------------------------------- /assets/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/style.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shCore.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shCoreDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shCoreDefault.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shCoreDjango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shCoreDjango.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shCoreEclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shCoreEclipse.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shCoreEmacs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shCoreEmacs.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shCoreFadeToGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shCoreFadeToGrey.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shCoreMDUltra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shCoreMDUltra.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shCoreMidnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shCoreMidnight.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shCoreRDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shCoreRDark.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shThemeDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shThemeDefault.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shThemeDjango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shThemeDjango.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shThemeEclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shThemeEclipse.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shThemeEmacs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shThemeEmacs.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shThemeFadeToGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shThemeFadeToGrey.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shThemeMDUltra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shThemeMDUltra.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shThemeMidnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shThemeMidnight.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shThemeRDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shThemeRDark.css -------------------------------------------------------------------------------- /assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /rails_guides.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/rails_guides.rb -------------------------------------------------------------------------------- /rails_guides/body_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/rails_guides/body_converter.rb -------------------------------------------------------------------------------- /rails_guides/check_anchors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/rails_guides/check_anchors.rb -------------------------------------------------------------------------------- /rails_guides/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/rails_guides/generator.rb -------------------------------------------------------------------------------- /rails_guides/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/rails_guides/helpers.rb -------------------------------------------------------------------------------- /rails_guides/indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/rails_guides/indexer.rb -------------------------------------------------------------------------------- /rails_guides/levenshtein.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/rails_guides/levenshtein.rb -------------------------------------------------------------------------------- /rails_guides/markdown_render.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/rails_guides/markdown_render.rb -------------------------------------------------------------------------------- /rails_guides/text_process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/rails_guides/text_process.rb -------------------------------------------------------------------------------- /rails_guides/version.rb: -------------------------------------------------------------------------------- 1 | RailsGuides::Version = "3.2.8" 2 | -------------------------------------------------------------------------------- /source/CN/2_2_release_notes.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/2_2_release_notes.textile -------------------------------------------------------------------------------- /source/CN/2_3_release_notes.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/2_3_release_notes.textile -------------------------------------------------------------------------------- /source/CN/3_0_release_notes.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/3_0_release_notes.textile -------------------------------------------------------------------------------- /source/CN/3_1_release_notes.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/3_1_release_notes.textile -------------------------------------------------------------------------------- /source/CN/3_2_release_notes.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/3_2_release_notes.textile -------------------------------------------------------------------------------- /source/CN/_feedback.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/_feedback.html.erb -------------------------------------------------------------------------------- /source/CN/_license.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/_license.html.erb -------------------------------------------------------------------------------- /source/CN/_welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/_welcome.html.erb -------------------------------------------------------------------------------- /source/CN/action_controller_overview.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/action_controller_overview.textile -------------------------------------------------------------------------------- /source/CN/action_mailer_basics.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/action_mailer_basics.textile -------------------------------------------------------------------------------- /source/CN/action_view_overview.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/action_view_overview.textile -------------------------------------------------------------------------------- /source/CN/active_model_basics.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/active_model_basics.textile -------------------------------------------------------------------------------- /source/CN/active_record_basics.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/active_record_basics.textile -------------------------------------------------------------------------------- /source/CN/active_record_querying.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/active_record_querying.textile -------------------------------------------------------------------------------- /source/CN/active_record_validations_callbacks.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/active_record_validations_callbacks.textile -------------------------------------------------------------------------------- /source/CN/active_support_core_extensions.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/active_support_core_extensions.textile -------------------------------------------------------------------------------- /source/CN/active_support_instrumentation.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/active_support_instrumentation.textile -------------------------------------------------------------------------------- /source/CN/ajax_on_rails.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/ajax_on_rails.textile -------------------------------------------------------------------------------- /source/CN/api_documentation_guidelines.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/api_documentation_guidelines.textile -------------------------------------------------------------------------------- /source/CN/asset_pipeline.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/asset_pipeline.textile -------------------------------------------------------------------------------- /source/CN/association_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/association_basics.md -------------------------------------------------------------------------------- /source/CN/caching_with_rails.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/caching_with_rails.textile -------------------------------------------------------------------------------- /source/CN/command_line.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/command_line.textile -------------------------------------------------------------------------------- /source/CN/configuring.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/configuring.textile -------------------------------------------------------------------------------- /source/CN/contributing_to_ruby_on_rails.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/contributing_to_ruby_on_rails.textile -------------------------------------------------------------------------------- /source/CN/credits.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/credits.html.erb -------------------------------------------------------------------------------- /source/CN/debugging_rails_applications.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/debugging_rails_applications.textile -------------------------------------------------------------------------------- /source/CN/engines.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/engines.textile -------------------------------------------------------------------------------- /source/CN/form_helpers.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/form_helpers.textile -------------------------------------------------------------------------------- /source/CN/generators.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/generators.textile -------------------------------------------------------------------------------- /source/CN/getting_started.backup.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/getting_started.backup.textile -------------------------------------------------------------------------------- /source/CN/getting_started.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/getting_started.textile -------------------------------------------------------------------------------- /source/CN/i18n.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/i18n.textile -------------------------------------------------------------------------------- /source/CN/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/index.html.erb -------------------------------------------------------------------------------- /source/CN/initialization.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/initialization.textile -------------------------------------------------------------------------------- /source/CN/layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/layout.html.erb -------------------------------------------------------------------------------- /source/CN/layouts_and_rendering.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/layouts_and_rendering.textile -------------------------------------------------------------------------------- /source/CN/migrations.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/migrations.textile -------------------------------------------------------------------------------- /source/CN/nested_model_forms.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/nested_model_forms.textile -------------------------------------------------------------------------------- /source/CN/performance_testing.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/performance_testing.textile -------------------------------------------------------------------------------- /source/CN/plugins.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/plugins.textile -------------------------------------------------------------------------------- /source/CN/rails_application_templates.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/rails_application_templates.textile -------------------------------------------------------------------------------- /source/CN/rails_on_rack.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/rails_on_rack.textile -------------------------------------------------------------------------------- /source/CN/routing.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/routing.textile -------------------------------------------------------------------------------- /source/CN/ruby_on_rails_guides_guidelines.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/ruby_on_rails_guides_guidelines.textile -------------------------------------------------------------------------------- /source/CN/security.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/security.textile -------------------------------------------------------------------------------- /source/CN/testing.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/testing.textile -------------------------------------------------------------------------------- /source/CN/upgrading_ruby_on_rails.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/CN/upgrading_ruby_on_rails.textile -------------------------------------------------------------------------------- /source/EN/2_2_release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/2_2_release_notes.md -------------------------------------------------------------------------------- /source/EN/2_2_release_notes.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/2_2_release_notes.textile -------------------------------------------------------------------------------- /source/EN/2_3_release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/2_3_release_notes.md -------------------------------------------------------------------------------- /source/EN/2_3_release_notes.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/2_3_release_notes.textile -------------------------------------------------------------------------------- /source/EN/3_0_release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/3_0_release_notes.md -------------------------------------------------------------------------------- /source/EN/3_0_release_notes.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/3_0_release_notes.textile -------------------------------------------------------------------------------- /source/EN/3_1_release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/3_1_release_notes.md -------------------------------------------------------------------------------- /source/EN/3_1_release_notes.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/3_1_release_notes.textile -------------------------------------------------------------------------------- /source/EN/3_2_release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/3_2_release_notes.md -------------------------------------------------------------------------------- /source/EN/3_2_release_notes.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/3_2_release_notes.textile -------------------------------------------------------------------------------- /source/EN/4_0_release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/4_0_release_notes.md -------------------------------------------------------------------------------- /source/EN/_license.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/_license.html.erb -------------------------------------------------------------------------------- /source/EN/_welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/_welcome.html.erb -------------------------------------------------------------------------------- /source/EN/action_controller_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/action_controller_overview.md -------------------------------------------------------------------------------- /source/EN/action_controller_overview.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/action_controller_overview.textile -------------------------------------------------------------------------------- /source/EN/action_mailer_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/action_mailer_basics.md -------------------------------------------------------------------------------- /source/EN/action_mailer_basics.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/action_mailer_basics.textile -------------------------------------------------------------------------------- /source/EN/action_view_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/action_view_overview.md -------------------------------------------------------------------------------- /source/EN/action_view_overview.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/action_view_overview.textile -------------------------------------------------------------------------------- /source/EN/active_model_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/active_model_basics.md -------------------------------------------------------------------------------- /source/EN/active_model_basics.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/active_model_basics.textile -------------------------------------------------------------------------------- /source/EN/active_record_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/active_record_basics.md -------------------------------------------------------------------------------- /source/EN/active_record_basics.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/active_record_basics.textile -------------------------------------------------------------------------------- /source/EN/active_record_querying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/active_record_querying.md -------------------------------------------------------------------------------- /source/EN/active_record_querying.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/active_record_querying.textile -------------------------------------------------------------------------------- /source/EN/active_record_validations_callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/active_record_validations_callbacks.md -------------------------------------------------------------------------------- /source/EN/active_record_validations_callbacks.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/active_record_validations_callbacks.textile -------------------------------------------------------------------------------- /source/EN/active_support_core_extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/active_support_core_extensions.md -------------------------------------------------------------------------------- /source/EN/active_support_core_extensions.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/active_support_core_extensions.textile -------------------------------------------------------------------------------- /source/EN/active_support_instrumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/active_support_instrumentation.md -------------------------------------------------------------------------------- /source/EN/active_support_instrumentation.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/active_support_instrumentation.textile -------------------------------------------------------------------------------- /source/EN/ajax_on_rails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/ajax_on_rails.md -------------------------------------------------------------------------------- /source/EN/ajax_on_rails.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/ajax_on_rails.textile -------------------------------------------------------------------------------- /source/EN/api_documentation_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/api_documentation_guidelines.md -------------------------------------------------------------------------------- /source/EN/api_documentation_guidelines.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/api_documentation_guidelines.textile -------------------------------------------------------------------------------- /source/EN/asset_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/asset_pipeline.md -------------------------------------------------------------------------------- /source/EN/asset_pipeline.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/asset_pipeline.textile -------------------------------------------------------------------------------- /source/EN/association_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/association_basics.md -------------------------------------------------------------------------------- /source/EN/association_basics.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/association_basics.textile -------------------------------------------------------------------------------- /source/EN/caching_with_rails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/caching_with_rails.md -------------------------------------------------------------------------------- /source/EN/caching_with_rails.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/caching_with_rails.textile -------------------------------------------------------------------------------- /source/EN/command_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/command_line.md -------------------------------------------------------------------------------- /source/EN/command_line.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/command_line.textile -------------------------------------------------------------------------------- /source/EN/configuring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/configuring.md -------------------------------------------------------------------------------- /source/EN/configuring.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/configuring.textile -------------------------------------------------------------------------------- /source/EN/contributing_to_ruby_on_rails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/contributing_to_ruby_on_rails.md -------------------------------------------------------------------------------- /source/EN/contributing_to_ruby_on_rails.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/contributing_to_ruby_on_rails.textile -------------------------------------------------------------------------------- /source/EN/credits.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/credits.html.erb -------------------------------------------------------------------------------- /source/EN/debugging_rails_applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/debugging_rails_applications.md -------------------------------------------------------------------------------- /source/EN/debugging_rails_applications.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/debugging_rails_applications.textile -------------------------------------------------------------------------------- /source/EN/development_dependencies_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/development_dependencies_install.md -------------------------------------------------------------------------------- /source/EN/documents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/documents.yaml -------------------------------------------------------------------------------- /source/EN/engines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/engines.md -------------------------------------------------------------------------------- /source/EN/engines.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/engines.textile -------------------------------------------------------------------------------- /source/EN/form_helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/form_helpers.md -------------------------------------------------------------------------------- /source/EN/form_helpers.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/form_helpers.textile -------------------------------------------------------------------------------- /source/EN/generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/generators.md -------------------------------------------------------------------------------- /source/EN/generators.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/generators.textile -------------------------------------------------------------------------------- /source/EN/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/getting_started.md -------------------------------------------------------------------------------- /source/EN/getting_started.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/getting_started.textile -------------------------------------------------------------------------------- /source/EN/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/i18n.md -------------------------------------------------------------------------------- /source/EN/i18n.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/i18n.textile -------------------------------------------------------------------------------- /source/EN/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/index.html.erb -------------------------------------------------------------------------------- /source/EN/initialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/initialization.md -------------------------------------------------------------------------------- /source/EN/initialization.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/initialization.textile -------------------------------------------------------------------------------- /source/EN/layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/layout.html.erb -------------------------------------------------------------------------------- /source/EN/layouts_and_rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/layouts_and_rendering.md -------------------------------------------------------------------------------- /source/EN/layouts_and_rendering.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/layouts_and_rendering.textile -------------------------------------------------------------------------------- /source/EN/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/migrations.md -------------------------------------------------------------------------------- /source/EN/migrations.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/migrations.textile -------------------------------------------------------------------------------- /source/EN/nested_model_forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/nested_model_forms.md -------------------------------------------------------------------------------- /source/EN/nested_model_forms.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/nested_model_forms.textile -------------------------------------------------------------------------------- /source/EN/performance_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/performance_testing.md -------------------------------------------------------------------------------- /source/EN/performance_testing.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/performance_testing.textile -------------------------------------------------------------------------------- /source/EN/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/plugins.md -------------------------------------------------------------------------------- /source/EN/plugins.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/plugins.textile -------------------------------------------------------------------------------- /source/EN/rails_application_templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/rails_application_templates.md -------------------------------------------------------------------------------- /source/EN/rails_application_templates.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/rails_application_templates.textile -------------------------------------------------------------------------------- /source/EN/rails_on_rack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/rails_on_rack.md -------------------------------------------------------------------------------- /source/EN/rails_on_rack.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/rails_on_rack.textile -------------------------------------------------------------------------------- /source/EN/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/routing.md -------------------------------------------------------------------------------- /source/EN/routing.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/routing.textile -------------------------------------------------------------------------------- /source/EN/ruby_on_rails_guides_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/ruby_on_rails_guides_guidelines.md -------------------------------------------------------------------------------- /source/EN/ruby_on_rails_guides_guidelines.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/ruby_on_rails_guides_guidelines.textile -------------------------------------------------------------------------------- /source/EN/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/security.md -------------------------------------------------------------------------------- /source/EN/security.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/security.textile -------------------------------------------------------------------------------- /source/EN/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/testing.md -------------------------------------------------------------------------------- /source/EN/testing.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/testing.textile -------------------------------------------------------------------------------- /source/EN/upgrading_ruby_on_rails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/upgrading_ruby_on_rails.md -------------------------------------------------------------------------------- /source/EN/upgrading_ruby_on_rails.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/EN/upgrading_ruby_on_rails.textile -------------------------------------------------------------------------------- /source/documents_CN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/documents_CN.yaml -------------------------------------------------------------------------------- /source/documents_EN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/documents_EN.yaml -------------------------------------------------------------------------------- /source/kindle/KINDLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/kindle/KINDLE.md -------------------------------------------------------------------------------- /source/kindle/KINDLE.md~HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/kindle/KINDLE.md~HEAD -------------------------------------------------------------------------------- /source/kindle/copyright.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'license' %> -------------------------------------------------------------------------------- /source/kindle/copyright.html.erb~HEAD: -------------------------------------------------------------------------------- 1 | <%= render 'license' %> -------------------------------------------------------------------------------- /source/kindle/layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/kindle/layout.html.erb -------------------------------------------------------------------------------- /source/kindle/layout.html.erb~HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/kindle/layout.html.erb~HEAD -------------------------------------------------------------------------------- /source/kindle/rails_guides.opf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/kindle/rails_guides.opf.erb -------------------------------------------------------------------------------- /source/kindle/rails_guides.opf.erb~HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/kindle/rails_guides.opf.erb~HEAD -------------------------------------------------------------------------------- /source/kindle/toc.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/kindle/toc.html.erb -------------------------------------------------------------------------------- /source/kindle/toc.html.erb~HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/kindle/toc.html.erb~HEAD -------------------------------------------------------------------------------- /source/kindle/toc.ncx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/kindle/toc.ncx.erb -------------------------------------------------------------------------------- /source/kindle/toc.ncx.erb~HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/kindle/toc.ncx.erb~HEAD -------------------------------------------------------------------------------- /source/kindle/welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/kindle/welcome.html.erb -------------------------------------------------------------------------------- /source/kindle/welcome.html.erb~HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/source/kindle/welcome.html.erb~HEAD -------------------------------------------------------------------------------- /w3c_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-china/rails-guides-old/HEAD/w3c_validator.rb --------------------------------------------------------------------------------