This repository has been archived by the owner on Jan 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
cf.gemspec
51 lines (44 loc) · 1.75 KB
/
cf.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
44
45
46
47
48
49
50
51
# -*- encoding: utf-8 -*-
#############
# WARNING: Separate from the Gemfile. Please update both files
#############
$:.push File.expand_path("../lib", __FILE__)
require "cf/version"
Gem::Specification.new do |s|
s.name = "cf"
s.version = CF::VERSION.dup
s.authors = ["Cloud Foundry Team", "Alex Suraci"]
s.email = %w([email protected])
s.homepage = "http://github.com/cloudfoundry/cf"
s.summary = %q{
Friendly command-line interface for Cloud Foundry.
}
s.executables = %w{cf}
s.rubyforge_project = "cf"
s.files = %w(LICENSE Rakefile) + Dir["lib/**/*"]
s.license = "Apache 2.0"
s.test_files = Dir["spec/**/*"]
s.require_paths = %w(lib)
s.add_runtime_dependency "addressable"
s.add_runtime_dependency "caldecott-client", "~> 0.0.2"
s.add_runtime_dependency "cfoundry", "~> 4.7.2.rc1"
s.add_runtime_dependency "interact", ">= 0.5"
s.add_runtime_dependency "json_pure"
s.add_runtime_dependency "mothership", ">= 0.5.1"
s.add_runtime_dependency "multi_json", "~> 1.3"
s.add_runtime_dependency "rest-client", "~> 1.6"
s.add_runtime_dependency "uuidtools", "~> 2.1"
s.add_development_dependency "anchorman"
s.add_development_dependency "blue-shell", ">= 0.3.0"
s.add_development_dependency "factory_girl"
s.add_development_dependency "fakefs", "~> 0.4.2"
s.add_development_dependency "ffaker", "= 1.15"
s.add_development_dependency "gem-release"
s.add_development_dependency "ocra"
s.add_development_dependency "license_finder"
s.add_development_dependency "rake", "~> 0.9"
s.add_development_dependency "rspec", "~> 2.14"
s.add_development_dependency "rspec-instafail", "~> 0.2.4"
s.add_development_dependency "sinatra"
s.add_development_dependency "webmock"
end