-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathakami.gemspec
More file actions
29 lines (23 loc) · 875 Bytes
/
akami.gemspec
File metadata and controls
29 lines (23 loc) · 875 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
28
29
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "akami/version"
Gem::Specification.new do |s|
s.name = "akami"
s.version = Akami::VERSION
s.authors = ["Daniel Harrington"]
s.email = ["me@rubiii.com"]
s.homepage = "https://github.com/savonrb/#{s.name}"
s.summary = "Web Service Security"
s.description = "Building Web Service Security"
s.required_ruby_version = '>= 3.0.0'
s.license = "MIT"
s.add_dependency "gyoku", ">= 0.4.0"
s.add_dependency "nokogiri"
s.add_dependency "base64"
s.add_development_dependency "rake", "~> 13.0"
s.add_development_dependency "rspec", "~> 3.12"
s.add_development_dependency "timecop", "~> 0.5"
s.metadata = { "rubygems_mfa_required" => "true" }
s.files = Dir["lib/**/*"] + %w[CHANGELOG.md LICENSE README.md]
s.require_paths = ["lib"]
end