aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | | | | | | | | Add a test to ensure `serialize` persists `nil` as `NULL`Sean Griffin2015-06-121-0/+8
| |/ / / / / / / / / / |/| | | | | | | | | |
* | | | | | | | | | | Merge pull request #18365 from pocke/fix_datatime_compareAaron Patterson2015-06-123-1/+15
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | DateTime#<=> return nil when compare to the invalid String as Time.pocke2015-01-063-1/+15
* | | | | | | | | | | | Don't crash when mutating attributes in a getterSean Griffin2015-06-123-1/+29
* | | | | | | | | | | | Merge pull request #20494 from knovoselic/active_support_concern_class_method...Rafael Mendonça França2015-06-122-1/+26
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Fix for #20489 - ActiveSupport::Concern#class_methods affects parent classesKristijan Novoselic2015-06-122-1/+26
* | | | | | | | | | | | | Merge pull request #20480 from senny/test_runnerYves Senn2015-06-1286-228/+285
|\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | select the AR adapter through `bin/test`.Yves Senn2015-06-117-2/+21
| * | | | | | | | | | | | | make it possible to run AR tests with bin/testYves Senn2015-06-1178-223/+230
| * | | | | | | | | | | | | use our runner (`bin/test`) for framework components.Yves Senn2015-06-116-0/+27
| * | | | | | | | | | | | | inline test runner check into `as/testing/autorun.rb`.Yves Senn2015-06-112-5/+9
| | |_|/ / / / / / / / / / | |/| | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #20226 from EpicH0liday/reversible-remove-foreign-keyYves Senn2015-06-124-2/+50
|\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | Add an invert method for remove_foreign_keyAster Ryan2015-06-114-2/+51
* | | | | | | | | | | | | | Merge pull request #19813 from igas/enum-prefixSean Griffin2015-06-126-6/+104
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Add enum prefix/suffix option to enum definitionIgor Kapkov2015-06-126-6/+104
| | |_|_|_|_|_|_|_|_|/ / / / | |/| | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #20526 from y-yagi/fix_doc_about_foreign_key_nameAbdelkader Boudih2015-06-121-1/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | fix doc about foreign key name [ci skip]yuuji.yaginuma2015-06-121-1/+2
* | | | | | | | | | | | | | | Merge pull request #20529 from pwnall/kwargs_docsRafael Mendonça França2015-06-121-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / / / |/| | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Update RDoc for ActionController::TestCase for kwargs.Victor Costan2015-06-121-1/+1
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | Merge pull request #20058 from farukaydin/cache-digests-dependency-rakeRafael Mendonça França2015-06-112-1/+22
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | add error log that notify 'file not found' when using cache_digests:dependenc...Faruk AYDIN2015-05-072-1/+22
* | | | | | | | | | | | | | | Fix failing tests for Rails-APISean Griffin2015-06-111-1/+1
| |_|/ / / / / / / / / / / / |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #20522 from colby-swandale/doc-updateSean Griffin2015-06-111-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | fixed sring to be string in ActiveRecord::Base params documentationColby Swandale2015-06-121-1/+1
* | | | | | | | | | | | | | | assigns was removed from RailsRafael Mendonça França2015-06-111-1/+0
* | | | | | | | | | | | | | | Add a missing test case for the persistence behavior of `serialize`Sean Griffin2015-06-111-0/+13
* | | | | | | | | | | | | | | Credit the author of #20515 in the previous commitSean Griffin2015-06-111-1/+1
* | | | | | | | | | | | | | | Correctly handle array columns with defaults in the schema dumperSean Griffin2015-06-114-0/+17
| |_|/ / / / / / / / / / / / |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #19832 from spastorino/rails-apiSantiago Pastorino2015-06-1145-32/+1497
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | head :no_content is implicitly calledSantiago Pastorino2015-06-111-2/+0
| * | | | | | | | | | | | | | Mention that doing nothing in Rails API controllers returns 204Santiago Pastorino2015-06-111-1/+1
| * | | | | | | | | | | | | | Return 204 if render is not called in API controllersJorge Bejar2015-06-115-6/+31
| * | | | | | | | | | | | | | Add test coverage for implicit render in empty actionsJorge Bejar2015-06-111-0/+14
| * | | | | | | | | | | | | | Checking if controller responds to wrap_parameter is not longer requiredJorge Bejar2015-06-111-1/+1
| * | | | | | | | | | | | | | Enable wrap_parameter by default in rails api applicationsJorge Bejar2015-06-112-5/+1
| * | | | | | | | | | | | | | Include ParamsWrapper in AC::APIJorge Bejar2015-06-112-1/+31
| * | | | | | | | | | | | | | Add rake-cors gem (commented) in Gemfile for rails api appsJorge Bejar2015-06-113-0/+20
| * | | | | | | | | | | | | | Make Rails API apps return the full resource on updateSantiago Pastorino2015-06-112-2/+2
| * | | | | | | | | | | | | | It's rails new my_api --apiSantiago Pastorino2015-06-111-1/+1
| * | | | | | | | | | | | | | Change guide heading from - to =Santiago Pastorino2015-06-111-1/+1
| * | | | | | | | | | | | | | Add CHANGELOG entries for API apps functionalitySantiago Pastorino2015-06-112-0/+13
| * | | | | | | | | | | | | | Add API only apps guideSantiago Pastorino2015-06-111-0/+435
| * | | | | | | | | | | | | | Document Generators.api_only! methodSantiago Pastorino2015-06-111-0/+4
| * | | | | | | | | | | | | | http only => API onlySantiago Pastorino2015-06-111-1/+1
| * | | | | | | | | | | | | | Add AMS 0.10.0.rc1 by default for api appsSantiago Pastorino2015-06-112-0/+6
| * | | | | | | | | | | | | | Fix scaffold generator test for resource routesSantiago Pastorino2015-06-111-1/+1
| * | | | | | | | | | | | | | Fix class_option description for api generatorsSantiago Pastorino2015-06-112-2/+2
| * | | | | | | | | | | | | | Remove unneeded option from ResourceRouteGeneratorSantiago Pastorino2015-06-111-3/+0
| * | | | | | | | | | | | | | Fix MimeResponds example in AC::API documentationSantiago Pastorino2015-06-111-3/+5
| * | | | | | | | | | | | | | Revert changes related with api apps in RouteWrapperJorge Bejar2015-06-111-11/+1