Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | build fix: railties tests used deprecated `SchemaCache` methods. | Yves Senn | 2013-07-04 | 1 | -2/+2 |
| | |||||
* | Calls to the application constant have been refactored to use | wangjohn | 2013-06-10 | 1 | -3/+3 |
| | | | | | Rails.application when drawing routes and creating other configurations on the application. | ||||
* | Move background jobs to the 'jobs' branch until fully baked. Not shipping ↵ | Jeremy Kemper | 2012-12-21 | 1 | -16/+0 |
| | | | | with Rails 4.0. | ||||
* | Removing warning : ambiguous first argument | Arun Agrawal | 2012-11-11 | 1 | -2/+2 |
| | |||||
* | Remove the queue container. Premature consolidation. Set up and maintain ↵ | Jeremy Kemper | 2012-10-12 | 1 | -3/+2 |
| | | | | queues in the classes that use them instead. | ||||
* | Use String#exclude? to make sure that Active Support is not loaded when | Rafael Mendonça França | 2012-10-04 | 1 | -1/+1 |
| | | | | | | | bare is true. We need to change this since coffee-rails loads ActionView that loads core_ext/array/access. | ||||
* | Move queue classes to ActiveSupport | Santiago Pastorino | 2012-09-14 | 1 | -3/+3 |
| | |||||
* | Allow users to configure the queue for the mailers | Rafael Mendonça França | 2012-09-12 | 1 | -0/+17 |
| | | | | | | | | | | | | This allow the users to do: config.action_mailer.queue = MyQueue.new and class UsersMailer < ActionMailer::Base self.queue = MyQueue.new end | ||||
* | fixed support for DATABASE_URL for rake db tasks | Grace Liu | 2012-09-11 | 1 | -0/+32 |
| | | | | | | | | | | | | - added tests to confirm establish_connection uses DATABASE_URL and Rails.env correctly even when no arguments are passed in. - updated rake db tasks to support DATABASE_URL, and added tests to confirm correct behavior for these rake tasks. (Removed establish_connection call from some tasks since in those cases the :environment task already made sure the function would be called) - updated Resolver so that when it resolves the database url, it removes hash values with empty strings from the config spec (e.g. to support connection to postgresql when no username is specified). | ||||
* | Extract ActiveRecord::SessionStore from Rails | Prem Sichanugrist | 2012-08-24 | 1 | -20/+0 |
| | | | | | This functionality will be available from gem `active_record-session_store` instead. | ||||
* | Remove default match without specified method | Jose and Yehuda | 2012-04-24 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | In the current router DSL, using the +match+ DSL method will match all verbs for the path to the specified endpoint. In the vast majority of cases, people are currently using +match+ when they actually mean +get+. This introduces security implications. This commit disallows calling +match+ without an HTTP verb constraint by default. To explicitly match all verbs, this commit also adds a :via => :all option to +match+. Closes #5964 | ||||
* | Remove --http. | José Valim | 2012-03-14 | 1 | -27/+0 |
| | |||||
* | Add ActionController::HTTP | Santiago Pastorino | 2012-03-14 | 1 | -0/+27 |
| | | | | | | More info http://edgeguides.rubyonrails.org/api_app.html [Carlos Antonio da Silva & Santiago Pastorino] | ||||
* | Fix broken tests | Santiago Pastorino | 2012-03-10 | 1 | -1/+2 |
| | |||||
* | Use one system call whenever possible, group rake and Dir.chdir calls | Carlos Antonio da Silva | 2012-03-08 | 1 | -9/+4 |
| | |||||
* | Support judgement expired schema cache dump. | kennyj | 2012-03-01 | 1 | -0/+14 |
| | |||||
* | Load db/schema_cache.dump duaring boot time. | kennyj | 2012-03-01 | 1 | -0/+12 |
| | |||||
* | convert railties to use AS::TestCase | Aaron Patterson | 2012-01-05 | 1 | -1/+1 |
| | |||||
* | remove checks for encodings availability | Sergey Nartimov | 2011-12-25 | 1 | -1/+1 |
| | |||||
* | Fix testcase an error on ruby 1.8.x. | kennyj | 2011-12-09 | 1 | -2/+3 |
| | | | | | | In Ruby 1.8.x, config.encoding sets $KCODE. Therefore, the possible values are UTF8, SJIS, or EUC. And, if we set SJIS, we'll has the error. Because some rails sources are written in utf-8 encoding. | ||||
* | Assign config.encoding to AD::Response.default_charset at the initialization ↵ | kennyj | 2011-12-07 | 1 | -0/+6 |
| | | | | time. | ||||
* | Solve the RAILS_ENV problem in the railties tests in a more generic way | Jon Leighton | 2011-06-06 | 1 | -3/+1 |
| | |||||
* | framework_test.rb also dependent on RAILS_ENV=development | Arun Agrawal | 2011-06-06 | 1 | -0/+6 |
| | |||||
* | Fix tests to reflect IdentityMap no longer default | David Lee | 2011-05-10 | 1 | -1/+1 |
| | | | | Broke in 0e1dcae1857db4f6721561caff38d8be748d0b40 | ||||
* | Fix typo. | Emilio Tagua | 2010-11-19 | 1 | -1/+1 |
| | |||||
* | Use IdentityMap middleware to flush map on each request. | Emilio Tagua | 2010-11-19 | 1 | -1/+1 |
| | |||||
* | Add config.action_controller.include_all_helpers, by default it is set to true. | Piotr Sarnacki | 2010-11-18 | 1 | -0/+60 |
| | | | | | | | In older rails versions there was a way to use only helpers from helper file corresponding to current controller and you could also include all helpers by saying 'helper :all' in controller. This config allows to return to older behavior by setting it to false. | ||||
* | Merge remote branch 'drogus/engines' | wycats | 2010-09-11 | 1 | -1/+1 |
|\ | |||||
| * | Change app to main_app in mounted_helpers | Piotr Sarnacki | 2010-09-08 | 1 | -1/+1 |
| | | |||||
* | | Add configuration option for tld length | Simon Jefford | 2010-09-09 | 1 | -0/+7 |
|/ | |||||
* | mounted helpers should be included in ActionMailer | Piotr Sarnacki | 2010-09-03 | 1 | -0/+1 |
| | |||||
* | Revert "Just add connection management middleware if running in a concurrent ↵ | Jeremy Kemper | 2010-08-20 | 1 | -11/+1 |
| | | | | | | environment." This reverts commit 6b29dc876fe185881d46731c3ae170478a3828fe. | ||||
* | Just add connection management middleware if running in a concurrent ↵ | José Valim | 2010-07-12 | 1 | -1/+11 |
| | | | | environment. | ||||
* | Add a test to ensure url helpers are not action methods in ActionMailer. | José Valim | 2010-07-07 | 1 | -0/+19 |
| | |||||
* | Avoid calls to Rails::Application since this is not the official API. | José Valim | 2010-07-01 | 1 | -1/+1 |
| | | | | Your application should *always* reference your application const (as Blog::Application) and Rails.application should be used just internally. | ||||
* | adding missing assertion and fixing the test | Neeraj Singh | 2010-06-24 | 1 | -2/+4 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | fixing test by replacing assert with assert_equal | Neeraj Singh | 2010-06-24 | 1 | -1/+1 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Array#sample now exists, so test for #forty_two instead | Jeremy Kemper | 2010-06-24 | 1 | -1/+1 |
| | |||||
* | removes Array#random_element and backports Array#sample from Ruby 1.9, ↵ | Xavier Noria | 2010-06-05 | 1 | -2/+2 |
| | | | | thanks to Marc-Andre Lafortune | ||||
* | Renames Array#rand -> Array#random_element | Rizwan Reza | 2010-05-17 | 1 | -2/+2 |
| | | | | Signed-off-by: Xavier Noria <fxn@hashref.com> | ||||
* | Deprecated ActionController::Base.session_options= and ↵ | Carlhuda | 2010-03-04 | 1 | -2/+2 |
| | | | | ActionController::Base.session_store= in favor of a config.session_store method (which takes params) and a config.cookie_secret variable, which is used in various secret scenarios. The old AC::Base options will continue to work with deprecation warnings. | ||||
* | Fix Sam Ruby's tests and deprecation warnings | Carlhuda | 2010-03-04 | 1 | -2/+2 |
| | |||||
* | Fix a test that assumes that defined?(ActiveRecord) == ↵ | Carlhuda | 2010-03-02 | 1 | -1/+1 |
| | | | | defined?(ActiveRecord::Base) | ||||
* | Add a test for default_url_options in AM. | José Valim | 2010-02-21 | 1 | -0/+11 |
| | |||||
* | Add more tests to some key points in Railties. | José Valim | 2010-01-28 | 1 | -0/+6 |
| | | | | Signed-off-by: Carl Lerche <carllerche@mac.com> | ||||
* | Refactor railties test, break huge files in smaller chunks and move ↵ | José Valim | 2010-01-26 | 1 | -0/+80 |
initializers to application folder. |