-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathgrape-apiary.gemspec
More file actions
32 lines (28 loc) · 1.42 KB
/
grape-apiary.gemspec
File metadata and controls
32 lines (28 loc) · 1.42 KB
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
29
30
31
32
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'grape-apiary/version'
Gem::Specification.new do |spec|
spec.name = 'grape-apiary'
spec.version = GrapeApiary::VERSION
spec.authors = ['John Allen']
spec.email = ['john@threedogconsulting.com']
spec.summary = %q{Allows for generating an Apiary Blueprint for you Grape API}
spec.description = %q{Auto generates an Apiary (http://apiary.io) Blueprint from the docuementation that is created by your Grape API}
spec.homepage = 'https://github.com/connexio-labs/grape-apiary'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_runtime_dependency 'grape', '~> 0.6'
spec.add_development_dependency 'coveralls', '~> 0.7'
spec.add_development_dependency 'rspec', '~> 2.14'
spec.add_development_dependency 'bundler', '~> 1.5'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rubocop', '~> 0.18'
spec.add_development_dependency 'pry', '~> 0.9'
spec.add_development_dependency 'guard', '~> 2.4'
spec.add_development_dependency 'guard-rspec', '~> 4.2'
spec.add_development_dependency 'guard-bundler', '~> 2.0'
end