-
Notifications
You must be signed in to change notification settings - Fork 0
/
paramoid.gemspec
23 lines (21 loc) · 974 Bytes
/
paramoid.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'paramoid/version'
Gem::Specification.new do |s|
s.name = 'paramoid'
s.version = Paramoid::VERSION
s.date = '2022-05-28'
s.summary = 'Getting paranoid about your Rails application params? Try paramoid!'
s.description = 'Paramoid is a gem that extends Rails Strong Parameters, allowing to declare complex params structures with a super cool DSL, supporting required params, default values, groups, arrays and more.'
s.authors = ['Mònade']
s.email = '[email protected]'
s.files = Dir['lib/**/*']
s.test_files = Dir['spec/**/*']
s.required_ruby_version = '>= 2.7.0'
s.homepage = 'https://rubygems.org/gems/paramoid'
s.license = 'MIT'
s.add_dependency 'actionpack', ['>= 5', '< 8']
s.add_dependency 'activesupport', ['>= 5', '< 8']
s.add_development_dependency 'rspec', '~> 3'
s.add_development_dependency 'rubocop'
end