-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfakeit.gemspec
More file actions
40 lines (35 loc) · 1.46 KB
/
fakeit.gemspec
File metadata and controls
40 lines (35 loc) · 1.46 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
30
31
32
33
34
35
36
37
38
39
40
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "fakeit/version"
Gem::Specification.new do |spec|
spec.name = "fakeit"
spec.version = Fakeit::VERSION
spec.authors = ["Justin Feng"]
spec.email = ["realfengjia@foxmail.com"]
spec.summary = "Create mock server from Openapi specification"
spec.description = "Create mock server from Openapi specification"
spec.homepage = "https://github.com/JustinFeng/fakeit"
spec.license = "MIT"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.bindir = "bin"
spec.executables = "fakeit"
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.4"
spec.add_dependency "base64", "~> 0.2.0"
spec.add_dependency "faker", "3.5.1"
spec.add_dependency "logger", "1.7"
spec.add_dependency "openapi_parser", "2.2.6"
spec.add_dependency "ostruct", "~> 0.6"
spec.add_dependency "rack", "~> 3.1"
spec.add_dependency "rack-cors", "~> 2.0"
spec.add_dependency "rackup", "~> 2.2"
spec.add_dependency "rainbow", "~> 3.1"
spec.add_dependency "regexp-examples", "1.6.0"
spec.add_dependency "slop", "~> 4.10"
spec.add_dependency "webrick", "~> 1.9"
spec.metadata["rubygems_mfa_required"] = "true"
end