-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [BREAKING] require “fog-core” instead of “fog” as runtime requirement
- Loading branch information
1 parent
7dd619c
commit 3f50a11
Showing
9 changed files
with
54 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Guide to upgrading from AssetSync 1.x to 2.x | ||
|
||
Make sure that you're running the latest AssetSync 1.x release. | ||
|
||
This upgrading guide touches on: | ||
- Changed dependencies | ||
|
||
|
||
## Changed dependencies | ||
Asset Sync now depends on gem `fog-core` instead of `fog`. | ||
This is due to `fog` is including many unused storage provider gems as its dependencies. | ||
|
||
Asset Sync has no idea about what provider will be used, | ||
so you are responsible for bundling the right gem for the provider to be used. | ||
|
||
For example, when using AWS as fog provider: | ||
```ruby | ||
# Gemfile | ||
gem "asset_sync" | ||
gem "fog-aws" | ||
``` | ||
|
||
If you don't install the required gem, | ||
Fog will complain (by exception) about it when provider is set by Asset Sync. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module AssetSync | ||
VERSION = "1.3.0" | ||
VERSION = "2.0.0.alpha.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters