aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_storage
Commit message (Collapse)AuthorAgeFilesLines
* Switch to simpler signed_id for blob rather than full GlobalIDDavid Heinemeier Hansson2017-07-231-1/+1
| | | | We don't need to lookup multiple different classes, so no need to use a globalid.
* Switch to a single message verifierDavid Heinemeier Hansson2017-07-231-7/+2
| | | | No need for this proliferation
* Move models and jobs to the app setupDavid Heinemeier Hansson2017-07-2213-679/+0
| | | | Follow engine conventions more closely
* Unused, we can extract from it out-of-repoDavid Heinemeier Hansson2017-07-221-90/+0
|
* Move storage_services.yml to config for consistencyDavid Heinemeier Hansson2017-07-221-27/+0
|
* Don't need to validate transformations actuallyDavid Heinemeier Hansson2017-07-221-12/+0
| | | | Since they're only ever generated in signed form. Users never have direct access to dictate transformations.
* Fix RuboCop offenses and warningsKoichi ITO2017-07-222-2/+2
|
* Anemic introDavid Heinemeier Hansson2017-07-211-0/+1
|
* Proper requireDavid Heinemeier Hansson2017-07-211-1/+1
|
* Fix and test VariantsControllerDavid Heinemeier Hansson2017-07-211-6/+0
|
* Extract variation value objectDavid Heinemeier Hansson2017-07-214-58/+71
|
* Better namingDavid Heinemeier Hansson2017-07-211-2/+3
|
* True is the same as no argumentsDavid Heinemeier Hansson2017-07-201-3/+4
|
* Consistent namingDavid Heinemeier Hansson2017-07-201-2/+2
|
* Make processing an explicit stepDavid Heinemeier Hansson2017-07-201-4/+8
|
* Fix-up variants controllerDavid Heinemeier Hansson2017-07-201-22/+0
|
* Move controllers to default engine location for auto loadingDavid Heinemeier Hansson2017-07-202-52/+0
|
* Extract routes.rb to engine location for auto configurationDavid Heinemeier Hansson2017-07-202-14/+0
|
* Use a unique blob variant key for storageDavid Heinemeier Hansson2017-07-201-2/+10
|
* Do real transformations in a safe wayDavid Heinemeier Hansson2017-07-201-4/+20
|
* Follow AR like naming of factory methodDavid Heinemeier Hansson2017-07-202-2/+2
|
* Easier access to the variant of a blobDavid Heinemeier Hansson2017-07-201-0/+5
|
* Merge branch 'master' into variantsDavid Heinemeier Hansson2017-07-209-28/+41
|\
| * Accept S3 upload options (e.g. server_side_encryption)James Baer2017-07-201-3/+5
| |
| * Add direct upload support to GCS serviceMichael Herold2017-07-171-0/+11
| |
| * Splat optionsGeorge Claghorn2017-07-161-16/+2
| |
| * Fix a typo in S3Servicecolorfulfool2017-07-161-3/+1
| |
| * Swap branchesGeorge Claghorn2017-07-151-3/+3
| |
| * Merge pull request #48 from seanhandley/hosted_s3George Claghorn2017-07-151-2/+18
| |\ | | | | | | Allow custom endpoints for S3.
| | * Allow custom endpoints for S3.Sean Handley2017-07-151-2/+18
| | |
| * | Put conditional backGeorge Claghorn2017-07-141-2/+2
| | |
| * | Fixing logger to work with Rails 5.2.0.alphaStanislav Gospodinov2017-07-151-3/+3
| | |
| * | Merge pull request #53 from colorfulfool/error-messagesGeorge Claghorn2017-07-142-2/+5
| |\ \ | | | | | | | | Useful error messages for two possible misconfigurations
| | * | Fail early if no storage service is specifiedcolorfulfool2017-07-151-0/+3
| | | |
| | * | Don't fail on boot because of missing S3 keys when S3 is not usedcolorfulfool2017-07-151-2/+2
| | |/
| * / Revert back to the original implementaion with varaiblesdixpac2017-07-141-2/+8
| |/ | | | | | | | | | | Revert `exist? and url` to the original implementation. Since the new one doesn't provide any benefits and makes implementation harder to follow.
| * Added rubocop / codeclimate config and fixed current offenses (#45)Cristian Bica2017-07-146-11/+11
| |
| * Remove few ivars from gcs_service implementationdixpac2017-07-131-8/+2
| |
| * Merge pull request #42 from quartzmo/gcs-site-urlGeorge Claghorn2017-07-121-2/+2
| |\ | | | | | | Update GCSService#url
| | * Update GCSService#urlChris Smith2017-07-121-2/+2
| | | | | | | | | | | | | | | Update google-cloud-storage dependency to 1.3 Refactor arguments to Google::Cloud::Storage::File#signed_url
| * | Revert "S3: slim down service implementation (#40)" (#41)David Heinemeier Hansson2017-07-121-24/+36
| |/ | | | | This reverts commit 6d3962461fb8d35fc9538d685fee96267663acf2.
| * S3: slim down service implementation (#40)Jeremy Daer2017-07-111-36/+24
| | | | | | | | | | | | | | * Use simple core API for duck-type compat with other clients * initialize: accept an existing client * initialize: accept arbitrary client args instead of a fixed, required set * download: use native get_object streaming, no need to implement range requests * exists?: use head_object (which returns immediately) rather than waiting for existence
| * Expose chunked downloadsGeorge Claghorn2017-07-102-6/+6
| |
* | Very incomplete first stabDavid Heinemeier Hansson2017-07-115-24/+112
|/
* Accept sgids for existing blobs created via direct upload as an attachableDavid Heinemeier Hansson2017-07-091-0/+4
|
* Direct uploads for S3David Heinemeier Hansson2017-07-097-2/+42
|
* Copypasta commentsDavid Heinemeier Hansson2017-07-091-3/+0
| | | | | | | | | | # Conflicts: # lib/active_storage/engine.rb # lib/active_storage/service.rb # lib/active_storage/service/disk_service.rb # lib/active_storage/service/s3_service.rb # test/service/s3_service_test.rb # test/test_helper.rb
* Instrument and log the servicesDavid Heinemeier Hansson2017-07-096-32/+168
|
* Merge pull request #27 from dixpac/fix_configuration_keys_symbolizationDavid Heinemeier Hansson2017-07-091-1/+1
|\ | | | | Symbolize all keys inside configuration nested hash
| * Symbolize all keys inside configuration nested hashdixpac2017-07-091-1/+1
| | | | | | | | | | Since configuration is a nested hash we need to symbolize all keys of the hash. Othervise fetcing will fail on start