vmc 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. data/LICENSE +3 -0
  2. data/README +3 -0
  3. data/Rakefile +41 -0
  4. data/lib/vmc.rb +0 -0
  5. metadata +71 -0
data/LICENSE ADDED
@@ -0,0 +1,3 @@
1
+ Copyright (c) 2010 VMWare Inc
2
+
3
+ All Rights Reserved
data/README ADDED
@@ -0,0 +1,3 @@
1
+ == vmc
2
+
3
+ A gem that provides command line access to the VMWare PaaS Cloud
data/Rakefile ADDED
@@ -0,0 +1,41 @@
1
+ require 'rubygems' unless ENV['NO_RUBYGEMS']
2
+ require 'rake/gempackagetask'
3
+ require 'rubygems/specification'
4
+ require 'date'
5
+ require 'spec/rake/spectask'
6
+
7
+ spec = Gem::Specification.new do |s|
8
+ s.name = "vmc"
9
+ s.version = "0.0.4"
10
+ s.author = "Ezra Zygmuntowicz"
11
+ s.email = "ez@vmware.com"
12
+ s.homepage = "http://vmware.com"
13
+ s.description = s.summary = "A gem that provides command line access to the vmware cloud application platform"
14
+
15
+ s.platform = Gem::Platform::RUBY
16
+ s.has_rdoc = true
17
+ s.extra_rdoc_files = ["README", "LICENSE"]
18
+ # Uncomment this to add a dependency
19
+ # s.add_dependency "foo"
20
+
21
+ s.require_path = 'lib'
22
+ s.files = %w(LICENSE README Rakefile) + Dir.glob("{lib,spec,vendor}/**/*")
23
+ end
24
+
25
+ task :default => :package
26
+
27
+ Rake::GemPackageTask.new(spec) do |pkg|
28
+ pkg.gem_spec = spec
29
+ end
30
+
31
+ desc "install the gem locally"
32
+ task :install => [:package] do
33
+ sh %{sudo gem install pkg/#{GEM}-#{GEM_VERSION}}
34
+ end
35
+
36
+ desc "create a gemspec file"
37
+ task :make_spec do
38
+ File.open("#{GEM}.gemspec", "w") do |file|
39
+ file.puts spec.to_ruby
40
+ end
41
+ end
data/lib/vmc.rb ADDED
File without changes
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vmc
3
+ version: !ruby/object:Gem::Version
4
+ hash: 23
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 4
10
+ version: 0.0.4
11
+ platform: ruby
12
+ authors:
13
+ - Ezra Zygmuntowicz
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-11-03 00:00:00 -07:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: A gem that provides command line access to the vmware cloud application platform
23
+ email: ez@vmware.com
24
+ executables: []
25
+
26
+ extensions: []
27
+
28
+ extra_rdoc_files:
29
+ - README
30
+ - LICENSE
31
+ files:
32
+ - LICENSE
33
+ - README
34
+ - Rakefile
35
+ - lib/vmc.rb
36
+ has_rdoc: true
37
+ homepage: http://vmware.com
38
+ licenses: []
39
+
40
+ post_install_message:
41
+ rdoc_options: []
42
+
43
+ require_paths:
44
+ - lib
45
+ required_ruby_version: !ruby/object:Gem::Requirement
46
+ none: false
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ hash: 3
51
+ segments:
52
+ - 0
53
+ version: "0"
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ hash: 3
60
+ segments:
61
+ - 0
62
+ version: "0"
63
+ requirements: []
64
+
65
+ rubyforge_project:
66
+ rubygems_version: 1.3.7
67
+ signing_key:
68
+ specification_version: 3
69
+ summary: A gem that provides command line access to the vmware cloud application platform
70
+ test_files: []
71
+