aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | CI: shush complaints about 777 permsJeremy Kemper2009-11-101-1/+1
| | | |
* | | | Use an env var to expand the CI bundle. Using bundler's 'only' includes this ↵Jeremy Kemper2009-11-102-2/+2
| | | | | | | | | | | | | | | | stuff for everybody, oops.
* | | | Ruby 1.9: don't bundle fcgi at all for CIJeremy Kemper2009-11-101-1/+1
| | | |
* | | | Make root_dir a method so rails can call itJeremy Kemper2009-11-101-7/+8
| | | |
* | | | Bump AR.gemspec Arel dep tooJeremy Kemper2009-11-101-1/+1
| | | |
* | | | Use bundled bin/rakeJeremy Kemper2009-11-101-11/+15
| | | |
* | | | Rely on bundler for gem deps instead of geminstallerJeremy Kemper2009-11-101-23/+1
| | | |
* | | | Get rack from rails/rack.git. Introduce ci-only deps.Jeremy Kemper2009-11-101-15/+21
| | | |
* | | | Bump CI mocha to 0.9.8 and rack to 1.0.1Jeremy Kemper2009-11-101-2/+2
| | | |
* | | | Be sure to invoke the super chain! And initialize response body.Jeremy Kemper2009-11-101-0/+2
| | | |
* | | | Eliminate warning by initializing nil formatsJeremy Kemper2009-11-101-0/+6
| | | |
* | | | Eliminate warning with layout is unsetJeremy Kemper2009-11-101-1/+1
| | | |
* | | | Bump arel dep to 0.2.preJeremy Kemper2009-11-101-1/+1
| | | |
* | | | Ruby 1.9: bump CI mysql from 2.7 -> 2.8.1Jeremy Kemper2009-11-101-2/+1
| | | |
* | | | Ruby 1.9: fix Relation respond_to? and method_missingJeremy Kemper2009-11-101-6/+4
| | | |
* | | | Resolve deadlock in pooled connections testJeremy Kemper2009-11-101-1/+1
| | | |
* | | | Fix generated performance test helper requiresJeremy Kemper2009-11-102-2/+2
| | | |
* | | | Enable warnings for mailer testsJoshua Peek2009-11-091-1/+1
| | | |
* | | | delete correct records for a has_many with :primary_key and :dependent => ↵Matt Jones2009-11-104-3/+17
| | | | | | | | | | | | | | | | | | | | | | | | :delete_all Signed-off-by: Michael Koziarski <michael@koziarski.com>
* | | | Avoid adding component lib/ to load path multiple timesJoshua Peek2009-11-096-6/+17
| | | |
* | | | Remove preflight lib check during AP tests. Bundler resolves this issueJoshua Peek2009-11-091-6/+0
| | | |
* | | | Always add AS lib/ to path when running its test suiteJoshua Peek2009-11-091-4/+4
| | | |
* | | | Don't warn me if I'm not using bundler to run testsJoshua Peek2009-11-091-1/+0
| | | |
* | | | Remove automatic rubygems loading from AS test runnerJoshua Peek2009-11-091-9/+1
| | | |
* | | | Fix railties isolated tests if bundler environment doesn't existJoshua Peek2009-11-091-2/+6
| | | |
* | | | Don't load all of railties just for Rails::VersionJoshua Peek2009-11-091-7/+3
| | | |
* | | | Add pending test for generating routes with optional params that recall lastJoshua Peek2009-11-091-0/+36
| | | | | | | | | | | | | | | | request
* | | | Contortions to work around brittle naming dependencyJeremy Kemper2009-11-092-33/+30
| | | |
* | | | Add pending test for route generation with default paramJoshua Peek2009-11-091-0/+16
| | | |
* | | | Fixed AD assertion autoloads [#3470 state:resolved]Joshua Peek2009-11-091-3/+16
| | | |
* | | | Revert "the REXML security fix is not needed for Ruby >= 1.8.7"Jeremy Kemper2009-11-092-0/+45
| | | | | | | | | | | | | | | | | | | | | | | | Still required on older 1.8.7 patchlevels. This reverts commit a48f49e56bf53e0a2386da898576ef12d5258358.
* | | | Clarify failed assertionJeremy Kemper2009-11-091-1/+1
| | | |
* | | | DittoJeremy Kemper2009-11-091-0/+1
| | | |
* | | | Fix missing dependencyJeremy Kemper2009-11-091-0/+1
| | | |
* | | | Remark when bundled env require failsJeremy Kemper2009-11-091-0/+1
| | | |
* | | | Ruby 1.9.2: work around inherited hook being called before yielding to blockJeremy Kemper2009-11-091-7/+5
| | | |
* | | | Merge commit 'fxn/master'Jeremy Kemper2009-11-0931-242/+7
|\ \ \ \
| * | | | the REXML security fix is not needed for Ruby >= 1.8.7Xavier Noria2009-11-092-45/+0
| | | | |
| * | | | Enumerable#none? is not needed for Ruby >= 1.8.7Xavier Noria2009-11-092-20/+0
| | | | |
| * | | | Integer#even? and Integer#odd? are not needed for Ruby >= 1.8.7Xavier Noria2009-11-096-37/+7
| | | | |
| * | | | String#each_char is not needed for Ruby >= 1.8.7Xavier Noria2009-11-093-25/+0
| | | | |
| * | | | String#start_with? and String#end_with? are not needed for Ruby >= 1.8.7, ↵Xavier Noria2009-11-092-22/+0
| | | | | | | | | | | | | | | | | | | | leaves their plural aliases though
| * | | | String#bytesize is not needed for Ruby >= 1.8.7Xavier Noria2009-11-095-17/+0
| | | | |
| * | | | Object#tap is not needed for Ruby >= 1.8.7Xavier Noria2009-11-096-31/+0
| | | | |
| * | | | Symbol#to_proc is not needed for Ruby >= 1.8.7Xavier Noria2009-11-099-31/+0
| | | | |
| * | | | Object#instance_variable_defined? is not needed for Ruby >= 1.8.7Xavier Noria2009-11-092-14/+0
| | | | |
* | | | | Bump AP gem dependencies to upgrade Rack to 1.0.1 and to include rack-mount ↵Jeremy Kemper2009-11-091-2/+4
|/ / / / | | | | | | | | | | | | and erubis.
* | | | Silence warning: discarding old hBryan Helmkamp2009-11-091-0/+1
| | | |
* | | | Merge branch 'master' of github.com:rails/railsJeremy Kemper2009-11-0916-5/+1347
|\ \ \ \
| * | | | Revert "Bundle I18n 0.2.0."Yehuda Katz2009-11-0916-5/+1347
| | | | | | | | | | | | | | | | | | | | This reverts commit 83f329f5f30567a10bc96410da230bf986db8ad4.