forked from cloudfoundry-attic/vcap-staging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcap_staging.gemspec
27 lines (21 loc) · 883 Bytes
/
vcap_staging.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
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib'))
require 'vcap/staging/version'
gemspec = Gem::Specification.new do |s|
s.name = 'vcap_staging'
s.version = VCAP::Staging::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'Plugins responsible for creating executable droplets'
s.description = "Staging plugins take a user's application and produce a bundle that can be executed on a DEA"
s.authors = ['CloudFoundry']
s.email = '[email protected]'
s.homepage = 'http://www.cloudfoundry.com'
s.add_dependency('nokogiri', '>= 1.4.4')
s.add_dependency('rake')
s.add_dependency('yajl-ruby', '>= 0.7.9')
s.add_dependency('rspec')
s.add_dependency('uuidtools', "~> 2.1.2")
s.executables = []
s.bindir = 'bin'
s.require_path = 'lib'
s.files = %w(Rakefile) + Dir.glob("lib/**/*")
end