palladius 0.0.1
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/CHANGELOG +1 -0
- data/Makefile +9 -0
- data/Manifest +10 -0
- data/README.md +11 -0
- data/Rakefile +4 -0
- data/init.rb +3 -0
- data/packages/README +6 -0
- data/packages/gcutil-1.7.1.tar.gz +0 -0
- data/packages/gsutil.tar.gz +0 -0
- data/palladius.gemspec +31 -0
- data/tasks/rubygem.rake +26 -0
- data.tar.gz.sig +0 -0
- metadata +104 -0
- metadata.gz.sig +0 -0
data/CHANGELOG
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
v0.0.1. Packages added
|
data/Makefile
ADDED
data/Manifest
ADDED
data/README.md
ADDED
data/Rakefile
ADDED
data/init.rb
ADDED
data/packages/README
ADDED
|
Binary file
|
|
Binary file
|
data/palladius.gemspec
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |s|
|
|
4
|
+
s.name = "palladius"
|
|
5
|
+
s.version = "0.0.1"
|
|
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 with various utilities. \n \n More to come\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", "palladius.gemspec"]
|
|
15
|
+
s.homepage = "http://github.com/palladius/palladius"
|
|
16
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Palladius", "--main", "README.md"]
|
|
17
|
+
s.require_paths = ["lib"]
|
|
18
|
+
s.rubyforge_project = "palladius"
|
|
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/tasks/rubygem.rake
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
|
|
2
|
+
#################
|
|
3
|
+
# Deploy the gem 'gcloud'
|
|
4
|
+
|
|
5
|
+
Echoe.new('palladius') do |p|
|
|
6
|
+
p.summary = "Google Cloud gem. See http://github.com/palladius/gcloud"
|
|
7
|
+
p.description = "My Google Cloud gem with various utilities.
|
|
8
|
+
|
|
9
|
+
More to come
|
|
10
|
+
"
|
|
11
|
+
p.url = "http://github.com/palladius/palladius"
|
|
12
|
+
p.author = "Riccardo Carlesso"
|
|
13
|
+
p.email = "palladiusbonton AT gmail DOT com"
|
|
14
|
+
# So I can't accidentally ship with without certificate! Yay!
|
|
15
|
+
# See: http://rubydoc.info/gems/echoe/4.6.3/frames
|
|
16
|
+
p.require_signed = true
|
|
17
|
+
p.ignore_pattern = [
|
|
18
|
+
"tmp/*",
|
|
19
|
+
"tmp/*", #"tmp/*/*", "tmp/*/*/*",
|
|
20
|
+
"private/*",
|
|
21
|
+
".noheroku",
|
|
22
|
+
'.travis.yml',
|
|
23
|
+
]
|
|
24
|
+
#p.development_dependencies = [ 'ric' ]
|
|
25
|
+
#p.runtime_dependencies = [ 'ric', 'sakuric', 'facter' ]
|
|
26
|
+
end
|
data.tar.gz.sig
ADDED
|
Binary file
|
metadata
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: palladius
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 29
|
|
5
|
+
prerelease:
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.0.1
|
|
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 with various utilities. \n \n More to come\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
|
+
- palladius.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
|
+
- Palladius
|
|
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: palladius
|
|
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
|