aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
Commit message (Collapse)AuthorAgeFilesLines
* Publish AS::Executor and AS::Reloader APIsMatthew Draper2016-03-024-35/+69
| | | | | | These should allow external code to run blocks of user code to do "work", at a similar unit size to a web request, without needing to get intimate with ActionDipatch.
* generate config/spring.rb in new applications [closes #18874]Xavier Noria2016-02-292-0/+7
|
* Merge pull request #23929 from ↵Kasper Timm Hansen2016-02-281-2/+2
|\ | | | | | | | | prathamesh-sonpatki/update-deprecation-message-for-app-namespace Update deprecation message shown when tasks from rails namespace are run
| * Update deprecation message shown when tasks from rails namespace are runPrathamesh Sonpatki2016-02-271-2/+2
| |
* | Merge pull request #23921 from y-yagi/remove_rack_cors_initializer_when_updatingArthur Nogueira Neves2016-02-271-0/+5
|\ \ | |/ |/| remove rack cors initializer when updating
| * remove rack cors initializer when updatingyuuji.yaginuma2016-02-271-0/+5
| | | | | | | | Rack cors initializer is only necessary to API-only applications, for when the update is unnecessary.
* | Merge pull request #23439 from ryohashimoto/160203_rake_railsKasper Timm Hansen2016-02-272-2/+16
|\ \ | | | | | | Use app namespace for framework tasks
| * | The tasks in the rails task namespace is deprecated in favor of app namespace.Ryo Hashimoto2016-02-262-2/+16
| | | | | | | | | | | | (e.g. `rails:update` and `rails:template` tasks is renamed to `app:update` and `app:template`.)
* | | :scissors:Rafael Mendonça França2016-02-261-2/+2
| | |
* | | Merge pull request #23917 from chashmeetsingh/patch-1Rafael Mendonça França2016-02-261-1/+3
|\ \ \ | | | | | | | | | | | | Create tmp folder if not present
| * | | Create tmp folder if not presentChashmeet Singh2016-02-271-1/+3
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All Apps may not have a tmp folder Update dev.rake Update dev.rake Update dev.rake Update dev.rake Update dev.rake Update dev.rake Update dev.rake
* / | Specify plaform: :mri for byebugIan Ker-Seymer2016-02-261-1/+1
|/ /
* / [close #23681] Use puma 3.0.0+ schneems2016-02-261-1/+1
|/ | | | | Puma 3.0 and up introduced compatibility to read from `config/puma.rb` when booting from the command `$ rails server`https://github.com/puma/puma/pull/856.
* Old applications will not get the ssl_options initializerPrathamesh Sonpatki2016-02-251-0/+5
| | | | | - We will remove the initializer for old apps which are migrated to Rails 5 so that they are not affected by this breaking change.
* New applications will be generated with ssl_options to enable HSTS with ↵Prathamesh Sonpatki2016-02-251-0/+4
| | | | | | subdomains - We will reuse config.ssl_options for setting the HSTS settings.
* Merge pull request #23863 from delftswa2016/fix-readme-headingJon Moss2016-02-241-1/+1
|\ | | | | Fix README heading according to Markdown conventions
| * Fix title of README according to Markdown conventionsAaron Ang2016-02-251-1/+1
| | | | | | | | | | | | | | | | | | The first heading in some README's are indicated using a second level heading (`##`), which in my opinion is of incorrect structure. Therefore, in this patch I changed the first heading to a first level heading (`#`) in README's where this incorrect structure occurs. [ci skip]
* | Only open Action Cable connection if data is being sentJon Moss2016-02-241-5/+3
| |
* | Enable Action Cable routes by defaultJon Moss2016-02-243-6/+4
| | | | | | | | This also marks Action Cable routes as internal to Rails.
* | Don't put config.action_mailer.perform_caching entry twice in development.rbPrathamesh Sonpatki2016-02-241-8/+2
| |
* | Enable tmp_restart plugin for pumaRafael Mendonça França2016-02-241-0/+3
| | | | | | | | Fixes #23855
* | Prep release for Rails 5 beta3eileencodes2016-02-241-1/+1
| |
* | Always use the released coffee-rails in new applicationsRafael Mendonça França2016-02-241-6/+1
|/ | | | | coffee-rails is stable now so we don't need to point to the master branch.
* Merge pull request #23795 from claudiob/replace-rack-with-rails-commandDavid Heinemeier Hansson2016-02-241-1/+2
|\ | | | | AppGenerator: Replace 'rake' with 'rails_command'
| * Invoke 'rails' instead of 'rake' in AppGeneratorclaudiob2016-02-201-1/+1
| | | | | | | | | | Follows the convention from Rails 5 of invoking tasks on the command-line with `rails …` rather than `rake …`.
| * AppGenerator: Replace 'rake' with 'rails_command'claudiob2016-02-201-0/+1
| | | | | | | | | | | | | | | | | | | | | | Since Rails 5.0 is switching the Rails command line from 'rake …' to 'rails …', it makes sense to also replace the `rake` method in the Rails templates API. Based on feedback from @matthewd and @kaspth, I chose to replace `rake` with `rails_command`, which is less confusing than the alternatives `rails` or `command` or `rails_run` and is not Thor-reserved word like `task`.
* | Merge branch 'actionmailer-cache'Rafael Mendonça França2016-02-243-0/+12
|\ \ | | | | | | | | | | | | | | | This is a rebased version of #22825. Closes #22825.
| * | Change ActionMailer's default caching configuration and update generator's ↵Stan Lo2016-02-233-0/+12
| | | | | | | | | | | | environment templates
* | | Use the trick to get beta releases in the GemfileRafael Mendonça França2016-02-231-1/+1
| | |
* | | New apps get the Turbolinks beta gemSam Stephenson2016-02-231-2/+2
| | |
* | | Switch to `data-turbolinks-track="reload"`Sam Stephenson2016-02-231-2/+2
|/ /
* | Merge pull request #23734 from schneems/schneems/stdout-againRichard Schneeman2016-02-231-0/+4
|\ \ | | | | | | Alternative to #23638 log to STDOUT via env var
| * | Alternative to #23638 log to STDOUT via env varschneems2016-02-171-0/+4
| | | | | | | | | | | | | | | | | | People who deploy to containers or other places where they might have some sort of a log wrapping service use stdout. With this change new rails apps can be configured to output to STDOUT via setting `RAILS_LOG_TO_STDOUT` to any value. This allows container images or services to set the value for all apps without having to modify configuration for each application. If an app wants to opt out, they can either delete from the env hash, or remove that configuration. cc/ @rafaelfranca
* | | Merge pull request #23669 from maclover7/internal-routesRafael França2016-02-221-4/+4
|\ \ \ | | | | | | | | Add `internal` attribute to routes
| * | | Add `internal` attribute to routesJon Moss2016-02-221-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is meant to provide a way for Action Cable, Sprockets, and possibly other Rack applications to mark themselves as internal, and to exclude themselves from the routing inspector, and thus `rails routes` / `rake routes`. I think this is the only way to have mounted Rack apps be marked as internal, within AD/Journey. Another option would be to create an array of regexes for internal apps, and then to iterate over that everytime a request comes through. Also, I only had the first `add_route` method set `internal`'s default to false, to avoid littering it all over the codebase.
* | | | Generate `config/cable.yml` in `rails:update` commandJon Moss2016-02-221-0/+5
|/ / /
* | | make sure `rake test` respects TESTOPTSAaron Patterson2016-02-221-1/+2
| | | | | | | | | | | | | | | We should be able to pass options to minitest via TESTOPTS environment variable
* | | [ci skip] Mention testing fore-runners.Kasper Timm Hansen2016-02-211-0/+2
| | | | | | | | | | | | Get it? ( ͡° ͜ʖ ͡°)
* | | use method provided by minitestyuuji.yaginuma2016-02-211-7/+1
| |/ |/| | | | | | | | | | | The process of converting `Test` to `String` is already defined in minitest. I think it is better to use that for the consistency of output content. ref: https://github.com/seattlerb/minitest/blob/master/lib/minitest/test.rb#L261..L267
* | set `skip_listen` option to dummy appplicationyuuji.yaginuma2016-02-181-0/+1
| | | | | | | | | | | | If you want to use `EventedFileUpdateChecker`, need to specify `listen` to plugin's gemspec. However, the default is not specified `listen` to plugin's gemspec, `EventedFileUpdateChecker` should be disabled.
* | Merge pull request #23730 from y-yagi/fail_fast_when_test_errorAndrew White2016-02-172-2/+2
|\ \ | |/ |/| modify to `error` also abort when specify fail fast option
| * modify to `error` also abort when specify fail fast optionyuuji.yaginuma2016-02-172-2/+2
| |
* | remove unused methodyuuji.yaginuma2016-02-171-4/+0
|/ | | | `app_templates_dir` is unused since dc53fe9.
* adds --skip-listen to the application generator [closes #23590]Xavier Noria2016-02-173-3/+10
|
* Merge pull request #23631 from y-yagi/generate_mailer_views_in_apiYves Senn2016-02-152-3/+7
|\ | | | | generate mailer views in Rails API
| * generate mailer views in Rails APIyuuji.yaginuma2016-02-152-3/+7
| | | | | | | | | | View files is necessary to send mail, it should be generated even Rails API. Fixes #23617
* | test runner, relay minitest information about the error location.Yves Senn2016-02-151-1/+1
| | | | | | | | | | This is a follow-up to ea70c29 to bring back the assertion error location information provided by minitest.
* | Revert "Prefer Minitest's location for test failures."Yves Senn2016-02-151-8/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 0db310586ac3e15be95d2ef27ff40cfa24c05c10. Closes #23686. Conflicts: railties/test/application/test_runner_test.rb It's possible that the `result.location` returned by minitest is outside the test file itself. For example in the case of mocha. This resulted in bad rerun snipptets: ``` bin/rails test app/models/deliveries/delivery.rb:103 ``` Let's always use the first line of the failed test-case in our rerun snippet. We can display the line number of the assertion error elsewhere.
* | Merge pull request #23569 from Gaurav2728/no_doc_of_some_railtie_methodsVipul A M2016-02-151-4/+7
|\ \ | | | | | | mark as #:nodoc: [ci skip]
| * | mark as #:nodoc: [ci skip]Gaurav Sharma2016-02-151-4/+7
| | | | | | | | | can’t be instantiate directly or may be no need for doc.