Skip to content

Commit b201d9d

Browse files
committed
Fix gem homepage
1 parent f119dbc commit b201d9d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
log/*.log
33
pkg/
44

5+
*.gem
6+
57
coverage/
68

79
spec/dummy/log/*.log

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ also accepts the `message` option.
387387
```ruby
388388
some_action.request do |params|
389389
params.required :key_1, type: :date, validate: { function: lambda { |value| value >= Date.today },
390-
message: 'The date can not be in the past.' }
390+
message: 'The date can not be in the past' }
391391
end
392392
```
393393

request_params_validation.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ Gem::Specification.new do |spec|
88
spec.version = RequestParamsValidation::VERSION
99
spec.authors = 'Felipe Fava'
1010
spec.email = 'felipefava5@gmail.com'
11-
spec.homepage = "https://github.com/felipefava/request_validation"
11+
spec.homepage = "https://github.com/felipefava/request_params_validation"
1212
spec.license = 'MIT'
1313

14-
spec.summary = 'Validates request params'
14+
spec.summary = 'Validates rails request params'
1515
spec.description = 'It validates request params outside your controller logic in order to ' \
1616
'get a clean and nice code, and also helping with the documentation of ' \
1717
'the operations.'

0 commit comments

Comments
 (0)