inova_aws_s3 0.1.0 → 0.3.0

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: ae5e45edf2719c8ba5427ce45288ce661dfc558175f51afdfb9d6ab4f6a8896d
4
- data.tar.gz: d02eafde3bba0be789778945d208021c4c03f9a3d03134450e873068004ae29d
3
+ metadata.gz: 44a00ab34bb9ec0d7b0dfb1333a92f64de264ef16c10b47f17b1bb94d2b545e8
4
+ data.tar.gz: d2508c45a788747652517da78e4fa6bd36a16e1f520ec6bb69c5203b6bb2fe83
5
5
  SHA512:
6
- metadata.gz: '029466e5f2dbe14a8f735a8bb0b313f8d775e5e292f24dbd4b700a62988fbb6543c91a498a6d40973c5deee869c6bce9e26897da0a395e02b0bd2a4125768057'
7
- data.tar.gz: 2bdc1416cf19a7414ea5cb6b0c5efdc59d0eed0998a75bb091b7915e4761bc9cb4e11f49d524a56912306a1173b64e958891cb0e8d93e2da057b9674010e8c0f
6
+ metadata.gz: a3e5ee3cd46d97ec0c6865a03a93b138395251410d7424077465f6df7a5151749973dc7e0ca05763d726371c33ceaefa66920a338f3a708b65a88e4e3761739d
7
+ data.tar.gz: 7c144bc9b3806662d6ee242b441160bebf3c3e0a1277085ffb2887b35543a8d7546cb19e6e4018e2c48fae61db1760109beb95e07bb8f083ac784daa984ee7cf
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [0.3.0] - 2023-11-23
2
+
3
+ - Fix install generator typo
4
+
1
5
  ## [0.1.0] - 2023-11-23
2
6
 
3
7
  - Initial release
data/README.md CHANGED
@@ -5,18 +5,18 @@ InovaAwsS3 is a Ruby gem designed to simplify interactions with Amazon S3, provi
5
5
  To use this gem in your project, add it to your application's Gemfile:
6
6
 
7
7
  ```ruby
8
- gem 'inova_aws_s3', '~> 0.1.0'
8
+ gem 'inova_aws_s3', '~> 0.3.0'
9
9
  ```
10
10
 
11
11
  Alternatively, you can install the gem directly using:
12
12
 
13
13
  ```bash
14
- gem install inova_aws_s3 -v '~> 0.1.0'
14
+ gem install inova_aws_s3 -v '~> 0.3.0'
15
15
  ```
16
16
  ## Requirments
17
17
 
18
- - Ruby >= 3.0.0
19
- - Rails >= 6.1.3
18
+ - Ruby >= 3.1.2
19
+ - Rails >= 6.1.7
20
20
 
21
21
  ## Usage
22
22
 
data/inova_aws_s3.gemspec CHANGED
@@ -12,8 +12,8 @@ Gem::Specification.new do |spec|
12
12
  spec.description = "This gem is used to upload files to AWS S3."
13
13
  spec.homepage = "https://inovaeg.com"
14
14
  spec.license = "MIT"
15
- spec.required_ruby_version = ">= 3.0.0"
16
- spec.add_dependency 'rails', '>= 6.0'
15
+ spec.required_ruby_version = ">= 3.1.2"
16
+ spec.add_dependency 'rails', '>= 6.1.7'
17
17
  spec.add_dependency 'aws-sdk-s3', '~> 1'
18
18
  spec.files = Dir['lib/**/*', 'config/**/*', 'lib/generators/**/*']
19
19
 
@@ -1,4 +1,4 @@
1
- YourGemName.configure do |config|
1
+ InovaAwsS3.configure do |config|
2
2
  # Set your configuration options here
3
3
  config.acl = 'public-read'
4
4
  config.bucket_name = 'your_bucket_name'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module InovaAwsS3
4
- VERSION = "0.1.0"
4
+ VERSION = "0.3.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inova_aws_s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ahmed Mos`ad
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '6.0'
19
+ version: 6.1.7
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '6.0'
26
+ version: 6.1.7
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: aws-sdk-s3
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -53,8 +53,8 @@ files:
53
53
  - Rakefile
54
54
  - inova_aws_s3.gemspec
55
55
  - lib/aws/s3_service.rb
56
- - lib/generators/inova_aws_s3/install/templates/inova_aws_s3_initializer.rb
57
56
  - lib/generators/inova_aws_s3/install_generator.rb
57
+ - lib/generators/inova_aws_s3/templates/inova_aws_s3_initializer.rb
58
58
  - lib/inova_aws_s3.rb
59
59
  - lib/inova_aws_s3/configuration.rb
60
60
  - lib/inova_aws_s3/test_config.rb
@@ -75,14 +75,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
75
75
  requirements:
76
76
  - - ">="
77
77
  - !ruby/object:Gem::Version
78
- version: 3.0.0
78
+ version: 3.1.2
79
79
  required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  requirements:
81
81
  - - ">="
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  requirements: []
85
- rubygems_version: 3.2.3
85
+ rubygems_version: 3.3.7
86
86
  signing_key:
87
87
  specification_version: 4
88
88
  summary: Ruby Gem for uploading files to AWS S3.