-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcan.gemspec
27 lines (22 loc) · 939 Bytes
/
can.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "can"
Gem::Specification.new do |spec|
spec.name = "can"
spec.version = Can::VERSION
spec.summary = "Can stores encrypted goods using symmetric cryptography."
# spec.description = File.read("readme.md")
spec.description = "Can stores encrypted goods using symmetric cryptography (AES-256-CBC)"
spec.homepage = "https://github.com/ptdorf/can"
spec.authors = ["ptdorf"]
spec.email = ["ptdorf@gmail.com"]
spec.license = "MIT"
spec.files = `git ls-files`.split $/
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename f }
spec.require_paths = ["lib"]
spec.add_dependency "thor"
spec.add_dependency "tablelize"
spec.add_dependency "base62-rb"
spec.add_development_dependency "rake"
# spec.required_ruby_version = "~> 2.4"
end