-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunc_e.gemspec
26 lines (19 loc) · 1.27 KB
/
func_e.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
# frozen_string_literal: true
# rubocop:disable all
Gem::Specification.new do |spec|
spec.name = 'func_e'
spec.version = '0.0.7'
spec.authors = ['Sebastian Scholl']
spec.email = ['[email protected]']
spec.summary = 'FuncE provides an interface between Node.js functions and Ruby applications, enabling easy integration without the need for deploying functions with endpoints.'
spec.description = "FuncE is a lightweight Ruby gem that allows developers to call JavaScript functions from within Ruby applications. By providing a clean interface between Node.js functions and Ruby, FuncE offers a Function-as-a-Service (FaaS)-like experience without the overhead of managing and deploying endpoints. It supports asynchronous functions and the use of required packages, making it a versatile tool for modern web applications."
spec.homepage = 'https://github.com/sebscholl/FuncE'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.5'
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.files = Dir['lib/**/*'] + Dir['README.md']
spec.add_runtime_dependency 'terrapin', '>= 0.6'
spec.metadata['rubygems_mfa_required'] = 'true'
end
# rubocop:enable all