forked from visualitypl/api-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapi_blueprint.gemspec
More file actions
28 lines (24 loc) · 1009 Bytes
/
api_blueprint.gemspec
File metadata and controls
28 lines (24 loc) · 1009 Bytes
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
28
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'api_blueprint/version'
Gem::Specification.new do |spec|
spec.name = 'api_blueprint'
spec.version = ApiBlueprint::VERSION
spec.authors = ['Karol Słuszniak']
spec.email = 'k.sluszniak@visuality.pl'
spec.homepage = 'http://github.com/visualitypl/api-blueprint'
spec.license = 'MIT'
spec.platform = Gem::Platform::RUBY
spec.summary = "Semi-automatic solution for creating Rails app's API documentation based on RSpec request specs."
spec.description = spec.summary
spec.files = Dir["lib/**/*"]
spec.extra_rdoc_files = ["README.md"]
spec.require_paths = ["lib"]
spec.add_runtime_dependency 'filewatcher'
spec.add_runtime_dependency 'nokogiri'
spec.add_runtime_dependency 'rails'
spec.add_runtime_dependency 'redcarpet'
spec.add_runtime_dependency 'rspec-rails'
spec.add_runtime_dependency 'sass'
spec.add_runtime_dependency 'uglifier'
end