-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinline_encryption.gemspec
28 lines (23 loc) · 1.02 KB
/
inline_encryption.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
# frozen_string_literal: true
require 'English'
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'inline_encryption/version'
Gem::Specification.new do |spec|
spec.name = 'inline_encryption'
spec.version = InlineEncryption::VERSION
spec.authors = ['rubyisbeautiful']
spec.email = '[email protected]'
spec.description = ' A simple encryption tool based on common convention '
spec.summary = ' A drop-in simple encryption tool for stringish things '
spec.homepage = 'https://github.com/rubyisbeautiful/inline_encryption'
spec.license = 'MIT'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.1.5'
spec.executables = ['inline_encryption']
spec.add_runtime_dependency 'hashie'
spec.add_runtime_dependency 'i18n'
spec.add_runtime_dependency 'thor'
end