-
Notifications
You must be signed in to change notification settings - Fork 4
/
rapidoc.gemspec
27 lines (24 loc) · 1.11 KB
/
rapidoc.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
25
26
27
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rapidoc/version'
Gem::Specification.new do |gem|
gem.license = "MIT"
gem.name = "rapidoc"
gem.version = Rapidoc::VERSION
gem.authors = ["Rafael Jurado, Harold Rangel, Luis Rodriguez"]
gem.description = %q{Generates REST API documentation.}
gem.summary = %q{Generates REST API documentation.}
gem.homepage = "https://github.com/drinor/rapidoc"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "rails", ">= 3.2"
gem.add_dependency "handlebars", ">= 0.4.0"
gem.add_development_dependency "rspec-rails"
gem.add_development_dependency "sqlite3", "~> 1.3.7"
gem.add_development_dependency "capybara"
gem.add_development_dependency "rack"
end