-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsequel_password.gemspec
More file actions
25 lines (22 loc) · 1.14 KB
/
sequel_password.gemspec
File metadata and controls
25 lines (22 loc) · 1.14 KB
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
Gem::Specification.new do |gem|
gem.authors = ['Timothée Peignier']
gem.email = ['timothee.peignier@tryphon.org']
gem.description = 'Sequel plugins to handle password hashing'
gem.summary = 'Add passwords hashing to sequel models.'
gem.homepage = 'http://rubygems.org/gems/sequel_password'
gem.license = 'MIT'
gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'sequel_password'
gem.require_paths = ['lib']
gem.version = '0.2.2'
gem.add_runtime_dependency 'bcrypt', '~> 3.1', '>= 3.1.11'
gem.add_runtime_dependency 'pbkdf2-ruby', '~> 0.2.1'
gem.add_runtime_dependency 'sequel', '>= 4.39.0'
gem.add_development_dependency 'rspec', '~> 3.5', '>= 3.5.0'
gem.add_development_dependency 'rubocop', '~> 0.52', '>= 0.52.0'
gem.add_development_dependency 'rubocop-rspec', '~> 1.22', '>= 1.22.0'
gem.add_development_dependency 'simplecov', '~> 0.15.0'
gem.add_development_dependency 'sqlite3', '~> 1.3', '>= 1.3.10'
end