dry_validation_parser 0.1.1 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +0 -3
- data/lib/dry_validation_parser/version.rb +1 -1
- data/lib/dry_validation_parser.rb +0 -1
- metadata +1 -2
- data/lib/dry_validation_parser/railtie.rb +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5beb3f86e652fe9246f46a535b8ca0f69fe22cd9b928c7a06e8d1b963e4332f6
|
4
|
+
data.tar.gz: 93218ef8f7b73180d4e5d808a13e8ec13ddad048764d0deaf1e024518d5846c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89cae77c9dd01b29e8595100923d212596ecf464077bda8ddb448ea749bac9b39d1fc1ed3ecc08483e74e0b44c6fc1df2fa65c848435ad20a22b7149929fe93a
|
7
|
+
data.tar.gz: 370897d822e50dd27a3eb5c96c296da8fbf7ab24d02f9016a834a8b8e85dde1f5faef16ab4e1486aaf7d223b7e70f72942213506fd037b97478313a0d63b24ea
|
data/README.md
CHANGED
@@ -83,9 +83,6 @@ for each field inside the nested hash.
|
|
83
83
|
If the field is an array of primitive type, the type field will equal to the primitive type, and a
|
84
84
|
array flag will be set on the field.
|
85
85
|
|
86
|
-
## Custom Configuration For Your Project
|
87
|
-
You can override default configurations by changing the values in the `config/initializers/dry_validation_parser.rb` file generated from the rake command in the Installation section.
|
88
|
-
|
89
86
|
## Development
|
90
87
|
|
91
88
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dry_validation_parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jane-Terziev
|
@@ -55,7 +55,6 @@ files:
|
|
55
55
|
- README.md
|
56
56
|
- Rakefile
|
57
57
|
- lib/dry_validation_parser.rb
|
58
|
-
- lib/dry_validation_parser/railtie.rb
|
59
58
|
- lib/dry_validation_parser/types.rb
|
60
59
|
- lib/dry_validation_parser/validation_schema_parser.rb
|
61
60
|
- lib/dry_validation_parser/version.rb
|
@@ -1,14 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "dry_validation_parser"
|
4
|
-
require "rails"
|
5
|
-
|
6
|
-
module DryValidationParser
|
7
|
-
class Railtie < Rails::Railtie
|
8
|
-
railtie_name :dry_validation_parser
|
9
|
-
|
10
|
-
rake_tasks do
|
11
|
-
load "dry_validation_parser/tasks/configuration_generator.rake"
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|