-
Notifications
You must be signed in to change notification settings - Fork 0
/
misty-builder.gemspec
29 lines (24 loc) · 1.11 KB
/
misty-builder.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
28
29
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'misty_builder/version'
Gem::Specification.new do |spec|
spec.name = "misty-builder"
spec.version = MistyBuilder::VERSION
spec.authors = ["Gilles Dubreuil"]
spec.email = ["[email protected]"]
spec.summary = %q{OpenStack APIs builder for misty.}
spec.description = %q{Automated API definitions from OpenStackś API Reference.}
spec.homepage = "https://github.com/gildub/misty-builder"
spec.license = "GPL-3.0"
all_files = `git ls-files -z`.split("\x0")
spec.files = all_files.grep(%r{^(exe|lib|test)/|^.rubocop.yml$})
spec.executables = all_files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.bindir = "exe"
spec.require_paths = ['lib']
spec.rdoc_options = ['--charset=UTF-8']
spec.extra_rdoc_files = %w[README.md LICENSE.md]
spec.add_development_dependency 'bundler', '~> 1.10'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'nokogiri', '~> 1.6'
spec.add_development_dependency 'pry-byebug', '~> 3.4'
end