aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Update the README with more explicit expectation settingDavid Heinemeier Hansson2017-07-231-6/+6
|
* VerifiedKeyWithExpiration no longer neededDavid Heinemeier Hansson2017-07-239-62/+11
| | | | Thanks to rails/rails#29854! This does mean that we now depend on rails/rails master.
* Provide a BlobsController for stable blob URLsDavid Heinemeier Hansson2017-07-232-0/+30
| | | | We need to have stable urls for blobs and variants or caching won't work. So provide a controller that can give that and redirect to the service URL upon lookup.
* Switch to simpler signed_id for blob rather than full GlobalIDDavid Heinemeier Hansson2017-07-2312-30/+41
| | | | 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-235-15/+9
| | | | No need for this proliferation
* Disk controller must rely on key aloneDavid Heinemeier Hansson2017-07-231-5/+6
| | | | Otherwise it can't be used to display variants. It's better anyway since all other services won't know about blobs either. Better simulation. Closes #71
* Even more needless requiresDavid Heinemeier Hansson2017-07-224-6/+0
|
* Nix more needless requiresDavid Heinemeier Hansson2017-07-224-8/+4
|
* No need for explicit requires any moreDavid Heinemeier Hansson2017-07-221-6/+0
|
* Fix extension to run test automaticallyDavid Heinemeier Hansson2017-07-221-0/+0
|
* Move model tests to models directoryDavid Heinemeier Hansson2017-07-224-0/+0
|
* Move models and jobs to the app setupDavid Heinemeier Hansson2017-07-2214-1/+3
| | | | 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-222-1/+1
|
* 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.
* Assume Rails is definedDino Maric2017-07-221-1/+1
|
* Merge pull request #67 from dixpac/move_controller_testsDavid Heinemeier Hansson2017-07-222-0/+0
|\ | | | | Move all controller tests to controllers dir
| * Move all controller tests to controller/ dirdixpac2017-07-222-0/+0
|/
* Fix RuboCop offenses and warningsKoichi ITO2017-07-227-52/+52
|
* Merge pull request #63 from rails/variantsDavid Heinemeier Hansson2017-07-2121-53/+296
|\ | | | | On-demand variants
| * Mention need for mini_magick with variantsDavid Heinemeier Hansson2017-07-211-0/+1
| |
| * Merge branch 'master' into variantsDavid Heinemeier Hansson2017-07-211-3/+4
| |\ | |/ |/|
* | Add instruction to install the gem from the master (#65)Dino Maric2017-07-211-3/+4
| |
| * Quick example of variantsDavid Heinemeier Hansson2017-07-211-0/+7
| |
| * Test actual transformation via controller tooDavid Heinemeier Hansson2017-07-213-7/+7
| |
| * Test actual transformationsDavid Heinemeier Hansson2017-07-213-2/+15
| |
| * Anemic introDavid Heinemeier Hansson2017-07-211-0/+1
| |
| * Extract test helper for image blob fixturesDavid Heinemeier Hansson2017-07-213-7/+9
| |
| * Fix parens after inline blockDavid Heinemeier Hansson2017-07-211-1/+1
| |
| * Actually we just want them mounted straightDavid Heinemeier Hansson2017-07-211-1/+1
| |
| * Provide directed URL as well as resolvingDavid Heinemeier Hansson2017-07-211-4/+7
| |
| * Proper requireDavid Heinemeier Hansson2017-07-211-1/+1
| |
| * Fix and test VariantsControllerDavid Heinemeier Hansson2017-07-215-12/+36
| |
| * Over-indentedDavid Heinemeier Hansson2017-07-211-2/+2
| |
| * Precise namingDavid Heinemeier Hansson2017-07-211-1/+1
| |
| * Extract variation value objectDavid Heinemeier Hansson2017-07-216-65/+84
| |
| * Hacky way to mount routes for engine controller testsDavid Heinemeier Hansson2017-07-211-0/+11
| |
| * Mount routes on the engineDavid Heinemeier Hansson2017-07-211-1/+1
| |
| * Accept that this is a full-Rails engineDavid Heinemeier Hansson2017-07-212-9/+46
| |
| * 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-202-7/+9
| |
| * Fix-up variants controllerDavid Heinemeier Hansson2017-07-202-22/+11
| |
| * Move controllers to default engine location for auto loadingDavid Heinemeier Hansson2017-07-204-14/+23
| |
| * Extract routes.rb to engine location for auto configurationDavid Heinemeier Hansson2017-07-204-25/+13
| |
| * Use the direct accessorDavid Heinemeier Hansson2017-07-201-3/+1
| |
| * 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
| |