railties 3.2.22.5 → 4.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +186 -78
- data/README.rdoc +4 -2
- data/lib/rails.rb +11 -44
- data/lib/rails/all.rb +0 -1
- data/lib/rails/app_rails_loader.rb +37 -0
- data/lib/rails/application.rb +176 -124
- data/lib/rails/application/bootstrap.rb +29 -23
- data/lib/rails/application/configuration.rb +54 -48
- data/lib/rails/application/finisher.rb +8 -12
- data/lib/rails/application/routes_reloader.rb +2 -2
- data/lib/rails/backtrace_cleaner.rb +1 -16
- data/lib/rails/cli.rb +2 -2
- data/lib/rails/code_statistics.rb +30 -45
- data/lib/rails/code_statistics_calculator.rb +79 -0
- data/lib/rails/commands.rb +44 -37
- data/lib/rails/commands/application.rb +14 -9
- data/lib/rails/commands/console.rb +77 -33
- data/lib/rails/commands/dbconsole.rb +115 -64
- data/lib/rails/commands/destroy.rb +2 -3
- data/lib/rails/commands/generate.rb +2 -3
- data/lib/rails/commands/plugin_new.rb +0 -2
- data/lib/rails/commands/runner.rb +4 -5
- data/lib/rails/commands/server.rb +28 -9
- data/lib/rails/commands/update.rb +1 -1
- data/lib/rails/configuration.rb +35 -8
- data/lib/rails/console/app.rb +0 -4
- data/lib/rails/deprecation.rb +19 -0
- data/lib/rails/engine.rb +111 -92
- data/lib/rails/engine/commands.rb +1 -3
- data/lib/rails/engine/configuration.rb +26 -19
- data/lib/rails/engine/railties.rb +14 -18
- data/lib/rails/generators.rb +30 -50
- data/lib/rails/generators/actions.rb +38 -103
- data/lib/rails/generators/active_model.rb +14 -6
- data/lib/rails/generators/app_base.rb +70 -83
- data/lib/rails/generators/base.rb +23 -35
- data/lib/rails/generators/css/assets/assets_generator.rb +3 -3
- data/lib/rails/generators/css/scaffold/scaffold_generator.rb +3 -3
- data/lib/rails/generators/erb.rb +2 -2
- data/lib/rails/generators/erb/controller/controller_generator.rb +4 -4
- data/lib/rails/generators/erb/mailer/mailer_generator.rb +3 -3
- data/lib/rails/generators/erb/scaffold/scaffold_generator.rb +4 -4
- data/lib/rails/generators/erb/scaffold/templates/index.html.erb +18 -14
- data/lib/rails/generators/erb/scaffold/templates/show.html.erb +1 -1
- data/lib/rails/generators/generated_attribute.rb +51 -16
- data/lib/rails/generators/js/assets/assets_generator.rb +3 -3
- data/lib/rails/generators/migration.rb +1 -5
- data/lib/rails/generators/named_base.rb +20 -25
- data/lib/rails/generators/rails/app/app_generator.rb +40 -48
- data/lib/rails/generators/rails/app/templates/Gemfile +8 -7
- data/lib/rails/generators/rails/app/templates/README.rdoc +28 -0
- data/lib/rails/generators/rails/app/templates/Rakefile +0 -1
- data/lib/rails/generators/rails/app/templates/app/assets/javascripts/application.js.tt +2 -1
- data/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb.tt +5 -0
- data/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +2 -2
- data/lib/rails/generators/rails/app/templates/bin/bundle +2 -0
- data/lib/rails/generators/rails/app/templates/bin/rails +3 -0
- data/lib/rails/generators/rails/app/templates/bin/rake +3 -0
- data/lib/rails/generators/rails/app/templates/config/application.rb +5 -43
- data/lib/rails/generators/rails/app/templates/config/boot.rb +0 -2
- data/lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml +2 -2
- data/lib/rails/generators/rails/app/templates/config/databases/mysql.yml +1 -4
- data/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml +8 -3
- data/lib/rails/generators/rails/app/templates/config/databases/sqlserver.yml +57 -0
- data/lib/rails/generators/rails/app/templates/config/environment.rb +2 -2
- data/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +9 -19
- data/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +40 -29
- data/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +12 -15
- data/lib/rails/generators/rails/app/templates/config/initializers/filter_parameter_logging.rb +4 -0
- data/lib/rails/generators/rails/app/templates/config/initializers/inflections.rb +6 -5
- data/lib/rails/generators/rails/app/templates/config/initializers/secret_token.rb.tt +6 -1
- data/lib/rails/generators/rails/app/templates/config/initializers/session_store.rb.tt +1 -6
- data/lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt +6 -6
- data/lib/rails/generators/rails/app/templates/config/locales/en.yml +20 -2
- data/lib/rails/generators/rails/app/templates/config/routes.rb +15 -24
- data/lib/rails/generators/rails/app/templates/db/seeds.rb.tt +2 -2
- data/lib/rails/generators/rails/app/templates/gitignore +3 -2
- data/lib/rails/generators/rails/app/templates/public/404.html +2 -1
- data/lib/rails/generators/rails/app/templates/public/422.html +1 -1
- data/lib/rails/generators/rails/app/templates/public/500.html +2 -1
- data/lib/rails/generators/rails/app/templates/public/robots.txt +1 -1
- data/lib/rails/generators/rails/app/templates/test/test_helper.rb +3 -1
- data/lib/rails/generators/rails/assets/assets_generator.rb +5 -5
- data/lib/rails/generators/rails/controller/USAGE +7 -7
- data/lib/rails/generators/rails/controller/controller_generator.rb +3 -3
- data/lib/rails/generators/rails/controller/templates/controller.rb +1 -1
- data/lib/rails/generators/rails/generator/generator_generator.rb +4 -4
- data/lib/rails/generators/rails/helper/USAGE +1 -1
- data/lib/rails/generators/rails/helper/helper_generator.rb +2 -2
- data/lib/rails/generators/rails/integration_test/integration_test_generator.rb +2 -2
- data/lib/rails/generators/rails/migration/USAGE +12 -6
- data/lib/rails/generators/rails/migration/migration_generator.rb +3 -3
- data/lib/rails/generators/rails/model/USAGE +53 -4
- data/lib/rails/generators/rails/model/model_generator.rb +3 -3
- data/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb +81 -39
- data/lib/rails/generators/rails/plugin_new/templates/%name%.gemspec +2 -2
- data/lib/rails/generators/rails/plugin_new/templates/Gemfile +16 -1
- data/lib/rails/generators/rails/plugin_new/templates/Rakefile +3 -9
- data/lib/rails/generators/rails/plugin_new/templates/app/controllers/%name%/application_controller.rb.tt +0 -1
- data/lib/rails/generators/rails/plugin_new/templates/app/views/layouts/%name%/application.html.erb.tt +1 -1
- data/lib/rails/generators/rails/plugin_new/templates/{script → bin}/rails.tt +0 -0
- data/lib/rails/generators/rails/plugin_new/templates/gitignore +3 -0
- data/lib/rails/generators/rails/plugin_new/templates/lib/%name%.rb +1 -1
- data/lib/rails/generators/rails/plugin_new/templates/rails/application.rb +0 -1
- data/lib/rails/generators/rails/plugin_new/templates/rails/boot.rb +0 -1
- data/lib/rails/generators/rails/resource/resource_generator.rb +5 -5
- data/lib/rails/generators/rails/resource_route/resource_route_generator.rb +2 -2
- data/lib/rails/generators/rails/scaffold/scaffold_generator.rb +11 -7
- data/lib/rails/generators/rails/scaffold_controller/USAGE +4 -4
- data/lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb +9 -7
- data/lib/rails/generators/rails/scaffold_controller/templates/controller.rb +27 -48
- data/lib/rails/generators/rails/task/task_generator.rb +2 -2
- data/lib/rails/generators/rails/task/templates/task.rb +1 -1
- data/lib/rails/generators/resource_helpers.rb +3 -5
- data/lib/rails/generators/test_case.rb +22 -28
- data/lib/rails/generators/test_unit.rb +3 -3
- data/lib/rails/generators/test_unit/controller/controller_generator.rb +6 -6
- data/lib/rails/generators/test_unit/helper/helper_generator.rb +5 -5
- data/lib/rails/generators/test_unit/integration/integration_generator.rb +4 -4
- data/lib/rails/generators/test_unit/mailer/mailer_generator.rb +6 -6
- data/lib/rails/generators/test_unit/model/model_generator.rb +7 -7
- data/lib/rails/generators/test_unit/model/templates/fixtures.yml +8 -2
- data/lib/rails/generators/test_unit/plugin/plugin_generator.rb +4 -4
- data/lib/rails/generators/test_unit/plugin/templates/test_helper.rb +1 -2
- data/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +10 -19
- data/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb +5 -5
- data/lib/rails/info.rb +3 -3
- data/lib/rails/info_controller.rb +26 -8
- data/lib/rails/initializable.rb +2 -2
- data/lib/rails/paths.rb +59 -54
- data/lib/rails/rack/debugger.rb +2 -2
- data/lib/rails/rack/logger.rb +33 -8
- data/lib/rails/railtie.rb +24 -24
- data/lib/rails/railtie/configurable.rb +1 -1
- data/lib/rails/railtie/configuration.rb +15 -5
- data/lib/rails/ruby_version_check.rb +3 -13
- data/lib/rails/rubyprof_ext.rb +1 -1
- data/lib/rails/source_annotation_extractor.rb +40 -17
- data/lib/rails/tasks/annotations.rake +1 -1
- data/lib/rails/tasks/documentation.rake +10 -57
- data/lib/rails/tasks/engine.rake +1 -1
- data/lib/rails/tasks/framework.rake +9 -9
- data/lib/rails/tasks/log.rake +18 -4
- data/lib/rails/tasks/middleware.rake +1 -1
- data/lib/rails/tasks/misc.rake +2 -9
- data/lib/rails/tasks/routes.rake +4 -6
- data/lib/rails/tasks/statistics.rake +8 -2
- data/lib/rails/tasks/tmp.rake +12 -4
- data/lib/rails/templates/layouts/application.html.erb +36 -0
- data/lib/rails/templates/rails/info/properties.html.erb +1 -0
- data/lib/rails/templates/rails/info/routes.html.erb +9 -0
- data/lib/rails/{generators/rails/app/templates/public/index.html → templates/rails/welcome/index.html.erb} +18 -14
- data/lib/rails/test_help.rb +6 -29
- data/lib/rails/test_unit/railtie.rb +2 -3
- data/lib/rails/test_unit/testing.rake +45 -33
- data/lib/rails/version.rb +4 -4
- data/lib/rails/welcome_controller.rb +7 -0
- metadata +86 -378
- data/guides/assets/images/belongs_to.png +0 -0
- data/guides/assets/images/book_icon.gif +0 -0
- data/guides/assets/images/bullet.gif +0 -0
- data/guides/assets/images/challenge.png +0 -0
- data/guides/assets/images/chapters_icon.gif +0 -0
- data/guides/assets/images/check_bullet.gif +0 -0
- data/guides/assets/images/credits_pic_blank.gif +0 -0
- data/guides/assets/images/csrf.png +0 -0
- data/guides/assets/images/customized_error_messages.png +0 -0
- data/guides/assets/images/edge_badge.png +0 -0
- data/guides/assets/images/error_messages.png +0 -0
- data/guides/assets/images/feature_tile.gif +0 -0
- data/guides/assets/images/footer_tile.gif +0 -0
- data/guides/assets/images/fxn.png +0 -0
- data/guides/assets/images/grey_bullet.gif +0 -0
- data/guides/assets/images/habtm.png +0 -0
- data/guides/assets/images/has_many.png +0 -0
- data/guides/assets/images/has_many_through.png +0 -0
- data/guides/assets/images/has_one.png +0 -0
- data/guides/assets/images/has_one_through.png +0 -0
- data/guides/assets/images/header_backdrop.png +0 -0
- data/guides/assets/images/header_tile.gif +0 -0
- data/guides/assets/images/i18n/demo_html_safe.png +0 -0
- data/guides/assets/images/i18n/demo_localized_pirate.png +0 -0
- data/guides/assets/images/i18n/demo_translated_en.png +0 -0
- data/guides/assets/images/i18n/demo_translated_pirate.png +0 -0
- data/guides/assets/images/i18n/demo_translation_missing.png +0 -0
- data/guides/assets/images/i18n/demo_untranslated.png +0 -0
- data/guides/assets/images/icons/README +0 -5
- data/guides/assets/images/icons/callouts/1.png +0 -0
- data/guides/assets/images/icons/callouts/10.png +0 -0
- data/guides/assets/images/icons/callouts/11.png +0 -0
- data/guides/assets/images/icons/callouts/12.png +0 -0
- data/guides/assets/images/icons/callouts/13.png +0 -0
- data/guides/assets/images/icons/callouts/14.png +0 -0
- data/guides/assets/images/icons/callouts/15.png +0 -0
- data/guides/assets/images/icons/callouts/2.png +0 -0
- data/guides/assets/images/icons/callouts/3.png +0 -0
- data/guides/assets/images/icons/callouts/4.png +0 -0
- data/guides/assets/images/icons/callouts/5.png +0 -0
- data/guides/assets/images/icons/callouts/6.png +0 -0
- data/guides/assets/images/icons/callouts/7.png +0 -0
- data/guides/assets/images/icons/callouts/8.png +0 -0
- data/guides/assets/images/icons/callouts/9.png +0 -0
- data/guides/assets/images/icons/caution.png +0 -0
- data/guides/assets/images/icons/example.png +0 -0
- data/guides/assets/images/icons/home.png +0 -0
- data/guides/assets/images/icons/important.png +0 -0
- data/guides/assets/images/icons/next.png +0 -0
- data/guides/assets/images/icons/note.png +0 -0
- data/guides/assets/images/icons/prev.png +0 -0
- data/guides/assets/images/icons/tip.png +0 -0
- data/guides/assets/images/icons/up.png +0 -0
- data/guides/assets/images/icons/warning.png +0 -0
- data/guides/assets/images/jaimeiniesta.jpg +0 -0
- data/guides/assets/images/nav_arrow.gif +0 -0
- data/guides/assets/images/polymorphic.png +0 -0
- data/guides/assets/images/posts_index.png +0 -0
- data/guides/assets/images/radar.png +0 -0
- data/guides/assets/images/rails_guides_kindle_cover.jpg +0 -0
- data/guides/assets/images/rails_guides_logo.gif +0 -0
- data/guides/assets/images/rails_logo_remix.gif +0 -0
- data/guides/assets/images/rails_welcome.png +0 -0
- data/guides/assets/images/session_fixation.png +0 -0
- data/guides/assets/images/tab_grey.gif +0 -0
- data/guides/assets/images/tab_info.gif +0 -0
- data/guides/assets/images/tab_note.gif +0 -0
- data/guides/assets/images/tab_red.gif +0 -0
- data/guides/assets/images/tab_yellow.gif +0 -0
- data/guides/assets/images/tab_yellow.png +0 -0
- data/guides/assets/images/validation_error_messages.png +0 -0
- data/guides/assets/images/vijaydev.jpg +0 -0
- data/guides/assets/javascripts/guides.js +0 -7
- data/guides/assets/javascripts/syntaxhighlighter/shBrushAS3.js +0 -59
- data/guides/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js +0 -75
- data/guides/assets/javascripts/syntaxhighlighter/shBrushBash.js +0 -59
- data/guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js +0 -65
- data/guides/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js +0 -100
- data/guides/assets/javascripts/syntaxhighlighter/shBrushCpp.js +0 -97
- data/guides/assets/javascripts/syntaxhighlighter/shBrushCss.js +0 -91
- data/guides/assets/javascripts/syntaxhighlighter/shBrushDelphi.js +0 -55
- data/guides/assets/javascripts/syntaxhighlighter/shBrushDiff.js +0 -41
- data/guides/assets/javascripts/syntaxhighlighter/shBrushErlang.js +0 -52
- data/guides/assets/javascripts/syntaxhighlighter/shBrushGroovy.js +0 -67
- data/guides/assets/javascripts/syntaxhighlighter/shBrushJScript.js +0 -52
- data/guides/assets/javascripts/syntaxhighlighter/shBrushJava.js +0 -57
- data/guides/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js +0 -58
- data/guides/assets/javascripts/syntaxhighlighter/shBrushPerl.js +0 -72
- data/guides/assets/javascripts/syntaxhighlighter/shBrushPhp.js +0 -88
- data/guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js +0 -33
- data/guides/assets/javascripts/syntaxhighlighter/shBrushPowerShell.js +0 -74
- data/guides/assets/javascripts/syntaxhighlighter/shBrushPython.js +0 -64
- data/guides/assets/javascripts/syntaxhighlighter/shBrushRuby.js +0 -55
- data/guides/assets/javascripts/syntaxhighlighter/shBrushSass.js +0 -94
- data/guides/assets/javascripts/syntaxhighlighter/shBrushScala.js +0 -51
- data/guides/assets/javascripts/syntaxhighlighter/shBrushSql.js +0 -66
- data/guides/assets/javascripts/syntaxhighlighter/shBrushVb.js +0 -56
- data/guides/assets/javascripts/syntaxhighlighter/shBrushXml.js +0 -69
- data/guides/assets/javascripts/syntaxhighlighter/shCore.js +0 -17
- data/guides/assets/stylesheets/fixes.css +0 -16
- data/guides/assets/stylesheets/kindle.css +0 -11
- data/guides/assets/stylesheets/main.css +0 -453
- data/guides/assets/stylesheets/print.css +0 -52
- data/guides/assets/stylesheets/reset.css +0 -43
- data/guides/assets/stylesheets/style.css +0 -13
- data/guides/assets/stylesheets/syntaxhighlighter/shCore.css +0 -226
- data/guides/assets/stylesheets/syntaxhighlighter/shCoreDefault.css +0 -328
- data/guides/assets/stylesheets/syntaxhighlighter/shCoreDjango.css +0 -331
- data/guides/assets/stylesheets/syntaxhighlighter/shCoreEclipse.css +0 -339
- data/guides/assets/stylesheets/syntaxhighlighter/shCoreEmacs.css +0 -324
- data/guides/assets/stylesheets/syntaxhighlighter/shCoreFadeToGrey.css +0 -328
- data/guides/assets/stylesheets/syntaxhighlighter/shCoreMDUltra.css +0 -324
- data/guides/assets/stylesheets/syntaxhighlighter/shCoreMidnight.css +0 -324
- data/guides/assets/stylesheets/syntaxhighlighter/shCoreRDark.css +0 -324
- data/guides/assets/stylesheets/syntaxhighlighter/shThemeDefault.css +0 -117
- data/guides/assets/stylesheets/syntaxhighlighter/shThemeDjango.css +0 -120
- data/guides/assets/stylesheets/syntaxhighlighter/shThemeEclipse.css +0 -128
- data/guides/assets/stylesheets/syntaxhighlighter/shThemeEmacs.css +0 -113
- data/guides/assets/stylesheets/syntaxhighlighter/shThemeFadeToGrey.css +0 -117
- data/guides/assets/stylesheets/syntaxhighlighter/shThemeMDUltra.css +0 -113
- data/guides/assets/stylesheets/syntaxhighlighter/shThemeMidnight.css +0 -113
- data/guides/assets/stylesheets/syntaxhighlighter/shThemeRDark.css +0 -113
- data/guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css +0 -116
- data/guides/code/getting_started/Gemfile +0 -38
- data/guides/code/getting_started/README.rdoc +0 -261
- data/guides/code/getting_started/Rakefile +0 -7
- data/guides/code/getting_started/app/assets/images/rails.png +0 -0
- data/guides/code/getting_started/app/assets/javascripts/application.js +0 -15
- data/guides/code/getting_started/app/assets/javascripts/comments.js.coffee +0 -3
- data/guides/code/getting_started/app/assets/javascripts/home.js.coffee +0 -3
- data/guides/code/getting_started/app/assets/javascripts/posts.js.coffee +0 -3
- data/guides/code/getting_started/app/assets/stylesheets/application.css +0 -13
- data/guides/code/getting_started/app/assets/stylesheets/comments.css.scss +0 -3
- data/guides/code/getting_started/app/assets/stylesheets/home.css.scss +0 -3
- data/guides/code/getting_started/app/assets/stylesheets/posts.css.scss +0 -3
- data/guides/code/getting_started/app/assets/stylesheets/scaffolds.css.scss +0 -56
- data/guides/code/getting_started/app/controllers/application_controller.rb +0 -3
- data/guides/code/getting_started/app/controllers/comments_controller.rb +0 -16
- data/guides/code/getting_started/app/controllers/home_controller.rb +0 -5
- data/guides/code/getting_started/app/controllers/posts_controller.rb +0 -84
- data/guides/code/getting_started/app/helpers/application_helper.rb +0 -2
- data/guides/code/getting_started/app/helpers/comments_helper.rb +0 -2
- data/guides/code/getting_started/app/helpers/home_helper.rb +0 -2
- data/guides/code/getting_started/app/helpers/posts_helper.rb +0 -5
- data/guides/code/getting_started/app/models/comment.rb +0 -3
- data/guides/code/getting_started/app/models/post.rb +0 -11
- data/guides/code/getting_started/app/models/tag.rb +0 -3
- data/guides/code/getting_started/app/views/comments/_comment.html.erb +0 -15
- data/guides/code/getting_started/app/views/comments/_form.html.erb +0 -13
- data/guides/code/getting_started/app/views/home/index.html.erb +0 -2
- data/guides/code/getting_started/app/views/layouts/application.html.erb +0 -14
- data/guides/code/getting_started/app/views/posts/_form.html.erb +0 -32
- data/guides/code/getting_started/app/views/posts/edit.html.erb +0 -6
- data/guides/code/getting_started/app/views/posts/index.html.erb +0 -27
- data/guides/code/getting_started/app/views/posts/new.html.erb +0 -5
- data/guides/code/getting_started/app/views/posts/show.html.erb +0 -31
- data/guides/code/getting_started/app/views/tags/_form.html.erb +0 -12
- data/guides/code/getting_started/config.ru +0 -4
- data/guides/code/getting_started/config/application.rb +0 -59
- data/guides/code/getting_started/config/boot.rb +0 -6
- data/guides/code/getting_started/config/database.yml +0 -25
- data/guides/code/getting_started/config/environment.rb +0 -5
- data/guides/code/getting_started/config/environments/development.rb +0 -37
- data/guides/code/getting_started/config/environments/production.rb +0 -67
- data/guides/code/getting_started/config/environments/test.rb +0 -37
- data/guides/code/getting_started/config/initializers/backtrace_silencers.rb +0 -7
- data/guides/code/getting_started/config/initializers/inflections.rb +0 -15
- data/guides/code/getting_started/config/initializers/mime_types.rb +0 -5
- data/guides/code/getting_started/config/initializers/secret_token.rb +0 -7
- data/guides/code/getting_started/config/initializers/session_store.rb +0 -8
- data/guides/code/getting_started/config/initializers/wrap_parameters.rb +0 -14
- data/guides/code/getting_started/config/locales/en.yml +0 -5
- data/guides/code/getting_started/config/routes.rb +0 -64
- data/guides/code/getting_started/db/migrate/20110901012504_create_posts.rb +0 -11
- data/guides/code/getting_started/db/migrate/20110901012815_create_comments.rb +0 -12
- data/guides/code/getting_started/db/migrate/20110901013701_create_tags.rb +0 -11
- data/guides/code/getting_started/db/schema.rb +0 -43
- data/guides/code/getting_started/db/seeds.rb +0 -7
- data/guides/code/getting_started/doc/README_FOR_APP +0 -2
- data/guides/code/getting_started/public/404.html +0 -26
- data/guides/code/getting_started/public/422.html +0 -26
- data/guides/code/getting_started/public/500.html +0 -25
- data/guides/code/getting_started/public/favicon.ico +0 -0
- data/guides/code/getting_started/public/robots.txt +0 -5
- data/guides/code/getting_started/script/rails +0 -6
- data/guides/code/getting_started/test/fixtures/comments.yml +0 -11
- data/guides/code/getting_started/test/fixtures/posts.yml +0 -11
- data/guides/code/getting_started/test/fixtures/tags.yml +0 -9
- data/guides/code/getting_started/test/functional/comments_controller_test.rb +0 -7
- data/guides/code/getting_started/test/functional/home_controller_test.rb +0 -9
- data/guides/code/getting_started/test/functional/posts_controller_test.rb +0 -49
- data/guides/code/getting_started/test/performance/browsing_test.rb +0 -12
- data/guides/code/getting_started/test/test_helper.rb +0 -13
- data/guides/code/getting_started/test/unit/comment_test.rb +0 -7
- data/guides/code/getting_started/test/unit/helpers/comments_helper_test.rb +0 -4
- data/guides/code/getting_started/test/unit/helpers/home_helper_test.rb +0 -4
- data/guides/code/getting_started/test/unit/helpers/posts_helper_test.rb +0 -4
- data/guides/code/getting_started/test/unit/post_test.rb +0 -7
- data/guides/code/getting_started/test/unit/tag_test.rb +0 -7
- data/guides/rails_guides.rb +0 -50
- data/guides/rails_guides/generator.rb +0 -310
- data/guides/rails_guides/helpers.rb +0 -45
- data/guides/rails_guides/indexer.rb +0 -69
- data/guides/rails_guides/levenshtein.rb +0 -31
- data/guides/rails_guides/textile_extensions.rb +0 -63
- data/guides/source/2_2_release_notes.textile +0 -422
- data/guides/source/2_3_release_notes.textile +0 -610
- data/guides/source/3_0_release_notes.textile +0 -595
- data/guides/source/3_1_release_notes.textile +0 -553
- data/guides/source/3_2_release_notes.textile +0 -540
- data/guides/source/_license.html.erb +0 -2
- data/guides/source/_welcome.html.erb +0 -19
- data/guides/source/action_controller_overview.textile +0 -820
- data/guides/source/action_mailer_basics.textile +0 -516
- data/guides/source/action_view_overview.textile +0 -1497
- data/guides/source/active_model_basics.textile +0 -205
- data/guides/source/active_record_basics.textile +0 -218
- data/guides/source/active_record_querying.textile +0 -1433
- data/guides/source/active_record_validations_callbacks.textile +0 -1287
- data/guides/source/active_resource_basics.textile +0 -120
- data/guides/source/active_support_core_extensions.textile +0 -3715
- data/guides/source/api_documentation_guidelines.textile +0 -185
- data/guides/source/asset_pipeline.textile +0 -707
- data/guides/source/association_basics.textile +0 -1959
- data/guides/source/caching_with_rails.textile +0 -437
- data/guides/source/command_line.textile +0 -574
- data/guides/source/configuring.textile +0 -643
- data/guides/source/contributing_to_ruby_on_rails.textile +0 -448
- data/guides/source/credits.html.erb +0 -72
- data/guides/source/debugging_rails_applications.textile +0 -714
- data/guides/source/documents.yaml +0 -157
- data/guides/source/engines.textile +0 -618
- data/guides/source/form_helpers.textile +0 -798
- data/guides/source/generators.textile +0 -621
- data/guides/source/getting_started.textile +0 -1931
- data/guides/source/i18n.textile +0 -931
- data/guides/source/index.html.erb +0 -30
- data/guides/source/initialization.textile +0 -1116
- data/guides/source/kindle/KINDLE.md +0 -26
- data/guides/source/kindle/copyright.html.erb +0 -1
- data/guides/source/kindle/layout.html.erb +0 -27
- data/guides/source/kindle/rails_guides.opf.erb +0 -52
- data/guides/source/kindle/toc.html.erb +0 -24
- data/guides/source/kindle/toc.ncx.erb +0 -64
- data/guides/source/kindle/welcome.html.erb +0 -5
- data/guides/source/layout.html.erb +0 -124
- data/guides/source/layouts_and_rendering.textile +0 -1237
- data/guides/source/migrations.textile +0 -900
- data/guides/source/nested_model_forms.textile +0 -222
- data/guides/source/performance_testing.textile +0 -597
- data/guides/source/plugins.textile +0 -464
- data/guides/source/rails_application_templates.textile +0 -240
- data/guides/source/rails_on_rack.textile +0 -236
- data/guides/source/routing.textile +0 -885
- data/guides/source/ruby_on_rails_guides_guidelines.textile +0 -79
- data/guides/source/security.textile +0 -1004
- data/guides/source/testing.textile +0 -947
- data/guides/w3c_validator.rb +0 -91
- data/lib/rails/application/railties.rb +0 -13
- data/lib/rails/application/route_inspector.rb +0 -84
- data/lib/rails/commands/benchmarker.rb +0 -34
- data/lib/rails/commands/plugin.rb +0 -544
- data/lib/rails/commands/profiler.rb +0 -33
- data/lib/rails/generators/rails/app/templates/README +0 -261
- data/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb +0 -3
- data/lib/rails/generators/rails/app/templates/app/mailers/.empty_directory +0 -0
- data/lib/rails/generators/rails/app/templates/app/models/.empty_directory +0 -0
- data/lib/rails/generators/rails/app/templates/doc/README_FOR_APP +0 -2
- data/lib/rails/generators/rails/app/templates/public/stylesheets/.empty_directory +0 -0
- data/lib/rails/generators/rails/app/templates/script/rails +0 -5
- data/lib/rails/generators/rails/app/templates/test/fixtures/.empty_directory +0 -0
- data/lib/rails/generators/rails/app/templates/test/functional/.empty_directory +0 -0
- data/lib/rails/generators/rails/app/templates/test/integration/.empty_directory +0 -0
- data/lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb +0 -12
- data/lib/rails/generators/rails/app/templates/test/unit/.empty_directory +0 -0
- data/lib/rails/generators/rails/generator/templates/templates/.empty_directory +0 -0
- data/lib/rails/generators/rails/observer/USAGE +0 -12
- data/lib/rails/generators/rails/observer/observer_generator.rb +0 -7
- data/lib/rails/generators/rails/performance_test/USAGE +0 -10
- data/lib/rails/generators/rails/performance_test/performance_test_generator.rb +0 -7
- data/lib/rails/generators/rails/plugin_new/templates/app/mailers/.empty_directory +0 -0
- data/lib/rails/generators/rails/plugin_new/templates/app/models/.empty_directory +0 -0
- data/lib/rails/generators/rails/session_migration/USAGE +0 -8
- data/lib/rails/generators/rails/session_migration/session_migration_generator.rb +0 -8
- data/lib/rails/generators/test_unit/observer/observer_generator.rb +0 -13
- data/lib/rails/generators/test_unit/observer/templates/unit_test.rb +0 -9
- data/lib/rails/generators/test_unit/performance/performance_generator.rb +0 -13
- data/lib/rails/generators/test_unit/performance/templates/performance_test.rb +0 -12
- data/lib/rails/performance_test_help.rb +0 -3
- data/lib/rails/plugin.rb +0 -92
- data/lib/rails/script_rails_loader.rb +0 -29
@@ -1,5 +1,3 @@
|
|
1
|
-
require 'active_support/core_ext/object/inclusion'
|
2
|
-
|
3
1
|
ARGV << '--help' if ARGV.empty?
|
4
2
|
|
5
3
|
aliases = {
|
@@ -25,7 +23,7 @@ when '--version', '-v'
|
|
25
23
|
require 'rails/commands/application'
|
26
24
|
|
27
25
|
else
|
28
|
-
puts "Error: Command not recognized" unless
|
26
|
+
puts "Error: Command not recognized" unless %w(-h --help).include?(command)
|
29
27
|
puts <<-EOT
|
30
28
|
Usage: rails COMMAND [ARGS]
|
31
29
|
|
@@ -5,7 +5,6 @@ module Rails
|
|
5
5
|
class Configuration < ::Rails::Railtie::Configuration
|
6
6
|
attr_reader :root
|
7
7
|
attr_writer :middleware, :eager_load_paths, :autoload_once_paths, :autoload_paths
|
8
|
-
attr_accessor :plugins
|
9
8
|
|
10
9
|
def initialize(root=nil)
|
11
10
|
super()
|
@@ -21,7 +20,7 @@ module Rails
|
|
21
20
|
# Holds generators configuration:
|
22
21
|
#
|
23
22
|
# config.generators do |g|
|
24
|
-
# g.orm :
|
23
|
+
# g.orm :data_mapper, migration: true
|
25
24
|
# g.template_engine :haml
|
26
25
|
# g.test_framework :rspec
|
27
26
|
# end
|
@@ -39,27 +38,35 @@ module Rails
|
|
39
38
|
def paths
|
40
39
|
@paths ||= begin
|
41
40
|
paths = Rails::Paths::Root.new(@root)
|
42
|
-
|
43
|
-
paths.add "app
|
44
|
-
paths.add "app/
|
45
|
-
paths.add "app/
|
46
|
-
paths.add "app/
|
47
|
-
paths.add "app/
|
41
|
+
|
42
|
+
paths.add "app", eager_load: true, glob: "*"
|
43
|
+
paths.add "app/assets", glob: "*"
|
44
|
+
paths.add "app/controllers", eager_load: true
|
45
|
+
paths.add "app/helpers", eager_load: true
|
46
|
+
paths.add "app/models", eager_load: true
|
47
|
+
paths.add "app/mailers", eager_load: true
|
48
48
|
paths.add "app/views"
|
49
|
-
|
50
|
-
paths.add "
|
51
|
-
paths.add "
|
49
|
+
|
50
|
+
paths.add "app/controllers/concerns", eager_load: true
|
51
|
+
paths.add "app/models/concerns", eager_load: true
|
52
|
+
|
53
|
+
paths.add "lib", load_path: true
|
54
|
+
paths.add "lib/assets", glob: "*"
|
55
|
+
paths.add "lib/tasks", glob: "**/*.rake"
|
56
|
+
|
52
57
|
paths.add "config"
|
53
|
-
paths.add "config/environments", :
|
54
|
-
paths.add "config/initializers", :
|
55
|
-
paths.add "config/locales", :
|
56
|
-
paths.add "config/routes
|
58
|
+
paths.add "config/environments", glob: "#{Rails.env}.rb"
|
59
|
+
paths.add "config/initializers", glob: "**/*.rb"
|
60
|
+
paths.add "config/locales", glob: "*.{rb,yml}"
|
61
|
+
paths.add "config/routes.rb"
|
62
|
+
|
57
63
|
paths.add "db"
|
58
64
|
paths.add "db/migrate"
|
59
|
-
paths.add "db/seeds
|
60
|
-
|
61
|
-
paths.add "vendor
|
62
|
-
paths.add "vendor/
|
65
|
+
paths.add "db/seeds.rb"
|
66
|
+
|
67
|
+
paths.add "vendor", load_path: true
|
68
|
+
paths.add "vendor/assets", glob: "*"
|
69
|
+
|
63
70
|
paths
|
64
71
|
end
|
65
72
|
end
|
@@ -1,33 +1,29 @@
|
|
1
1
|
module Rails
|
2
2
|
class Engine < Railtie
|
3
3
|
class Railties
|
4
|
-
|
5
|
-
|
6
|
-
@config = config
|
7
|
-
end
|
4
|
+
include Enumerable
|
5
|
+
attr_reader :_all
|
8
6
|
|
9
|
-
def
|
10
|
-
@
|
11
|
-
|
12
|
-
@all
|
7
|
+
def initialize
|
8
|
+
@_all ||= ::Rails::Railtie.subclasses.map(&:instance) +
|
9
|
+
::Rails::Engine.subclasses.map(&:instance)
|
13
10
|
end
|
14
11
|
|
15
|
-
def
|
16
|
-
@
|
17
|
-
plugin_names = (@config.plugins || [:all]).map { |p| p.to_sym }
|
18
|
-
Plugin.all(plugin_names, @config.paths["vendor/plugins"].existent)
|
19
|
-
end
|
12
|
+
def self.engines
|
13
|
+
@engines ||= ::Rails::Engine.subclasses.map(&:instance)
|
20
14
|
end
|
21
15
|
|
22
|
-
def
|
23
|
-
|
16
|
+
def each(*args, &block)
|
17
|
+
_all.each(*args, &block)
|
24
18
|
end
|
25
19
|
|
26
|
-
def
|
27
|
-
|
20
|
+
def -(others)
|
21
|
+
_all - others
|
28
22
|
end
|
29
23
|
|
30
|
-
delegate :
|
24
|
+
delegate :engines, to: "self.class"
|
31
25
|
end
|
32
26
|
end
|
33
27
|
end
|
28
|
+
|
29
|
+
ActiveSupport::Deprecation.deprecate_methods(Rails::Engine::Railties, :engines)
|
data/lib/rails/generators.rb
CHANGED
@@ -23,51 +23,40 @@ module Rails
|
|
23
23
|
mattr_accessor :namespace
|
24
24
|
|
25
25
|
DEFAULT_ALIASES = {
|
26
|
-
:
|
27
|
-
:
|
28
|
-
:
|
29
|
-
:
|
30
|
-
:
|
31
|
-
:
|
32
|
-
:
|
33
|
-
:
|
34
|
-
:
|
35
|
-
:
|
36
|
-
:
|
26
|
+
rails: {
|
27
|
+
actions: '-a',
|
28
|
+
orm: '-o',
|
29
|
+
javascripts: '-j',
|
30
|
+
javascript_engine: '-je',
|
31
|
+
resource_controller: '-c',
|
32
|
+
scaffold_controller: '-c',
|
33
|
+
stylesheets: '-y',
|
34
|
+
stylesheet_engine: '-se',
|
35
|
+
template_engine: '-e',
|
36
|
+
test_framework: '-t'
|
37
37
|
},
|
38
38
|
|
39
|
-
:
|
40
|
-
:
|
41
|
-
},
|
42
|
-
|
43
|
-
:plugin => {
|
44
|
-
:generator => '-g',
|
45
|
-
:tasks => '-r'
|
39
|
+
test_unit: {
|
40
|
+
fixture_replacement: '-r',
|
46
41
|
}
|
47
42
|
}
|
48
43
|
|
49
44
|
DEFAULT_OPTIONS = {
|
50
|
-
:
|
51
|
-
:
|
52
|
-
:
|
53
|
-
:
|
54
|
-
:
|
55
|
-
:
|
56
|
-
:
|
57
|
-
:
|
58
|
-
:
|
59
|
-
:
|
60
|
-
:
|
61
|
-
:
|
62
|
-
:
|
63
|
-
:
|
64
|
-
:
|
65
|
-
:template_engine => :erb
|
66
|
-
},
|
67
|
-
|
68
|
-
:plugin => {
|
69
|
-
:generator => false,
|
70
|
-
:tasks => false
|
45
|
+
rails: {
|
46
|
+
assets: true,
|
47
|
+
force_plural: false,
|
48
|
+
helper: true,
|
49
|
+
integration_tool: nil,
|
50
|
+
javascripts: true,
|
51
|
+
javascript_engine: :js,
|
52
|
+
orm: false,
|
53
|
+
resource_controller: :controller,
|
54
|
+
resource_route: true,
|
55
|
+
scaffold_controller: :scaffold_controller,
|
56
|
+
stylesheets: true,
|
57
|
+
stylesheet_engine: :css,
|
58
|
+
test_framework: false,
|
59
|
+
template_engine: :erb
|
71
60
|
}
|
72
61
|
}
|
73
62
|
|
@@ -81,7 +70,7 @@ module Rails
|
|
81
70
|
hide_namespaces(*config.hidden_namespaces)
|
82
71
|
end
|
83
72
|
|
84
|
-
def self.templates_path
|
73
|
+
def self.templates_path #:nodoc:
|
85
74
|
@templates_path ||= []
|
86
75
|
end
|
87
76
|
|
@@ -105,7 +94,6 @@ module Rails
|
|
105
94
|
# some of them are not available by adding a fallback:
|
106
95
|
#
|
107
96
|
# Rails::Generators.fallbacks[:shoulda] = :test_unit
|
108
|
-
#
|
109
97
|
def self.fallbacks
|
110
98
|
@fallbacks ||= {}
|
111
99
|
end
|
@@ -125,8 +113,6 @@ module Rails
|
|
125
113
|
# Generators names must end with "_generator.rb". This is required because Rails
|
126
114
|
# looks in load paths and loads the generator just before it's going to be used.
|
127
115
|
#
|
128
|
-
# ==== Examples
|
129
|
-
#
|
130
116
|
# find_by_namespace :webrat, :rails, :integration
|
131
117
|
#
|
132
118
|
# Will search for the following generators:
|
@@ -135,7 +121,6 @@ module Rails
|
|
135
121
|
#
|
136
122
|
# Notice that "rails:generators:webrat" could be loaded as well, what
|
137
123
|
# Rails looks for is the first and last parts of the namespace.
|
138
|
-
#
|
139
124
|
def self.find_by_namespace(name, base=nil, context=nil) #:nodoc:
|
140
125
|
lookups = []
|
141
126
|
lookups << "#{base}:#{name}" if base
|
@@ -186,18 +171,13 @@ module Rails
|
|
186
171
|
"resource_route",
|
187
172
|
"#{orm}:migration",
|
188
173
|
"#{orm}:model",
|
189
|
-
"#{orm}:observer",
|
190
|
-
"#{orm}:session_migration",
|
191
174
|
"#{test}:controller",
|
192
175
|
"#{test}:helper",
|
193
176
|
"#{test}:integration",
|
194
177
|
"#{test}:mailer",
|
195
178
|
"#{test}:model",
|
196
|
-
"#{test}:observer",
|
197
179
|
"#{test}:scaffold",
|
198
180
|
"#{test}:view",
|
199
|
-
"#{test}:performance",
|
200
|
-
"#{test}:plugin",
|
201
181
|
"#{template}:controller",
|
202
182
|
"#{template}:scaffold",
|
203
183
|
"#{template}:mailer",
|
@@ -248,7 +228,7 @@ module Rails
|
|
248
228
|
rails.delete("plugin_new")
|
249
229
|
print_list("rails", rails)
|
250
230
|
|
251
|
-
hidden_namespaces.each {|n| groups.delete(n.to_s) }
|
231
|
+
hidden_namespaces.each { |n| groups.delete(n.to_s) }
|
252
232
|
|
253
233
|
groups.sort.each { |b, n| print_list(b, n) }
|
254
234
|
end
|
@@ -1,54 +1,19 @@
|
|
1
1
|
require 'open-uri'
|
2
2
|
require 'rbconfig'
|
3
|
-
require 'active_support/core_ext/array/wrap'
|
4
3
|
|
5
4
|
module Rails
|
6
5
|
module Generators
|
7
6
|
module Actions
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
# For a Git-hosted plugin, you can specify a branch and
|
12
|
-
# whether it should be added as a submodule instead of cloned.
|
13
|
-
#
|
14
|
-
# For a Subversion-hosted plugin you can specify a revision.
|
15
|
-
#
|
16
|
-
# ==== Examples
|
17
|
-
#
|
18
|
-
# plugin 'restful-authentication', :git => 'git://github.com/technoweenie/restful-authentication.git'
|
19
|
-
# plugin 'restful-authentication', :git => 'git://github.com/technoweenie/restful-authentication.git', :branch => 'stable'
|
20
|
-
# plugin 'restful-authentication', :git => 'git://github.com/technoweenie/restful-authentication.git', :submodule => true
|
21
|
-
# plugin 'restful-authentication', :svn => 'svn://svnhub.com/technoweenie/restful-authentication/trunk'
|
22
|
-
# plugin 'restful-authentication', :svn => 'svn://svnhub.com/technoweenie/restful-authentication/trunk', :revision => 1234
|
23
|
-
#
|
24
|
-
def plugin(name, options)
|
25
|
-
log :plugin, name
|
26
|
-
|
27
|
-
if options[:git] && options[:submodule]
|
28
|
-
options[:git] = "-b #{options[:branch]} #{options[:git]}" if options[:branch]
|
29
|
-
in_root do
|
30
|
-
run "git submodule add #{options[:git]} vendor/plugins/#{name}", :verbose => false
|
31
|
-
end
|
32
|
-
elsif options[:git] || options[:svn]
|
33
|
-
options[:git] = "-b #{options[:branch]} #{options[:git]}" if options[:branch]
|
34
|
-
options[:svn] = "-r #{options[:revision]} #{options[:svn]}" if options[:revision]
|
35
|
-
in_root do
|
36
|
-
run_ruby_script "script/rails plugin install #{options[:svn] || options[:git]}", :verbose => false
|
37
|
-
end
|
38
|
-
else
|
39
|
-
log "! no git or svn provided for #{name}. Skipping..."
|
40
|
-
end
|
7
|
+
def initialize(*) # :nodoc:
|
8
|
+
super
|
9
|
+
@in_group = nil
|
41
10
|
end
|
42
11
|
|
43
|
-
# Adds an entry into Gemfile for the supplied gem.
|
44
|
-
# is specified, add the gem to the given environment.
|
45
|
-
#
|
46
|
-
# ==== Example
|
47
|
-
#
|
48
|
-
# gem "rspec", :group => :test
|
49
|
-
# gem "technoweenie-restful-authentication", :lib => "restful-authentication", :source => "http://gems.github.com/"
|
50
|
-
# gem "rails", "3.0", :git => "git://github.com/rails/rails"
|
12
|
+
# Adds an entry into Gemfile for the supplied gem.
|
51
13
|
#
|
14
|
+
# gem "rspec", group: :test
|
15
|
+
# gem "technoweenie-restful-authentication", lib: "restful-authentication", source: "http://gems.github.com/"
|
16
|
+
# gem "rails", "3.0", git: "git://github.com/rails/rails"
|
52
17
|
def gem(*args)
|
53
18
|
options = args.extract_options!
|
54
19
|
name, version = args
|
@@ -65,50 +30,45 @@ module Rails
|
|
65
30
|
log :gemfile, message
|
66
31
|
|
67
32
|
options.each do |option, value|
|
68
|
-
parts << "
|
33
|
+
parts << "#{option}: #{value.inspect}"
|
69
34
|
end
|
70
35
|
|
71
36
|
in_root do
|
72
37
|
str = "gem #{parts.join(", ")}"
|
73
38
|
str = " " + str if @in_group
|
74
39
|
str = "\n" + str
|
75
|
-
append_file "Gemfile", str, :
|
40
|
+
append_file "Gemfile", str, verbose: false
|
76
41
|
end
|
77
42
|
end
|
78
43
|
|
79
44
|
# Wraps gem entries inside a group.
|
80
45
|
#
|
81
|
-
# ==== Example
|
82
|
-
#
|
83
46
|
# gem_group :development, :test do
|
84
47
|
# gem "rspec-rails"
|
85
48
|
# end
|
86
|
-
#
|
87
49
|
def gem_group(*names, &block)
|
88
50
|
name = names.map(&:inspect).join(", ")
|
89
51
|
log :gemfile, "group #{name}"
|
90
52
|
|
91
53
|
in_root do
|
92
|
-
append_file "Gemfile", "\ngroup #{name} do", :
|
54
|
+
append_file "Gemfile", "\ngroup #{name} do", force: true
|
93
55
|
|
94
56
|
@in_group = true
|
95
57
|
instance_eval(&block)
|
96
58
|
@in_group = false
|
97
59
|
|
98
|
-
append_file "Gemfile", "\nend\n", :
|
60
|
+
append_file "Gemfile", "\nend\n", force: true
|
99
61
|
end
|
100
62
|
end
|
101
63
|
|
102
64
|
# Add the given source to Gemfile
|
103
65
|
#
|
104
|
-
# ==== Example
|
105
|
-
#
|
106
66
|
# add_source "http://gems.github.com/"
|
107
67
|
def add_source(source, options={})
|
108
68
|
log :source, source
|
109
69
|
|
110
70
|
in_root do
|
111
|
-
prepend_file "Gemfile", "source #{source.inspect}\n", :
|
71
|
+
prepend_file "Gemfile", "source #{source.inspect}\n", verbose: false
|
112
72
|
end
|
113
73
|
end
|
114
74
|
|
@@ -117,6 +77,13 @@ module Rails
|
|
117
77
|
# If options :env is specified, the line is appended to the corresponding
|
118
78
|
# file in config/environments.
|
119
79
|
#
|
80
|
+
# environment do
|
81
|
+
# "config.autoload_paths += %W(#{config.root}/extras)"
|
82
|
+
# end
|
83
|
+
#
|
84
|
+
# environment(nil, env: "development") do
|
85
|
+
# "config.autoload_paths += %W(#{config.root}/extras)"
|
86
|
+
# end
|
120
87
|
def environment(data=nil, options={}, &block)
|
121
88
|
sentinel = /class [a-z_:]+ < Rails::Application/i
|
122
89
|
env_file_sentinel = /::Application\.configure do/
|
@@ -124,10 +91,10 @@ module Rails
|
|
124
91
|
|
125
92
|
in_root do
|
126
93
|
if options[:env].nil?
|
127
|
-
inject_into_file 'config/application.rb', "\n #{data}", :
|
94
|
+
inject_into_file 'config/application.rb', "\n #{data}", after: sentinel, verbose: false
|
128
95
|
else
|
129
|
-
Array
|
130
|
-
inject_into_file "config/environments/#{env}.rb", "\n #{data}", :
|
96
|
+
Array(options[:env]).each do |env|
|
97
|
+
inject_into_file "config/environments/#{env}.rb", "\n #{data}", after: env_file_sentinel, verbose: false
|
131
98
|
end
|
132
99
|
end
|
133
100
|
end
|
@@ -136,12 +103,9 @@ module Rails
|
|
136
103
|
|
137
104
|
# Run a command in git.
|
138
105
|
#
|
139
|
-
# ==== Examples
|
140
|
-
#
|
141
106
|
# git :init
|
142
|
-
# git :
|
143
|
-
# git :
|
144
|
-
#
|
107
|
+
# git add: "this.file that.rb"
|
108
|
+
# git add: "onefile.rb", rm: "badfile.cxx"
|
145
109
|
def git(commands={})
|
146
110
|
if commands.is_a?(Symbol)
|
147
111
|
run "git #{commands}"
|
@@ -155,63 +119,52 @@ module Rails
|
|
155
119
|
# Create a new file in the vendor/ directory. Code can be specified
|
156
120
|
# in a block or a data string can be given.
|
157
121
|
#
|
158
|
-
# ==== Examples
|
159
|
-
#
|
160
122
|
# vendor("sekrit.rb") do
|
161
123
|
# sekrit_salt = "#{Time.now}--#{3.years.ago}--#{rand}--"
|
162
124
|
# "salt = '#{sekrit_salt}'"
|
163
125
|
# end
|
164
126
|
#
|
165
127
|
# vendor("foreign.rb", "# Foreign code is fun")
|
166
|
-
#
|
167
128
|
def vendor(filename, data=nil, &block)
|
168
129
|
log :vendor, filename
|
169
|
-
create_file("vendor/#{filename}", data, :
|
130
|
+
create_file("vendor/#{filename}", data, verbose: false, &block)
|
170
131
|
end
|
171
132
|
|
172
133
|
# Create a new file in the lib/ directory. Code can be specified
|
173
134
|
# in a block or a data string can be given.
|
174
135
|
#
|
175
|
-
# ==== Examples
|
176
|
-
#
|
177
136
|
# lib("crypto.rb") do
|
178
137
|
# "crypted_special_value = '#{rand}--#{Time.now}--#{rand(1337)}--'"
|
179
138
|
# end
|
180
139
|
#
|
181
140
|
# lib("foreign.rb", "# Foreign code is fun")
|
182
|
-
#
|
183
141
|
def lib(filename, data=nil, &block)
|
184
142
|
log :lib, filename
|
185
|
-
create_file("lib/#{filename}", data, :
|
143
|
+
create_file("lib/#{filename}", data, verbose: false, &block)
|
186
144
|
end
|
187
145
|
|
188
146
|
# Create a new Rakefile with the provided code (either in a block or a string).
|
189
147
|
#
|
190
|
-
# ==== Examples
|
191
|
-
#
|
192
148
|
# rakefile("bootstrap.rake") do
|
193
149
|
# project = ask("What is the UNIX name of your project?")
|
194
150
|
#
|
195
151
|
# <<-TASK
|
196
152
|
# namespace :#{project} do
|
197
153
|
# task :bootstrap do
|
198
|
-
# puts "
|
154
|
+
# puts "I like boots!"
|
199
155
|
# end
|
200
156
|
# end
|
201
157
|
# TASK
|
202
158
|
# end
|
203
159
|
#
|
204
|
-
# rakefile(
|
205
|
-
#
|
160
|
+
# rakefile('seed.rake', 'puts "Planting seeds"')
|
206
161
|
def rakefile(filename, data=nil, &block)
|
207
162
|
log :rakefile, filename
|
208
|
-
create_file("lib/tasks/#{filename}", data, :
|
163
|
+
create_file("lib/tasks/#{filename}", data, verbose: false, &block)
|
209
164
|
end
|
210
165
|
|
211
166
|
# Create a new initializer with the provided code (either in a block or a string).
|
212
167
|
#
|
213
|
-
# ==== Examples
|
214
|
-
#
|
215
168
|
# initializer("globals.rb") do
|
216
169
|
# data = ""
|
217
170
|
#
|
@@ -223,74 +176,58 @@ module Rails
|
|
223
176
|
# end
|
224
177
|
#
|
225
178
|
# initializer("api.rb", "API_KEY = '123456'")
|
226
|
-
#
|
227
179
|
def initializer(filename, data=nil, &block)
|
228
180
|
log :initializer, filename
|
229
|
-
create_file("config/initializers/#{filename}", data, :
|
181
|
+
create_file("config/initializers/#{filename}", data, verbose: false, &block)
|
230
182
|
end
|
231
183
|
|
232
184
|
# Generate something using a generator from Rails or a plugin.
|
233
185
|
# The second parameter is the argument string that is passed to
|
234
186
|
# the generator or an Array that is joined.
|
235
187
|
#
|
236
|
-
# ==== Example
|
237
|
-
#
|
238
188
|
# generate(:authenticated, "user session")
|
239
|
-
#
|
240
189
|
def generate(what, *args)
|
241
190
|
log :generate, what
|
242
191
|
argument = args.map {|arg| arg.to_s }.flatten.join(" ")
|
243
192
|
|
244
|
-
in_root { run_ruby_script("
|
193
|
+
in_root { run_ruby_script("bin/rails generate #{what} #{argument}", verbose: false) }
|
245
194
|
end
|
246
195
|
|
247
196
|
# Runs the supplied rake task
|
248
197
|
#
|
249
|
-
# ==== Example
|
250
|
-
#
|
251
198
|
# rake("db:migrate")
|
252
|
-
# rake("db:migrate", :
|
253
|
-
# rake("gems:install", :
|
254
|
-
#
|
199
|
+
# rake("db:migrate", env: "production")
|
200
|
+
# rake("gems:install", sudo: true)
|
255
201
|
def rake(command, options={})
|
256
202
|
log :rake, command
|
257
203
|
env = options[:env] || ENV["RAILS_ENV"] || 'development'
|
258
204
|
sudo = options[:sudo] && RbConfig::CONFIG['host_os'] !~ /mswin|mingw/ ? 'sudo ' : ''
|
259
|
-
in_root { run("#{sudo}#{extify(:rake)} #{command} RAILS_ENV=#{env}", :
|
205
|
+
in_root { run("#{sudo}#{extify(:rake)} #{command} RAILS_ENV=#{env}", verbose: false) }
|
260
206
|
end
|
261
207
|
|
262
208
|
# Just run the capify command in root
|
263
209
|
#
|
264
|
-
# ==== Example
|
265
|
-
#
|
266
210
|
# capify!
|
267
|
-
#
|
268
211
|
def capify!
|
269
212
|
log :capify, ""
|
270
|
-
in_root { run("#{extify(:capify)} .", :
|
213
|
+
in_root { run("#{extify(:capify)} .", verbose: false) }
|
271
214
|
end
|
272
215
|
|
273
216
|
# Make an entry in Rails routing file config/routes.rb
|
274
217
|
#
|
275
|
-
#
|
276
|
-
#
|
277
|
-
# route "root :to => 'welcome'"
|
278
|
-
#
|
218
|
+
# route "root :to => 'welcome#index'"
|
279
219
|
def route(routing_code)
|
280
220
|
log :route, routing_code
|
281
|
-
sentinel = /\.routes\.draw do
|
221
|
+
sentinel = /\.routes\.draw do\s*$/
|
282
222
|
|
283
223
|
in_root do
|
284
|
-
inject_into_file 'config/routes.rb', "\n #{routing_code}
|
224
|
+
inject_into_file 'config/routes.rb', "\n #{routing_code}", { after: sentinel, verbose: false }
|
285
225
|
end
|
286
226
|
end
|
287
227
|
|
288
228
|
# Reads the given file at the source root and prints it in the console.
|
289
229
|
#
|
290
|
-
# === Example
|
291
|
-
#
|
292
230
|
# readme "README"
|
293
|
-
#
|
294
231
|
def readme(path)
|
295
232
|
log File.read(find_in_source_paths(path))
|
296
233
|
end
|
@@ -300,7 +237,6 @@ module Rails
|
|
300
237
|
# Define log for backwards compatibility. If just one argument is sent,
|
301
238
|
# invoke say, otherwise invoke say_status. Differently from say and
|
302
239
|
# similarly to say_status, this method respects the quiet? option given.
|
303
|
-
#
|
304
240
|
def log(*args)
|
305
241
|
if args.size == 1
|
306
242
|
say args.first.to_s unless options.quiet?
|
@@ -311,7 +247,6 @@ module Rails
|
|
311
247
|
end
|
312
248
|
|
313
249
|
# Add an extension to the given name based on the platform.
|
314
|
-
#
|
315
250
|
def extify(name)
|
316
251
|
if RbConfig::CONFIG['host_os'] =~ /mswin|mingw/
|
317
252
|
"#{name}.bat"
|