reserved_subdomains 0.9.3 → 0.9.4
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 +4 -4
- data/.github/workflows/ruby.yml +2 -4
- data/Gemfile.lock +8 -8
- data/lib/reserved_subdomains/version.rb +1 -1
- data/reserved_subdomains.gemspec +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2bc8879332c371c921e0805fa87dd20a02401439ac0a94f8097c394a164246d7
|
|
4
|
+
data.tar.gz: 39d735ca0df29c0dc898c8d29304a5b59193d41df6413ca4afa6b2372e36a943
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7691c076f45177793aa5506e3a835bf0b62337e6c91ce7043c5d9e3ca1e1bdee28e073b015b3667b7c00787d965605f74d84af3f9ae0021ef56a70148ae35f35
|
|
7
|
+
data.tar.gz: bb5b56bed80dedd5f109fd5ac4262a338da3bc5f955dd40d0add3960ca6bb72d6f5e3af2963cf773833fc7f4c8d40e41a4ce264770a540efe472adab684a06bb
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -4,15 +4,13 @@ on: [push]
|
|
|
4
4
|
|
|
5
5
|
jobs:
|
|
6
6
|
build:
|
|
7
|
-
|
|
8
7
|
runs-on: ubuntu-latest
|
|
9
|
-
|
|
10
8
|
steps:
|
|
11
9
|
- uses: actions/checkout@v2
|
|
12
10
|
- name: Set up Ruby 2.7
|
|
13
|
-
uses:
|
|
11
|
+
uses: ruby/setup-ruby@v1
|
|
14
12
|
with:
|
|
15
|
-
|
|
13
|
+
bundler-cache: true
|
|
16
14
|
- name: Build and test with Rake
|
|
17
15
|
run: |
|
|
18
16
|
gem install bundler
|
data/Gemfile.lock
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
reserved_subdomains (0.9.
|
|
5
|
-
activemodel (
|
|
4
|
+
reserved_subdomains (0.9.4)
|
|
5
|
+
activemodel (>= 6.0)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
activemodel (6.1.
|
|
11
|
-
activesupport (= 6.1.
|
|
12
|
-
activesupport (6.1.
|
|
10
|
+
activemodel (6.1.4.1)
|
|
11
|
+
activesupport (= 6.1.4.1)
|
|
12
|
+
activesupport (6.1.4.1)
|
|
13
13
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
14
14
|
i18n (>= 1.6, < 2)
|
|
15
15
|
minitest (>= 5.1)
|
|
16
16
|
tzinfo (~> 2.0)
|
|
17
17
|
zeitwerk (~> 2.3)
|
|
18
|
-
concurrent-ruby (1.1.
|
|
18
|
+
concurrent-ruby (1.1.9)
|
|
19
19
|
diff-lcs (1.4.4)
|
|
20
|
-
i18n (1.8.
|
|
20
|
+
i18n (1.8.11)
|
|
21
21
|
concurrent-ruby (~> 1.0)
|
|
22
22
|
minitest (5.14.4)
|
|
23
23
|
rake (13.0.3)
|
|
@@ -36,7 +36,7 @@ GEM
|
|
|
36
36
|
rspec-support (3.10.2)
|
|
37
37
|
tzinfo (2.0.4)
|
|
38
38
|
concurrent-ruby (~> 1.0)
|
|
39
|
-
zeitwerk (2.
|
|
39
|
+
zeitwerk (2.5.1)
|
|
40
40
|
|
|
41
41
|
PLATFORMS
|
|
42
42
|
ruby
|
data/reserved_subdomains.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.name = "reserved_subdomains"
|
|
8
8
|
spec.version = ReservedSubdomains::VERSION
|
|
9
9
|
spec.authors = ["Clayton Lengel-Zigich"]
|
|
10
|
-
spec.email = ["reserved_subdomains@
|
|
10
|
+
spec.email = ["clayton+reserved_subdomains@claytonlz.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{Custom Active Record validator for reserved subdomains.}
|
|
13
13
|
spec.description = %q{A custom Active Record validator that helps you prevent users from signing up for multi-tenant style systems with reserved subdomains like www, ftp, mail, stmp, etc.}
|
|
@@ -34,7 +34,7 @@ Gem::Specification.new do |spec|
|
|
|
34
34
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
35
35
|
spec.require_paths = ["lib"]
|
|
36
36
|
|
|
37
|
-
spec.add_dependency "activemodel", "
|
|
37
|
+
spec.add_dependency "activemodel", ">= 6.0"
|
|
38
38
|
|
|
39
39
|
spec.add_development_dependency "bundler", "~> 2.0"
|
|
40
40
|
spec.add_development_dependency "rake", "~> 13.0"
|
metadata
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: reserved_subdomains
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Clayton Lengel-Zigich
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-03
|
|
11
|
+
date: 2021-11-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activemodel
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '6.0'
|
|
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
26
|
version: '6.0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
@@ -70,7 +70,7 @@ description: A custom Active Record validator that helps you prevent users from
|
|
|
70
70
|
up for multi-tenant style systems with reserved subdomains like www, ftp, mail,
|
|
71
71
|
stmp, etc.
|
|
72
72
|
email:
|
|
73
|
-
- reserved_subdomains@
|
|
73
|
+
- clayton+reserved_subdomains@claytonlz.com
|
|
74
74
|
executables: []
|
|
75
75
|
extensions: []
|
|
76
76
|
extra_rdoc_files: []
|
|
@@ -116,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
116
116
|
- !ruby/object:Gem::Version
|
|
117
117
|
version: '0'
|
|
118
118
|
requirements: []
|
|
119
|
-
rubygems_version: 3.1.
|
|
119
|
+
rubygems_version: 3.1.6
|
|
120
120
|
signing_key:
|
|
121
121
|
specification_version: 4
|
|
122
122
|
summary: Custom Active Record validator for reserved subdomains.
|