Skip to content

Commit db6b6ba

Browse files
authoredAug 27, 2022
Replace dry validation with reform for validations (#27)
* Create contract structure * Update custom generators * Add tests of register contract * Add diagram to readme for understanding application layers * Fix typo
1 parent f84f4ae commit db6b6ba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+681
-620
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,5 @@
3030

3131
# Ignore ds_store files.
3232
.DS_Store
33+
34+
.byebug_history

‎Gemfile

+7-7
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ group :development, :test do
5959

6060
# Code style checking for Minitest files [https://github.com/rubocop/rubocop-minitest]
6161
gem 'rubocop-minitest', require: false
62+
63+
# Pry is a runtime developer console and IRB alternative with powerful introspection capabilities [https://github.com/pry/pry]
64+
gem 'pry', '~> 0.14.1'
65+
66+
# Byebug is a Ruby debugger [https://github.com/deivid-rodriguez/byebug]
67+
gem 'byebug', '~> 11.1', '>= 11.1.3'
6268
end
6369

6470
group :development do
@@ -96,7 +102,7 @@ gem 'kaminari', '~> 1.2', '>= 1.2.2'
96102
gem 'dry-monads', '~> 1.4'
97103

98104
# A simple validation library [https://github.com/dry-rb/dry-validation]
99-
gem 'dry-validation', '~> 1.6'
105+
gem 'dry-validation', '~> 1.8', '>= 1.8.1'
100106

101107
# Typed structs and value objects [https://github.com/dry-rb/dry-struct]
102108
gem 'dry-struct', '~> 1.4'
@@ -107,12 +113,6 @@ gem 'dry-types', '~> 1.5', '>= 1.5.1'
107113
# DSL for declaring params and options of the initializer [https://github.com/dry-rb/dry-initializer]
108114
gem 'dry-initializer', '~> 3.1', '>= 3.1.1'
109115

110-
# Form object decoupled from models with validation, population and presentation [https://github.com/trailblazer/reform]
111-
gem 'reform', '~> 2.6'
112-
113-
# Automatically load and include all common Rails form features. [https://github.com/trailblazer/reform-rails]
114-
gem 'reform-rails', '~> 0.2.2'
115-
116116
# Flexible authentication solution for Rails with Warden [https://github.com/heartcombo/devise]
117117
gem 'devise', '~> 4.8', '>= 4.8.1'
118118

0 commit comments

Comments
 (0)
Please sign in to comment.