This repository has been archived by the owner on Feb 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathvagrant-vmware-appcatalyst.gemspec
43 lines (37 loc) · 1.75 KB
/
vagrant-vmware-appcatalyst.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
35
36
37
38
39
40
41
42
43
# encoding: utf-8
# Copyright (c) 2015 VMware, Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, without
# warranties or conditions of any kind, EITHER EXPRESS OR IMPLIED. See the
# License for the specific language governing permissions and limitations under
# the License.
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'vagrant-vmware-appcatalyst/version'
Gem::Specification.new do |s|
s.name = 'vagrant-vmware-appcatalyst'
s.version = VagrantPlugins::AppCatalyst::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Fabio Rapposelli']
s.email = ['fabio@vmware.com']
s.homepage = 'https://github.com/vmware/vagrant-vmware-appcatalyst'
s.license = 'Apache License 2.0'
s.summary = 'VMware AppCatalyst® provider'
s.description = 'Enables Vagrant to manage machines with VMware AppCatalyst®.'
s.add_runtime_dependency 'i18n', '~> 0.6'
s.add_runtime_dependency 'log4r', '~> 1.1'
s.add_runtime_dependency 'httpclient', '~> 2.6'
s.add_development_dependency 'rspec-core', '~> 2.14'
s.add_development_dependency 'rspec-expectations', '~> 2.14'
s.add_development_dependency 'rspec-mocks', '~> 2.14'
s.add_development_dependency 'bundler', '~> 1.3'
s.add_development_dependency 'rake'
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_path = 'lib'
end