forked from jejacks0n/apitome
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapitome.gemspec
24 lines (20 loc) · 854 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/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.test_files = Dir["{spec}/**/*"]
s.add_dependency "railties"
s.add_development_dependency "rspec_api_documentation"
s.add_dependency "kramdown"
end