Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert "Merge pull request #15446 from akshay-vishnoi/doc_changes" | Matthew Draper | 2017-08-05 | 1 | -1/+1 |
| | | | | It was right as originally written in #15440. | ||||
* | Merge pull request #30078 from y-yagi/fix_respository | Ryuta Kamizono | 2017-08-05 | 2 | -4/+4 |
|\ | | | | | Fix repository URL [ci skip] | ||||
| * | Fix repository URL [ci skip] | yuuji.yaginuma | 2017-08-05 | 2 | -4/+4 |
|/ | | | | changed `rails/activestorage` to `rails/rails`. | ||||
* | Merge pull request #30020 from rails/active-storage-import | David Heinemeier Hansson | 2017-08-04 | 144 | -26/+7217 |
|\ | | | | | Add Active Storage to Rails | ||||
| * | Rename Azure to AzureStorage (#30057) | Dino Maric | 2017-08-04 | 6 | -8/+8 |
| | | |||||
| * | Fix tests for AWS buckets that include a . (#30059) | Claudio B | 2017-08-04 | 2 | -3/+7 |
| | | | | | | | | | | | | | | | | | | If an AWS bucket name includes a `.` (e.g. `bucket.name`), then the canonical URL for an object will start with "https://s3.amazonaws.com/bucket.name/" and not with "https://bucket.name.s3.amazonaws.com/". The URL tests have now been separated into two separate asserts, to ensure that both the "s3.amazonaws.com" and the "bucket.name" components are included, but not specifically in that order. | ||||
| * | Add Active Storage to README and release (#30065) | Claudio B | 2017-08-04 | 2 | -1/+3 |
| | | | | | | Before we forget... | ||||
| * | Make sure the test fails if the code chages | Rafael Mendonça França | 2017-08-04 | 1 | -8/+10 |
| | | | | | | | | | | | | | | | | The test was passing before because it was not being testes correctly. Now we create a different engine that is loaded before the already exising and we make sure that the first call for isolate_namespace is what takes effect. | ||||
| * | Do not call isolate_namespace on the application | Rafael Mendonça França | 2017-08-04 | 1 | -1/+9 |
| | | | | | | | | | | | | | | | | | | What we want to test is that two different calls to isolate_namespace with the same module doesn't change the original railtie. We can do that defining two different railties. We can't call in the application because this method is not supposed to be called in an Application class. | ||||
| * | Include active_storage in all generated application.rb files | David Heinemeier Hansson | 2017-08-04 | 3 | -1/+4 |
| | | | | | | | | And deal with a temporary test fix until we allow you to skip active storage. | ||||
| * | Convert to strings so array can be sorted deterministically | David Heinemeier Hansson | 2017-08-04 | 1 | -3/+3 |
| | | |||||
| * | Deterministic comparisons please | David Heinemeier Hansson | 2017-08-03 | 1 | -3/+3 |
| | | |||||
| * | Do not change the entire codebase style only because of active_storage | Rafael Mendonça França | 2017-08-03 | 2 | -5/+2 |
| | | | | | | | | | | | | We are already removing the braces around hash parameters in the last argument in other places so we should not change the entire codebase because of two places. | ||||
| * | Merge pull request #30041 from dixpac/change_azure_core_dependecy | Rafael França | 2017-08-03 | 2 | -13/+4 |
| |\ | | | | | | | Change azure core dependency | ||||
| | * | Depend on offical azure-core | dixpac | 2017-08-03 | 2 | -13/+4 |
| | | | | | | | | | | | | | | | No need to depend on my fork anymore, they've just release fix officially. | ||||
| * | | Fix all rubocop violations | Rafael Mendonça França | 2017-08-03 | 2 | -6/+5 |
| | | | |||||
| * | | Merge pull request #30061 from claudiob/ast-rubocop | Rafael França | 2017-08-03 | 5 | -5/+5 |
| |\ \ | | | | | | | | | Make Rubocop happy about ActiveStorage | ||||
| | * | | Make Rubocop happier about ActiveStorage | claudiob | 2017-08-03 | 5 | -5/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Running `rubocop activestorage` before this commit resulted in 20 offenses. This commit only fixes: - Trailing whitespace detected - Space inside } missing - Put one space between the method name and the first argument. The other offenses are left since they are intentional according to @georgeclaghorn (https://github.com/rails/rails/pull/30061#issuecomment-319999190) | ||||
| * | | | We need to require the top file before individual one | Rafael Mendonça França | 2017-08-03 | 1 | -0/+1 |
| | | | | |||||
| * | | | Do not eager load ActiveRecord::Base | Rafael Mendonça França | 2017-08-03 | 6 | -22/+6 |
| | | | | | | | | | | | | | | | | Everything inside the app directory of a engine is autoload/eager loaded automatically so we don't need to require them. | ||||
| * | | | Merge branch 'active-storage-import' of github.com:rails/rails into ↵ | David Heinemeier Hansson | 2017-08-03 | 5 | -7/+85 |
| |\ \ \ | | | | | | | | | | | | | | | | active-storage-import | ||||
| | * | | | Remove duplicated convert_direct_upload_option_to_url | Rafael Mendonça França | 2017-08-03 | 2 | -7/+4 |
| | | | | | | | | | | | | | | | | | | | | FormHelper includes FormTagHelper so we don't need to define two methods | ||||
| | * | | | Refactor convert_direct_upload_option_to_url | Rafael Mendonça França | 2017-08-03 | 2 | -3/+35 |
| | | | | | | | | | | | | | | | | | | | | Also make sure file_field doesn't mutate the original options passed in. | ||||
| | * | | | Make sure Action View doesn't break with Active Storage | Rafael Mendonça França | 2017-08-03 | 3 | -1/+50 |
| | | | | | | | | | | | | | | | | | | | | | | | | | When Active Storage is not loaded and direct_upload is used on file_field_tag we should not raise an exception. | ||||
| * | | | | Active Storage routes are now part of the default routes | David Heinemeier Hansson | 2017-08-03 | 1 | -9/+37 |
| |/ / / | | | | | | | | | | | | | It's worth considering whether we should hide these by default, but I'm kinda thinking no. It's very reasonable that someone would want to call these directly, so they should be documented. | ||||
| * | | | Same issue from AR getting loaded earlier | David Heinemeier Hansson | 2017-08-03 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | cc @rafaelfranca | ||||
| * | | | Including new default classes in loading test | David Heinemeier Hansson | 2017-08-03 | 1 | -3/+3 |
| | | | | |||||
| * | | | Active Storage loads AR earlier to extend it so require env later | David Heinemeier Hansson | 2017-08-03 | 1 | -3/+7 |
| | | | | |||||
| * | | | There is no reason to single line methods here | Rafael Mendonça França | 2017-08-03 | 1 | -4/+12 |
| |/ / | | | | | | | | | | | | | I know those methods are unlikely to change but having one line method is hard to read and also hard to modify. | ||||
| * | | Generating the app is where the exception is now raised | David Heinemeier Hansson | 2017-08-03 | 1 | -1/+1 |
| | | | |||||
| * | | Can't initialize a message verifier without a key base | David Heinemeier Hansson | 2017-08-03 | 1 | -1/+3 |
| | | | |||||
| * | | Merge pull request #30053 from ffmike/patch-2 | Richard Schneeman | 2017-08-03 | 1 | -1/+2 |
| |\ \ | | |/ | |/| | Add Azure gems to README | ||||
| | * | Tweak requires | Mike Gunderloy | 2017-08-02 | 1 | -1/+1 |
| | | | | | | | | | Omit azure-core (it's required by azure-storage), remove require:false to match other points. | ||||
| | * | Use release azure-core gem | Mike Gunderloy | 2017-08-02 | 1 | -1/+1 |
| | | | |||||
| | * | Update README.md | Mike Gunderloy | 2017-08-02 | 1 | -1/+1 |
| | | | |||||
| | * | Add Azure gems to README | Mike Gunderloy | 2017-08-02 | 1 | -1/+2 |
| |/ | |||||
| * | Merge pull request #30046 from ↵ | Rafael França | 2017-08-02 | 17 | -28/+27 |
| |\ | | | | | | | | | | | | | kamipo/fix_string_literals_violations_for_active_storage Fix `Style/StringLiterals` violations for Active Storage | ||||
| | * | Fix `Style/StringLiterals` violations for Active Storage | Ryuta Kamizono | 2017-08-03 | 17 | -28/+27 |
| |/ | | | | | | | | | | | | | | | | | | | | | | | ``` % be rubocop -a --only Style/StringLiterals activestorage Inspecting 74 files ........................................CCCCCCCCCC.C........CC.......C.C.. (snip) 74 files inspected, 31 offenses detected, 31 offenses corrected ``` | ||||
| * | Merge branch 'master' into active-storage-import | David Heinemeier Hansson | 2017-08-02 | 38 | -110/+211 |
| |\ | |||||
| * \ | Merge pull request #30040 from rbarysas/active-storage-import | Ryuta Kamizono | 2017-08-02 | 1 | -0/+1 |
| |\ \ | | | | | | | | | Add Azure to the available services list [ci skip] | ||||
| | * | | Add Azure to the available services list | Rolandas Barysas | 2017-08-02 | 1 | -0/+1 |
| |/ / | |||||
| * | | Merge pull request #30035 from ytbryan/patch-1 | Ryuta Kamizono | 2017-08-02 | 1 | -3/+1 |
| |\ \ | | | | | | | | | Add Azure to readme [ci skip] | ||||
| | * | | Add Azure to readme | Bryan Lim | 2017-08-02 | 1 | -3/+1 |
| |/ / | | | | | | | previously https://github.com/rails/activestorage/pull/86 | ||||
| * | | Skip if credentials aren't provided | David Heinemeier Hansson | 2017-08-01 | 2 | -2/+2 |
| | | | |||||
| * | | Fix dummy app for inclusion in Rails | David Heinemeier Hansson | 2017-08-01 | 1 | -2/+1 |
| | | | |||||
| * | | Remove circular dependency | David Heinemeier Hansson | 2017-08-01 | 1 | -2/+0 |
| | | | |||||
| * | | Merge branch 'master' into active-storage-import | David Heinemeier Hansson | 2017-08-01 | 17 | -35/+71 |
| |\ \ | |||||
| * | | | Prevent interpolation of ERB elements | David Heinemeier Hansson | 2017-08-01 | 1 | -6/+6 |
| | | | | |||||
| * | | | Add the storage.yml file by default | David Heinemeier Hansson | 2017-08-01 | 1 | -0/+1 |
| | | | | |||||
| * | | | Follow same format as action_cable | David Heinemeier Hansson | 2017-08-01 | 1 | -1/+3 |
| | | | |