forked from jejacks0n/apitome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapitome.gemspec
More file actions
23 lines (19 loc) · 817 Bytes
/
apitome.gemspec
File metadata and controls
23 lines (19 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 = ["info@modeset.com"]
s.homepage = "https://github.com/modeset/apitome"
s.summary = "Apitome: /iˈpitəmē/ An API documentation reader RSpec API Documentation"
s.description = "API documentation renderer for Rails using RSpec API Documentation JSON output"
s.license = "MIT"
s.files = Dir["{app,config,lib,vendor}/**/*"] + ["MIT.LICENSE", "README.md"]
s.add_dependency "railties"
s.add_development_dependency "rspec_api_documentation"
s.add_dependency "kramdown"
end