gcloud 0.0.2

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.
data.tar.gz.sig ADDED
@@ -0,0 +1,3 @@
1
+ 8��[�>C�F����K��� V�`�����$!J��n}U�A��s�cI���-�����[��������+
2
+ =���T����rI�Ox@(�r]��JHab!��!if(U�=����!0U� 7�ّq�K�y�����_��E*�/�r��Э(�����'���Ƃ�x��X�#�59@bp
3
+ ��(1�Q��S����h���K�m�����.����1�~ �����-�ۜ�
data/CHANGELOG ADDED
@@ -0,0 +1,4 @@
1
+ v0.0.2. Deploying on gcloud and google-cloud
2
+
3
+ v0.0.1. Packages added
4
+
data/Makefile ADDED
@@ -0,0 +1,9 @@
1
+
2
+ help:
3
+ @echo 'test: Runs tests'
4
+
5
+ test:
6
+ rake test
7
+
8
+ gemdeploy:
9
+ rake manifest && rake build_gemspec && rake release && echo OK Correctly deployed
data/Manifest ADDED
@@ -0,0 +1,10 @@
1
+ CHANGELOG
2
+ Makefile
3
+ Manifest
4
+ README.md
5
+ Rakefile
6
+ init.rb
7
+ packages/README
8
+ packages/gcutil-1.7.1.tar.gz
9
+ packages/gsutil.tar.gz
10
+ tasks/rubygem.rake
data/README.md ADDED
@@ -0,0 +1,11 @@
1
+ palladius
2
+ =========
3
+
4
+ My personal Palladius gem
5
+
6
+ Usage
7
+ =====
8
+
9
+ sudo gem install gcloud
10
+ gcutil version
11
+ gsutil version
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ require 'rake'
2
+ require 'echoe'
3
+
4
+ Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
data/gcloud.gemspec ADDED
@@ -0,0 +1,31 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "gcloud"
5
+ s.version = "0.0.2"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Riccardo Carlesso"]
9
+ s.cert_chain = ["/Users/riccardo/git/gic/private/rusko@palladius.it/gem-public_cert.pem"]
10
+ s.date = "2013-02-17"
11
+ s.description = "My Google Cloud gem ('gcloud') with various utilities. \n \n It deploys gcutil, gsutil, and more.\n "
12
+ s.email = "palladiusbonton AT gmail DOT com"
13
+ s.extra_rdoc_files = ["CHANGELOG", "README.md", "tasks/rubygem.rake"]
14
+ s.files = ["CHANGELOG", "Makefile", "Manifest", "README.md", "Rakefile", "init.rb", "packages/README", "packages/gcutil-1.7.1.tar.gz", "packages/gsutil.tar.gz", "tasks/rubygem.rake", "gcloud.gemspec"]
15
+ s.homepage = "http://github.com/palladius/palladius"
16
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Gcloud", "--main", "README.md"]
17
+ s.require_paths = ["lib"]
18
+ s.rubyforge_project = "gcloud"
19
+ s.rubygems_version = "1.8.18"
20
+ s.signing_key = "/Users/riccardo/git/gic/private/rusko@palladius.it/gem-private_key.pem"
21
+ s.summary = "Google Cloud gem. See http://github.com/palladius/gcloud"
22
+
23
+ if s.respond_to? :specification_version then
24
+ s.specification_version = 3
25
+
26
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
27
+ else
28
+ end
29
+ else
30
+ end
31
+ end
data/init.rb ADDED
@@ -0,0 +1,3 @@
1
+
2
+ require 'gcloud'
3
+
data/packages/README ADDED
@@ -0,0 +1,6 @@
1
+ # how to keep this updated:
2
+
3
+ gsutil => http://commondatastorage.googleapis.com/pub/gsutil.tar.gz
4
+
5
+ gcutil => See gcutil-fetech: https://raw.github.com/palladius/sakura/master/bin/gcutil-fetch
6
+
Binary file
Binary file
@@ -0,0 +1,29 @@
1
+
2
+ #################
3
+ # Deploy the gem 'gcloud'
4
+ gemnames = %w{ gcloud googlecloud }
5
+
6
+ gemnames.each do |gemname|
7
+ Echoe.new(gemname) do |p|
8
+ p.summary = "Google Cloud gem. See http://github.com/palladius/gcloud"
9
+ p.description = "My Google Cloud gem ('#{gemname}') with various utilities.
10
+
11
+ It deploys gcutil, gsutil, and more.
12
+ "
13
+ p.url = "http://github.com/palladius/palladius"
14
+ p.author = "Riccardo Carlesso"
15
+ p.email = "palladiusbonton AT gmail DOT com"
16
+ # So I can't accidentally ship with without certificate! Yay!
17
+ # See: http://rubydoc.info/gems/echoe/4.6.3/frames
18
+ p.require_signed = true
19
+ p.ignore_pattern = [
20
+ "tmp/*",
21
+ "tmp/*", #"tmp/*/*", "tmp/*/*/*",
22
+ "private/*",
23
+ ".noheroku",
24
+ '.travis.yml',
25
+ ]
26
+ #p.development_dependencies = [ 'ric' ]
27
+ #p.runtime_dependencies = [ 'ric', 'sakuric', 'facter' ]
28
+ end
29
+ end
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gcloud
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 2
10
+ version: 0.0.2
11
+ platform: ruby
12
+ authors:
13
+ - Riccardo Carlesso
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain:
17
+ - |
18
+ -----BEGIN CERTIFICATE-----
19
+ MIIDMjCCAhqgAwIBAgIBADANBgkqhkiG9w0BAQUFADA/MQ4wDAYDVQQDDAVydXNr
20
+ bzEZMBcGCgmSJomT8ixkARkWCXBhbGxhZGl1czESMBAGCgmSJomT8ixkARkWAml0
21
+ MB4XDTEzMDIxNzA4NDk0NVoXDTE0MDIxNzA4NDk0NVowPzEOMAwGA1UEAwwFcnVz
22
+ a28xGTAXBgoJkiaJk/IsZAEZFglwYWxsYWRpdXMxEjAQBgoJkiaJk/IsZAEZFgJp
23
+ dDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALQctYEpAJsyIQlAeO72
24
+ LBvdCZsmiBta6CNMvF8VpJPQvO4YU9+Uykv88kN/T5YGUTTtBnaitV8aA0XgLKEB
25
+ fQNHw7SrEc3YSiIpPQb4/rFF2zrN4kEmMzdWvaD0sU32PpBjrPkx/lHdPHykZ6o4
26
+ kJ+7kzDaVLCcebOYI1OBsLOA3zRSyE9GlX3T/7FOqVWCCUN8J2JMuFmhEaVBWgaX
27
+ W6y/ohGIXK8izogJ4Gl+tiTCQXMV98MQt+JWnP9GpKp7Tv5i22o/8DRzYJ4hMB95
28
+ BizqvFCqJb514+E8s+jCzHN+Eu0XkW1mg8yYxWj72cqaKvtaycyTNsBYQ4XFtZaB
29
+ z6UCAwEAAaM5MDcwCwYDVR0PBAQDAgSwMAkGA1UdEwQCMAAwHQYDVR0OBBYEFKZ1
30
+ 3ELUQAvafDiRGBJ4UwtADNJzMA0GCSqGSIb3DQEBBQUAA4IBAQA3E0BrhxcnAvJk
31
+ D6u7ybOjCIO1Hm6jZpxzGRR7tlxqmLlrNA/PITtuxmUeVSmoAnyVG/H5BCUB6SNv
32
+ QnGzNbfK8FAx47atR8+sIy+xupBDSzo8PBzo9MIjY3/St6F/zdGcOaOn4ze06fpf
33
+ SJyvKs9vIzv3AM/3aGRzvEONA+7q0qUaRJCQjTjhFJWuv4Ym0T8mAZo9/WrjTgGH
34
+ uM9JrYR9nK8g/erMtB6FZQjb6gl0iVJnHCKM1foIn1/jtd4VCsEub/Qj+bx5G229
35
+ U/E0soGAj40ICOaHy1FJrfltsxXgTLwtt1s3bJIKOxYh3sALVrSGEKjHt5R9ZkxB
36
+ u5RGyxP9
37
+ -----END CERTIFICATE-----
38
+
39
+ date: 2013-02-17 00:00:00 Z
40
+ dependencies: []
41
+
42
+ description: "My Google Cloud gem ('gcloud') with various utilities. \n \n It deploys gcutil, gsutil, and more.\n "
43
+ email: palladiusbonton AT gmail DOT com
44
+ executables: []
45
+
46
+ extensions: []
47
+
48
+ extra_rdoc_files:
49
+ - CHANGELOG
50
+ - README.md
51
+ - tasks/rubygem.rake
52
+ files:
53
+ - CHANGELOG
54
+ - Makefile
55
+ - Manifest
56
+ - README.md
57
+ - Rakefile
58
+ - init.rb
59
+ - packages/README
60
+ - packages/gcutil-1.7.1.tar.gz
61
+ - packages/gsutil.tar.gz
62
+ - tasks/rubygem.rake
63
+ - gcloud.gemspec
64
+ homepage: http://github.com/palladius/palladius
65
+ licenses: []
66
+
67
+ post_install_message:
68
+ rdoc_options:
69
+ - --line-numbers
70
+ - --inline-source
71
+ - --title
72
+ - Gcloud
73
+ - --main
74
+ - README.md
75
+ require_paths:
76
+ - lib
77
+ required_ruby_version: !ruby/object:Gem::Requirement
78
+ none: false
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ hash: 3
83
+ segments:
84
+ - 0
85
+ version: "0"
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ none: false
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ hash: 11
92
+ segments:
93
+ - 1
94
+ - 2
95
+ version: "1.2"
96
+ requirements: []
97
+
98
+ rubyforge_project: gcloud
99
+ rubygems_version: 1.8.18
100
+ signing_key:
101
+ specification_version: 3
102
+ summary: Google Cloud gem. See http://github.com/palladius/gcloud
103
+ test_files: []
104
+
metadata.gz.sig ADDED
Binary file