forked from DavidEGrayson/ruby_ecdsa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecdsa.gemspec
More file actions
22 lines (16 loc) · 711 Bytes
/
ecdsa.gemspec
File metadata and controls
22 lines (16 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This file was written by hand.
$LOAD_PATH << 'lib'
require 'ecdsa/version'
Gem::Specification.new do |s|
s.name = 'ecdsa'
s.version = ECDSA::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
# The summary should be the same as the description at https://github.com/DavidEGrayson/ruby_ecdsa
s.summary = 'This gem implements the Ellipctic Curve Digital Signature Algorithm (ECDSA) almost entirely in pure Ruby.'
s.homepage = 'https://github.com/DavidEGrayson/ruby_ecdsa'
s.authors = ['David Grayson']
s.email = 'davidegrayson@gmail.com'
s.license = 'MIT'
s.required_rubygems_version = Gem::Requirement.new('>= 2')
s.files = Dir['lib/**/*.rb', 'Gemfile', 'README.md', 'LICENSE.txt']
end