-
Notifications
You must be signed in to change notification settings - Fork 126
/
apitome.gemspec
24 lines (20 loc) · 901 Bytes
/
apitome.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
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "apitome/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "apitome"
s.version = Apitome::VERSION
s.authors = ["jejacks0n"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/jejacks0n/apitome"
s.summary = "Apitome: /iˈpitəmē/ An API documentation reader RSpec API Documentation"
s.description = "Present clean and usable API documentation generated from RSpec API Documentation JSON output."
s.license = "MIT"
s.files = Dir["{app,config,lib,vendor}/**/*"] + ["MIT.LICENSE", "README.md"]
s.required_ruby_version = ">= 2.4"
s.add_dependency "railties"
s.add_dependency "kramdown" # TODO: is this required?
s.add_development_dependency "rspec_api_documentation"
end