-
Notifications
You must be signed in to change notification settings - Fork 4
/
hashie-forbidden_attributes.gemspec
30 lines (24 loc) · 1.16 KB
/
hashie-forbidden_attributes.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'hashie-forbidden_attributes/version'
Gem::Specification.new do |s|
s.name = 'hashie-forbidden_attributes'
s.version = HashieForbiddenAttributes::VERSION
s.authors = ['Maxim-Filimonov', 'Daniel Doubrovkine']
s.email = ['[email protected]']
s.homepage = 'https://github.com/Maxim-Filimonov/hashie-forbidden_attributes'
s.summary = 'Automatic strong parameter detection with Hashie and Forbidden Attributes. Formerly known as hashie_rails'
s.description = 'Automatic strong parameter detection with Hashie and Forbidden Attributes. Formerly known as hashie_rails'
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.rdoc']
s.test_files = Dir['test/**/*']
s.add_dependency 'hashie', '>= 3.0'
if RUBY_PLATFORM != 'java'
s.add_development_dependency 'sqlite3'
else
s.add_development_dependency 'activerecord-jdbcsqlite3-adapter'
s.add_development_dependency 'jdbc-sqlite3'
end
s.add_development_dependency 'grape'
s.add_development_dependency 'minitest'
s.add_development_dependency 'rails', '~> 4.0'
end