-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby_fake_api.gemspec
More file actions
18 lines (16 loc) · 1.08 KB
/
ruby_fake_api.gemspec
File metadata and controls
18 lines (16 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true
require_relative "lib/ruby_fake_api/version"
Gem::Specification.new do |spec|
spec.name = "ruby_fake_api"
spec.version = RubyFakeApi::VERSION
spec.summary = "RubyFakeApi is a Ruby engine that provides a simple, in-memory (file-based) fake API server, similar to json-server. (core)"
spec.description = "RubyFakeApi is a Ruby engine that provides a simple, in-memory (file-based) fake API server, similar to json-server. It runs alongside your Ruby application, allowing you to easily mock API endpoints for frontend development, testing, or quick prototyping without setting up a full database. (framework-agnostic core)"
spec.authors = ['Fernando Kosh']
spec.email = ['fernando.kosh@gmail.com']
spec.files = Dir["lib/**/*", "README.md", "LICENSE.txt"]
spec.require_paths = ["lib"]
spec.homepage = "https://github.com/koshtech/ruby_fake_api"
spec.license = "GNU Affero General Public License v3.0"
spec.required_ruby_version = ">= 2.7"
spec.add_development_dependency "minitest", "~> 5.0"
end