activerecord-s3-bucket-name-validator 0.1.0 → 0.1.2
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: d92a2144185d4209736c4667fa431fcdfd6c03bc54f5438419418bfde54afd35
|
4
|
+
data.tar.gz: f34996e4c9cca6eaa546937100d37d3b64d8d64cf94d3063b603ff7393232846
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75201a63526f505e40cdb651da3e40d128ea7484e6ee19b4c22784282346c93ae71f10b1a2c7061e6d4b9db0518e9551c5ac35117f0f2c2726bd20a60a2561d0
|
7
|
+
data.tar.gz: a8b6e2f259af30265a5d3fbb434f72f35febc98a5cc481a32f463623bf7768c7739d68e971666d12d4eb635d3b405fce9ed353f79e80a209dc96168a7845e77d
|
@@ -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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Claudio Poli
|
@@ -97,7 +97,6 @@ files:
|
|
97
97
|
- ".github/workflows/test.yml"
|
98
98
|
- ".gitignore"
|
99
99
|
- ".ruby-version"
|
100
|
-
- ".travis.yml"
|
101
100
|
- Gemfile
|
102
101
|
- Gemfile.lock
|
103
102
|
- LICENSE.txt
|
@@ -121,11 +120,14 @@ files:
|
|
121
120
|
- lib/activerecord/s3/bucket/name/validator.rb
|
122
121
|
- lib/activerecord/s3/bucket/name/validator/railtie.rb
|
123
122
|
- lib/activerecord/s3/bucket/name/validator/version.rb
|
124
|
-
homepage: https://
|
123
|
+
homepage: https://github.com/icoretech/activerecord-s3-bucket-name-validator
|
125
124
|
licenses:
|
126
125
|
- MIT
|
127
126
|
metadata:
|
128
|
-
homepage_uri: https://
|
127
|
+
homepage_uri: https://github.com/icoretech/activerecord-s3-bucket-name-validator
|
128
|
+
source_code_uri: https://github.com/icoretech/activerecord-s3-bucket-name-validator
|
129
|
+
bug_tracker_uri: https://github.com/icoretech/activerecord-s3-bucket-name-validator/issues
|
130
|
+
changelog_uri: https://github.com/icoretech/activerecord-s3-bucket-name-validator/releases
|
129
131
|
rdoc_options: []
|
130
132
|
require_paths:
|
131
133
|
- lib
|