activerecord-s3-bucket-name-validator 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c542b7bfee72c7daf412ab234a7b25fb20b257daa8f5cf5709ceeb172816c4bd
|
4
|
+
data.tar.gz: b061a104b96decf359e65a44071558a8fd609a66a7fd40020f43305ac4cb7a4e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4b72df146467793b94c825fca3eb99eaeb95628b3a182e0821063bd7b19ee2ba78a0381fa619791bfb4d8826504f39e414f6fabb01155ead5ec94a47f61fe15
|
7
|
+
data.tar.gz: 7e214999de1649bd1355680d2ddc9536e66d4f07044b794218160cf95da56744c6f7884d659df557b2c5a55f401f3678bb75ed91dce2fd8c892bbd261bf774d4
|
@@ -19,6 +19,10 @@ jobs:
|
|
19
19
|
uses: ruby/setup-ruby@v1
|
20
20
|
with:
|
21
21
|
ruby-version: '3.4'
|
22
|
-
bundler-cache:
|
23
|
-
- name:
|
24
|
-
uses: rubygems/
|
22
|
+
bundler-cache: false
|
23
|
+
- name: Configure RubyGems credentials (OIDC)
|
24
|
+
uses: rubygems/configure-rubygems-credentials@v1.0.0
|
25
|
+
- name: Build gem
|
26
|
+
run: gem build *.gemspec
|
27
|
+
- name: Push gem
|
28
|
+
run: gem push *.gem
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
|
12
12
|
spec.summary = %q{ActiveModel/ActiveRecord validator for Amazon S3 bucket naming rules}
|
13
13
|
spec.description = %q{Validate S3 bucket names on your models against the official AWS rules (general purpose, directory buckets, and S3 Tables).}
|
14
|
-
spec.homepage = "https://
|
14
|
+
spec.homepage = "https://github.com/icoretech/activerecord-s3-bucket-name-validator"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
@@ -20,8 +20,9 @@ Gem::Specification.new do |spec|
|
|
20
20
|
# spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
21
21
|
|
22
22
|
spec.metadata["homepage_uri"] = spec.homepage
|
23
|
-
|
24
|
-
|
23
|
+
spec.metadata["source_code_uri"] = "https://github.com/icoretech/activerecord-s3-bucket-name-validator"
|
24
|
+
spec.metadata["bug_tracker_uri"] = "https://github.com/icoretech/activerecord-s3-bucket-name-validator/issues"
|
25
|
+
spec.metadata["changelog_uri"] = "https://github.com/icoretech/activerecord-s3-bucket-name-validator/releases"
|
25
26
|
else
|
26
27
|
raise "RubyGems 2.0 or newer is required to protect against " \
|
27
28
|
"public gem pushes."
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-s3-bucket-name-validator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Claudio Poli
|
@@ -121,11 +121,14 @@ files:
|
|
121
121
|
- lib/activerecord/s3/bucket/name/validator.rb
|
122
122
|
- lib/activerecord/s3/bucket/name/validator/railtie.rb
|
123
123
|
- lib/activerecord/s3/bucket/name/validator/version.rb
|
124
|
-
homepage: https://
|
124
|
+
homepage: https://github.com/icoretech/activerecord-s3-bucket-name-validator
|
125
125
|
licenses:
|
126
126
|
- MIT
|
127
127
|
metadata:
|
128
|
-
homepage_uri: https://
|
128
|
+
homepage_uri: https://github.com/icoretech/activerecord-s3-bucket-name-validator
|
129
|
+
source_code_uri: https://github.com/icoretech/activerecord-s3-bucket-name-validator
|
130
|
+
bug_tracker_uri: https://github.com/icoretech/activerecord-s3-bucket-name-validator/issues
|
131
|
+
changelog_uri: https://github.com/icoretech/activerecord-s3-bucket-name-validator/releases
|
129
132
|
rdoc_options: []
|
130
133
|
require_paths:
|
131
134
|
- lib
|