aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | | | | | | | | Fix rubocop style issues in yarn and spring.rb templates"roberts10002017-07-312-3/+3
| | | |/ / / / / / / / / / | | |/| | | | | | | | | |
| * | | | | | | | | | | | Merge pull request #30024 from kamipo/remove_redundant_unless_branchSean Griffin2017-07-311-2/+0
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove redundant `unless current_adapter?(:OracleAdapter)`
| | * | | | | | | | | | | | Remove redundant `unless current_adapter?(:OracleAdapter)`Ryuta Kamizono2017-07-281-2/+0
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Talk about bytes not charactersRafael Mendonça França2017-07-311-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip] Closes #30012
| * | | | | | | | | | | | | Add backticks around method [ci skip]Ryuta Kamizono2017-08-011-1/+1
| | |/ / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | And make reference to `Relation`.
| * | | | | | | | | | | | Merge pull request #30017 from bslobodin/fix-typo-in-assert-changesRafael França2017-07-311-1/+1
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix typo in assert_changes error message
| | * | | | | | | | | | | | fix typo in assert_changes error messageBoris Slobodin2017-07-311-1/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Prevent interpolation of ERB elementsDavid Heinemeier Hansson2017-08-011-6/+6
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Add the storage.yml file by defaultDavid Heinemeier Hansson2017-08-011-0/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Follow same format as action_cableDavid Heinemeier Hansson2017-08-011-1/+3
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Cut down on installation adviceDavid Heinemeier Hansson2017-08-011-8/+4
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Drop README terms no longer relevantDavid Heinemeier Hansson2017-08-011-12/+0
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Add requireDavid Heinemeier Hansson2017-08-011-0/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | We moved to storage.ymlDavid Heinemeier Hansson2017-08-012-35/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Rely on top-level filesDavid Heinemeier Hansson2017-08-012-150/+0
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #30034 from ffmike/patch-1Guillermo Iguaran2017-08-011-0/+8
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Azure configuration to Active Storage template
| * | | | | | | | | | | | | | Add Azure configuration to Active Storage templateMike Gunderloy2017-08-011-0/+8
|/ / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With Active Storage supporting Azure, we should show people how to set it up. Incorporates the minor changes originally in https://github.com/rails/activestorage/pull/88 as well
* | | | | | | | | | | | | | Merge pull request #30030 from claudiob/only-diskGuillermo Iguaran2017-08-011-1/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Let ActiveStorage tests pass only for Disk
| * | | | | | | | | | | | | | Let ActiveStorage tests pass only for Diskclaudiob2017-08-011-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If you have a "service/configurations.yml" file, but every single line is commented out, then an error occurs when running tests: ``` git:active-storage-import~/code/rails/activestorage$ rake ~/code/rails/activestorage/test/test_helper.rb:17:in `<top (required)>': undefined method `deep_symbolize_keys' for false:FalseClass (NoMethodError) from ~/code/rails/activestorage/test/controllers/direct_uploads_controller_test.rb:1:in `require' ``` The reason is that `YAML.load(..an empty file content..)` simply returns `false`, and not `{}`. This PR fixes this behavior so tests can also run when no remote service is available.
* | | | | | | | | | | | | | | Merge pull request #30032 from claudiob/remove-httpartyGuillermo Iguaran2017-08-015-21/+18
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / |/| | | | | | | | | | | | | | Remove HTTParty dependency
| * | | | | | | | | | | | | | Don't depend on HTTPartyclaudiob2017-08-015-21/+18
|/ / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "httparty" is only added in #30020 to write two tests to make PUT requests against S3 and GCS. The same requests can be made with net/http, removing a dependency from the Gemfile.
* | | | | | | | | | | | | | Setup travis to be able to run CI tests against S3David Heinemeier Hansson2017-07-315-33/+33
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Move the direct_upload: true convenience option from the activestorage ↵David Heinemeier Hansson2017-07-313-20/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | helper into actionview
* | | | | | | | | | | | | | Move to new storage.yml locationDavid Heinemeier Hansson2017-07-311-0/+0
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Directory and config installation now done by app_generatorDavid Heinemeier Hansson2017-07-311-7/+0
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Create the skeleton directories needed and ignore accordinglyDavid Heinemeier Hansson2017-07-312-0/+8
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Fix gitignore to be relativeDavid Heinemeier Hansson2017-07-311-1/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Follow form from actioncableDavid Heinemeier Hansson2017-07-311-1/+4
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Load activestorage by defaultDavid Heinemeier Hansson2017-07-312-0/+8
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Use config/storage.yml as part of the skeleton and loadingDavid Heinemeier Hansson2017-07-319-43/+48
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Resolve gemspec typoDavid Heinemeier Hansson2017-07-312-1/+86
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | No longer usedDavid Heinemeier Hansson2017-07-311-23/+0
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Require activestorage per default with asset pipelineDavid Heinemeier Hansson2017-07-311-0/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Bring activestorage dependencies into the general GemfileDavid Heinemeier Hansson2017-07-313-233/+14
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Initialize changelogDavid Heinemeier Hansson2017-07-311-0/+3
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Use standard Rails layout for gemspecDavid Heinemeier Hansson2017-07-311-12/+24
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Include default storage configurationDavid Heinemeier Hansson2017-07-315-0/+36
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Add 'activestorage/' from commit '3f4a7218a4a4923a0e7ce1b2eb0d2888ce30da58'Rafael Mendonça França2017-07-31121-0/+7370
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | git-subtree-dir: activestorage git-subtree-mainline: 0d58e7e478e79c2d6b2a39a4444d2a17a903b2a6 git-subtree-split: 3f4a7218a4a4923a0e7ce1b2eb0d2888ce30da58
| * | | | | | | | | | | | | Azure Storage support (#36)Dino Maric2017-07-317-0/+198
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Microsoft Azure storage support * Add support for Microsoft Azure Storage * Comply with the new headers implementation
| * | | | | | | | | | | | | Depend on Ruby >=2.2.2 (#85)Dino Maric2017-07-312-2/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | activestorage.js 0.1.1Javan Makhmali2017-07-301-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Configure per-service request headers for direct uploads (#83)Javan Makhmali2017-07-3011-20/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Configure per-service request headers for direct uploads * Fix header hashes
| * | | | | | | | | | | | | Convert type inquiry into root predicates for base types alone insteadDavid Heinemeier Hansson2017-07-282-16/+14
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Must always return the options even if they werent convertedDavid Heinemeier Hansson2017-07-281-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Add Blob#type as a StringInquirerDavid Heinemeier Hansson2017-07-282-0/+20
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Add a direct_upload: true option to file_field_tag and Form#file_fieldDavid Heinemeier Hansson2017-07-282-1/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Then users don't have to bother with manually referring to internal routes.
| * | | | | | | | | | | | | Add npm package detailsJavan Makhmali2017-07-281-4/+11
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Minor constructor signature tweaksJavan Makhmali2017-07-284-8/+12
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Add JavaScript linting (#82)Javan Makhmali2017-07-286-24/+594
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Add JavaScript direct upload support (#81)Javan Makhmali2017-07-2716-0/+3139
| | | | | | | | | | | | | |