forked from IshikawaUta/eks-cent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheks-cent.gemspec
More file actions
29 lines (23 loc) · 1.28 KB
/
eks-cent.gemspec
File metadata and controls
29 lines (23 loc) · 1.28 KB
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
# eks-cent.gemspec
require_relative 'lib/eks_cent/version'
Gem::Specification.new do |spec|
spec.name = "eks-cent"
spec.version = EksCent::VERSION
spec.authors = ["IshikawaUta"]
spec.email = ["komikers09@gmail.com"]
spec.summary = "Framework web Ruby ringan, aman, dan siap produksi berbasis Eks Interface."
spec.description = "Eks-Cent adalah framework web minimalis yang menyediakan sistem routing canggih, manajemen session HMAC, dan proteksi keamanan bawaan menggunakan Eksa-Server sebagai engine utama."
spec.homepage = "https://github.com/IshikawaUta/eks-cent"
spec.license = "MIT"
spec.files = Dir['lib/**/*'] + Dir['bin/*'] + Dir['images/*'] + ['README.md', 'LICENSE', 'config.eks', 'CHANGELOG.md']
spec.bindir = "bin"
spec.executables = ["ekscentup"]
spec.require_paths = ["lib"]
# Runtime dependencies
spec.add_dependency "eksa-server", "~> 1.1"
spec.add_dependency "base64", "~> 0.2"
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["source_code_uri"] = "https://github.com/IshikawaUta/eks-cent"
spec.metadata["changelog_uri"] = "https://github.com/IshikawaUta/eks-cent/blob/main/CHANGELOG.md"
end