forked from attr-encrypted/encryptor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathencryptor.gemspec
More file actions
27 lines (19 loc) · 762 Bytes
/
encryptor.gemspec
File metadata and controls
27 lines (19 loc) · 762 Bytes
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'encryptor/version'
require 'date'
Gem::Specification.new do |s|
s.name = 'encryptor2'
s.version = Encryptor::Version
s.date = Date.today
s.platform = Gem::Platform::RUBY
s.summary = 'A simple wrapper for the standard ruby OpenSSL library'
s.description = 'A simple wrapper for the standard ruby OpenSSL library to encrypt and decrypt strings'
s.author = 'Daniel Palacio'
s.email = 'danpal@gmail.com'
s.homepage = 'http://github.com/danpal/encryptor'
s.require_paths = ['lib']
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
end