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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d98b82fb4e84cc13bc28e6b39406244b3f1fc90e2907a83dd362d50690d4323f
4
- data.tar.gz: 9cca5b7570b4a62a6cf287b90e744f196d285bb799c0178a295e383973a10a33
3
+ metadata.gz: 37706c7dbcb59c11c70fc3743c52270d1c4a7c81b38edefabb50431f1c7c8992
4
+ data.tar.gz: 2323539b33ffc365ceb253922c28d44b107c17d523d4437868b77e04a7c50601
5
5
  SHA512:
6
- metadata.gz: a0a025d7dc499fec9bae84f6317e90de047b2d5be99cd73b74f1df7c506175fb5745b1d6cd44e02068cecf651480dbedf43f84e87f97e20bb4442092abe5247a
7
- data.tar.gz: b2b76b8f7dde18c7fa6bdda4fa1201e0d01b0555462fc34e3922dc863877234ad775b50a9e768785ccf371bed27f1036e4965dbbddbe4c56ef3de7dc7c705d32
6
+ metadata.gz: c30f89ebe5c7551b73a7ff20ff2192f7a20e927ee4a73bf018b422030e9d7899cd585e70d7fc385db164e2d6850fbc0487f4c6402646af254988840f731ad495
7
+ data.tar.gz: abe71291c35fc435e4d755f0567e861b95ba095995f8b9793589ea6d50ce2a945349d3f3fd1c38e4f5068db8512c0ec06eb80f699dbaec24d4e247983fec5ebb
data/CHANGELOG.md CHANGED
@@ -1,2 +1,17 @@
1
- # CHANGE LOG
1
+ ## 0.1.3
2
2
 
3
+ - Change readme
4
+ - Change changelog
5
+ - Add MIT License
6
+
7
+ ## 0.1.2
8
+
9
+ - Change readme
10
+
11
+ ## 0.1.1
12
+
13
+ - Add first logic on gem
14
+
15
+ ## 0.1.0
16
+
17
+ - First release
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 in development to facilitate file uploads to Amazon S3 using Active Storage in Rails applications.
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
- ## Licence
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsS3Uploader
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
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.2
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-23 00:00:00.000000000 Z
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