rails_s3_uploader 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -1
- data/MIT-LICENSE.md +5 -0
- data/README.md +30 -5
- data/lib/rails_s3_uploader/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37706c7dbcb59c11c70fc3743c52270d1c4a7c81b38edefabb50431f1c7c8992
|
4
|
+
data.tar.gz: 2323539b33ffc365ceb253922c28d44b107c17d523d4437868b77e04a7c50601
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c30f89ebe5c7551b73a7ff20ff2192f7a20e927ee4a73bf018b422030e9d7899cd585e70d7fc385db164e2d6850fbc0487f4c6402646af254988840f731ad495
|
7
|
+
data.tar.gz: abe71291c35fc435e4d755f0567e861b95ba095995f8b9793589ea6d50ce2a945349d3f3fd1c38e4f5068db8512c0ec06eb80f699dbaec24d4e247983fec5ebb
|
data/CHANGELOG.md
CHANGED
data/MIT-LICENSE.md
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
2
|
+
|
3
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
4
|
+
|
5
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,6 +1,30 @@
|
|
1
1
|
# Rails S3 Uploader
|
2
2
|
|
3
|
-
Rails S3 Uploader is a gem
|
3
|
+
**Rails S3 Uploader** is a gem that facilitates the process of uploading files to cloud storage services, such as **AWS S3**, by integrating flexibly with Active Storage. This gem was developed to offer advanced and customizable features beyond those natively provided by Active Storage.
|
4
|
+
|
5
|
+
## Purpose and Key Benefits
|
6
|
+
|
7
|
+
The primary purpose of **Rails S3 Uploader** is to provide developers with greater flexibility and control over file management in the cloud. By integrating this gem into your Rails project, you can:
|
8
|
+
|
9
|
+
### Customization and Configuration Flexibility
|
10
|
+
|
11
|
+
- Easily configure integration with AWS S3 or other cloud storage services through custom storage policies, advanced security, and detailed control over files.
|
12
|
+
|
13
|
+
### Advanced File Handling
|
14
|
+
|
15
|
+
- Implement sophisticated operations on files before or after uploading, such as image processing, thumbnail generation, and content validation, automating complex tasks directly within the gem.
|
16
|
+
|
17
|
+
### Integration with APIs and External Services
|
18
|
+
|
19
|
+
- Easily integrate with external APIs to send notifications, process files in external systems, or integrate with content analysis services to ensure security and compliance.
|
20
|
+
|
21
|
+
### Custom Retention and Expiration Policies
|
22
|
+
|
23
|
+
- Define custom policies to manage file retention and expiration according to your project's specific requirements.
|
24
|
+
|
25
|
+
### Support for Business-Specific Features
|
26
|
+
|
27
|
+
- Meet specific business needs, such as version control of files, secure sharing of download links with expiration, and detailed auditing of upload operations.
|
4
28
|
|
5
29
|
---
|
6
30
|
|
@@ -88,11 +112,12 @@ Contributions are welcome! Bug reports and pull requests are welcome on GitHub a
|
|
88
112
|
|
89
113
|
- AWS S3 Account: You need an S3 bucket and access credentials to use the rails_s3_uploader gem.
|
90
114
|
|
91
|
-
##
|
92
|
-
|
93
|
-
This gem is available as open-source under the terms of the MIT license.
|
94
|
-
|
115
|
+
## Contributing to Rails S3 Uploader
|
95
116
|
|
117
|
+
Fork, fix, then send a pull request.
|
96
118
|
|
119
|
+
## Licence
|
97
120
|
|
121
|
+
This gem is available as open-source under the terms of The MIT License (MIT).
|
98
122
|
|
123
|
+
Copyright (c) 2024 **Elton Santos, Raquel Fonseca**. See **MIT-LICENSE** for further details.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_s3_uploader
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elton Santos
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-06-
|
12
|
+
date: 2024-06-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -50,6 +50,7 @@ extra_rdoc_files: []
|
|
50
50
|
files:
|
51
51
|
- ".env.sample"
|
52
52
|
- CHANGELOG.md
|
53
|
+
- MIT-LICENSE.md
|
53
54
|
- README.md
|
54
55
|
- Rakefile
|
55
56
|
- config/initializers/rails_s3_uploader.rb
|