-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasy_crypt.gemspec
31 lines (27 loc) · 1.3 KB
/
easy_crypt.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
31
# frozen_string_literal: true
require_relative 'lib/easy_crypt/version'
Gem::Specification.new do |spec|
spec.name = 'easy_crypt'
spec.version = EasyCrypt::VERSION
spec.platform = Gem::Platform::RUBY
spec.license = 'MIT'
spec.summary = 'Secure and flexible encryption for Ruby on Rails applications.'
spec.email = 'randoum@gmail.com'
spec.homepage = 'https://github.com/randoum/easy_crypt'
spec.description = %(
Encryption and decryption for Rails applications, based on ActiveSupport::MessageEncryptor, using
multiple secrets providers, and defining a simple, purpose-based encryption/decryption API.)
spec.authors = ['Benjamin Bouchet']
spec.metadata = {
'homepage_uri' => 'https://github.com/randoum/easy_crypt',
'documentation_uri' => 'https://rubydoc.info/github/randoum/easy_crypt',
'changelog_uri' => 'https://github.com/randoum/easy_crypt/blob/main/CHANGELOG.md',
'source_code_uri' => 'https://github.com/randoum/easy_crypt',
'bug_tracker_uri' => 'https://github.com/randoum/easy_crypt/issues',
'rubygems_mfa_required' => 'true'
}
spec.files = Dir['{lib}/**/*', 'CODE_OF_CONDUCT.md', 'CHANGELOG.md', 'LICENSE.txt', 'README.md']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.7.0'
spec.required_rubygems_version = '>= 1.8.11'
end