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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ae5d37465ad9e23b7ff15191e76c32780ab320e3e8a0496ebeb5b51711c5ca6
4
- data.tar.gz: 233e4b2a09271322dc5cbafc61efdec8f94ef976e5acb0f617f754cd2271435b
3
+ metadata.gz: 5beb3f86e652fe9246f46a535b8ca0f69fe22cd9b928c7a06e8d1b963e4332f6
4
+ data.tar.gz: 93218ef8f7b73180d4e5d808a13e8ec13ddad048764d0deaf1e024518d5846c0
5
5
  SHA512:
6
- metadata.gz: cd74a3713de2c0c7e55d46be3d36ae7d36cf95de79cbe8fed659b2c441ecf6944d6efd2778db3fa4811aabb400cd12fe3d696456f5f203c011bd1baa9e18a8b6
7
- data.tar.gz: ec02786aefd240bbe2a455728e0ae018ce2faeda78409fe213987bd39cbda02e2653e2c77d4c44f3ea471b367ba772a67518ba2d323582d99285ca58e9796cdd
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DryValidationParser
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.3"
5
5
  end
@@ -2,7 +2,6 @@
2
2
 
3
3
  require_relative "dry_validation_parser/version"
4
4
  require_relative "dry_validation_parser/validation_schema_parser"
5
- require_relative "dry_validation_parser/railtie" if defined?(Rails)
6
5
 
7
6
  module DryValidationParser
8
7
  class Error < StandardError; end
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.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