Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Stop shelling out more than necessary | Carlos Antonio da Silva | 2012-12-07 | 1 | -10/+10 |
| | |||||
* | Run rake tasks all at once in rake dbs test for a speed up | Carlos Antonio da Silva | 2012-12-06 | 1 | -12/+6 |
| | | | | | | | | | | | Before: Finished tests in 56.245787s, 0.2133 tests/s, 0.0000 assertions/s. 12 tests, 0 assertions, 0 failures, 0 errors, 0 skips After: Finished tests in 42.401416s, 0.2830 tests/s, 0.0000 assertions/s. 12 tests, 0 assertions, 0 failures, 0 errors, 0 skips | ||||
* | Fix failing tests related to rake notes | Carlos Antonio da Silva | 2012-12-03 | 1 | -2/+2 |
| | | | | Related to changes introduced in 553b563749517114323b4e8742509227e0daab67 | ||||
* | Add db to the list of default annotation folders | Antonio Cangiano | 2012-12-01 | 1 | -0/+4 |
| | |||||
* | Add .rake to `rake notes` and `rake notes:custom` | Brent J. Nordquist | 2012-10-12 | 1 | -1/+3 |
| | |||||
* | Fix syntax error in assert_match | Rafael Mendonça França | 2012-09-15 | 1 | -6/+6 |
| | |||||
* | Few more warnings removed. | Arun Agrawal | 2012-09-15 | 1 | -3/+3 |
| | | | | | | | I found them when I was running warning mode on with railties See https://github.com/rails/rails/pull/3782 | ||||
* | fixed support for DATABASE_URL for rake db tasks | Grace Liu | 2012-09-11 | 1 | -0/+181 |
| | | | | | | | | | | | | - 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). | ||||
* | run the notes tests in isolation | Aaron Patterson | 2012-06-19 | 1 | -0/+4 |
| | |||||
* | Warnings removed for "assert_match /". | Arun Agrawal | 2012-05-30 | 1 | -20/+20 |
| | |||||
* | Remove empty lines. | Jason Noble | 2012-04-30 | 1 | -4/+0 |
| | |||||
* | Fixed styling issues brought up by @jeremy | Jason Noble | 2012-04-30 | 1 | -2/+1 |
| | |||||
* | Add ability to specify custom annotation directories | Jason Noble & Ralph Shnelvar | 2012-04-30 | 1 | -0/+42 |
| | | | | | | | | | SOURCE_ANNOTATION_DIRECTORIES='dir1,dir2' bundle exec rake notes Searches app, config, lib, script, test (default) Also searches dir1, dir2 References: #4536, #4540 | ||||
* | Add test coverage for rake notes | Jason Noble & Ralph Shnelvar | 2012-04-30 | 1 | -1/+36 |
| | | | | | Add separate tests to verify directories covered Add tests to verify file_types | ||||
* | `rake notes` and `rake notes:custom` now support | Teng Siong Ong | 2012-04-22 | 1 | -1/+7 |
| | | | css, scss and css. | ||||
* | Fixed missing space bug introduces in ↵ | Anton Lindqvist | 2012-03-22 | 1 | -3/+4 |
| | | | | rails/rails@9299bfdcd387253d83b645c205b8df477f2d0940. | ||||
* | Use one system call whenever possible, group rake and Dir.chdir calls | Carlos Antonio da Silva | 2012-03-08 | 2 | -83/+83 |
| | |||||
* | Correctly print names of non-timestamped migrations with db:migrate:status | Peter Mitchell | 2012-02-17 | 1 | -1/+49 |
| | |||||
* | Display annotations from .coffee files in `rake notes` | Bartlomiej Kozal | 2012-02-05 | 1 | -10/+12 |
| | |||||
* | convert railties to use AS::TestCase | Aaron Patterson | 2012-01-05 | 2 | -2/+2 |
| | |||||
* | Align rake notes. | Anton Lindqvist | 2011-12-26 | 1 | -0/+9 |
| | |||||
* | Clean up the cache before the request in case we are running in the ↵ | José Valim | 2011-12-15 | 1 | -1/+1 |
| | | | | reload_classes_only_on_change schema. | ||||
* | Fix indentation | Piotr Sarnacki | 2011-12-09 | 1 | -67/+67 |
| | |||||
* | Allow to run migrations with given scope, with SCOPE=<scope> | Piotr Sarnacki | 2011-12-09 | 1 | -0/+24 |
| | | | | | | | | | | | Scope in migrations can be defined by adding suffix in filename, like: 01_a_migration.blog.rb. Such migration have blog scope. Scope is automatically added while copying migrations from engine, so if you want to revert all of the migrations from given engine, you can just run db:migrate with SCOPE, like: rake db:migrate SCOPE=blog | ||||
* | Moves migrations tests from railties/test/application/rake_test.rb to ↵ | Kazimierz Kiełkowicz | 2011-12-07 | 1 | -0/+85 |
| | | | | railties/test/application/rake/migrations_test.rb | ||||
* | Move rake notes test to railties/test/application/rake/notes_test.rb | Kazimierz Kiełkowicz | 2011-12-07 | 1 | -0/+45 |