rails-param-validation 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 +4 -4
- data/lib/rails-param-validation/version.rb +1 -1
- data/rails-param-validation.gemspec +5 -5
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b55168eefe4dc2b76d0a342546f807ea6b22475a7a1798a03a53c04943726a6
|
4
|
+
data.tar.gz: e3c250dbb5fc1f9766f75a32146e72a42a1a7250cb261fc528088ac0e6785735
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9591ca7d203ddc520b95a9e1bcce791259d5f16ef31a43b816c6caecf53a1f68214c2b1376b38a822f59d54b29fd35bfccd30e0858361aec3c5e56700dd3a14
|
7
|
+
data.tar.gz: d5d75b3730271590d2c5fb30ad0b7c888a13f350b38af3da66a305e3464f84821145c8147ab81e5072cb4e6394b7f63d02356e1c2a5fb838d3911a3c3d904d24
|
@@ -6,17 +6,17 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.authors = ["Oskar Kirmis"]
|
7
7
|
spec.email = ["oskar.kirmis@posteo.de"]
|
8
8
|
|
9
|
-
spec.summary = "
|
10
|
-
spec.description = "
|
11
|
-
spec.homepage = "https://
|
9
|
+
spec.summary = "Declarative parameter definition and validation for Rails"
|
10
|
+
spec.description = "Declarative parameter definition and validation for Rails"
|
11
|
+
spec.homepage = "https://okirmis.github.io/rails-param-validation"
|
12
12
|
spec.license = "MIT"
|
13
13
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
14
14
|
|
15
15
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
16
16
|
|
17
17
|
spec.metadata["homepage_uri"] = spec.homepage
|
18
|
-
spec.metadata["source_code_uri"] = "https://
|
19
|
-
spec.metadata["changelog_uri"] = "https://
|
18
|
+
spec.metadata["source_code_uri"] = "https://github.com/okirmis/rails-param-validation"
|
19
|
+
spec.metadata["changelog_uri"] = "https://github.com/okirmis/rails-param-validation"
|
20
20
|
|
21
21
|
# Specify which files should be added to the gem when it is released.
|
22
22
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-param-validation
|
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
|
- Oskar Kirmis
|
@@ -10,7 +10,7 @@ bindir: bin
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2020-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description: Declarative parameter definition and validation for Rails
|
14
14
|
email:
|
15
15
|
- oskar.kirmis@posteo.de
|
16
16
|
executables:
|
@@ -70,14 +70,14 @@ files:
|
|
70
70
|
- lib/rails-param-validation/validators/uuid.rb
|
71
71
|
- lib/rails-param-validation/version.rb
|
72
72
|
- rails-param-validation.gemspec
|
73
|
-
homepage: https://
|
73
|
+
homepage: https://okirmis.github.io/rails-param-validation
|
74
74
|
licenses:
|
75
75
|
- MIT
|
76
76
|
metadata:
|
77
77
|
allowed_push_host: https://rubygems.org
|
78
|
-
homepage_uri: https://
|
79
|
-
source_code_uri: https://
|
80
|
-
changelog_uri: https://
|
78
|
+
homepage_uri: https://okirmis.github.io/rails-param-validation
|
79
|
+
source_code_uri: https://github.com/okirmis/rails-param-validation
|
80
|
+
changelog_uri: https://github.com/okirmis/rails-param-validation
|
81
81
|
post_install_message:
|
82
82
|
rdoc_options: []
|
83
83
|
require_paths:
|
@@ -96,5 +96,5 @@ requirements: []
|
|
96
96
|
rubygems_version: 3.0.1
|
97
97
|
signing_key:
|
98
98
|
specification_version: 4
|
99
|
-
summary:
|
99
|
+
summary: Declarative parameter definition and validation for Rails
|
100
100
|
test_files: []
|