-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcf_script.gemspec
34 lines (22 loc) · 901 Bytes
/
cf_script.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
30
31
32
33
34
$:.unshift File.join(File.dirname(__FILE__), 'lib')
require 'cf_script/version'
Gem::Specification.new do |gem|
gem.name = 'cf_script'
gem.version = ::CfScript::VERSION
gem.summary = 'A DSL for scripting the Cloud Foundry CLI'
gem.description = ''
gem.homepage = 'http://github.com/ammar/cf_script'
if gem.respond_to?(:metadata)
gem.metadata = { 'issue_tracker' => 'https://github.com/ammar/cf_script/issues' }
end
gem.authors = ['Ammar Ali']
gem.email = ['[email protected]']
gem.license = 'MIT'
gem.require_paths = ['lib']
gem.files = `git ls-files`.split("\n")
gem.test_files = Dir.glob('test/**/*.rb')
gem.rdoc_options = ["--inline-source", "--charset=UTF-8"]
gem.platform = Gem::Platform::RUBY
gem.required_ruby_version = '>= 2.0.0'
gem.add_dependency('colorize', '>= 0.7.7')
end