palladius 0.0.1 → 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/Makefile CHANGED
@@ -1,9 +1,11 @@
1
1
 
2
2
  help:
3
3
  @echo 'test: Runs tests'
4
+ @echo 'deploy: Creates manifest, gemspecs, .. and deploys to rubygem'
4
5
 
5
6
  test:
6
7
  rake test
7
8
 
8
- gemdeploy:
9
- rake manifest && rake build_gemspec && rake release && echo OK Correctly deployed
9
+ # deploys gem
10
+ deploy:
11
+ rake manifest && rake build_gemspec && rake release && rake publish_docs && verde Correctly deployed
data/Manifest CHANGED
@@ -1,10 +1,8 @@
1
- CHANGELOG
2
1
  Makefile
3
- Manifest
4
2
  README.md
5
3
  Rakefile
4
+ VERSION
6
5
  init.rb
7
- packages/README
8
- packages/gcutil-1.7.1.tar.gz
9
- packages/gsutil.tar.gz
10
- tasks/rubygem.rake
6
+ lib/palladius.rb
7
+ tasks/gemmization.rake
8
+ Manifest
data/README.md CHANGED
@@ -1,11 +1,4 @@
1
1
  palladius
2
2
  =========
3
3
 
4
- My personal Palladius gem
5
-
6
- Usage
7
- =====
8
-
9
- sudo gem install gcloud
10
- gcutil version
11
- gsutil version
4
+ My personal Palladius gem
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.2
data/init.rb CHANGED
@@ -1,3 +1,5 @@
1
1
 
2
- require 'gcloud'
2
+ # So this will also work as a plugin! See
3
+ # http://asciicasts.com/episodes/135-making-a-gem
4
+ require 'sakuric'
3
5
 
data/lib/palladius.rb ADDED
@@ -0,0 +1,3 @@
1
+
2
+ viola 'This is palladius Gem'
3
+
data/palladius.gemspec CHANGED
@@ -2,30 +2,39 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "palladius"
5
- s.version = "0.0.1"
5
+ s.version = "0.0.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Riccardo Carlesso"]
9
9
  s.cert_chain = ["/Users/riccardo/git/gic/private/rusko@palladius.it/gem-public_cert.pem"]
10
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"]
11
+ s.description = "My PALLADIUS gem with various utilities. \n \n More to come\n "
12
+ s.email = "rusko AT palladius DOT it"
13
+ s.extra_rdoc_files = ["README.md", "lib/palladius.rb", "tasks/gemmization.rake"]
14
+ s.files = ["Makefile", "README.md", "Rakefile", "VERSION", "init.rb", "lib/palladius.rb", "tasks/gemmization.rake", "Manifest", "palladius.gemspec"]
15
15
  s.homepage = "http://github.com/palladius/palladius"
16
16
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Palladius", "--main", "README.md"]
17
17
  s.require_paths = ["lib"]
18
18
  s.rubyforge_project = "palladius"
19
19
  s.rubygems_version = "1.8.18"
20
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"
21
+ s.summary = "My PALLADIUS gem. See http://github.com/palladius/palladius"
22
22
 
23
23
  if s.respond_to? :specification_version then
24
24
  s.specification_version = 3
25
25
 
26
26
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
27
+ s.add_runtime_dependency(%q<ric>, [">= 0"])
28
+ s.add_runtime_dependency(%q<sakuric>, [">= 0"])
29
+ s.add_runtime_dependency(%q<facter>, [">= 0"])
27
30
  else
31
+ s.add_dependency(%q<ric>, [">= 0"])
32
+ s.add_dependency(%q<sakuric>, [">= 0"])
33
+ s.add_dependency(%q<facter>, [">= 0"])
28
34
  end
29
35
  else
36
+ s.add_dependency(%q<ric>, [">= 0"])
37
+ s.add_dependency(%q<sakuric>, [">= 0"])
38
+ s.add_dependency(%q<facter>, [">= 0"])
30
39
  end
31
40
  end
@@ -1,16 +1,18 @@
1
1
 
2
2
  #################
3
- # Deploy the gem 'gcloud'
3
+ # Deploy the gem 'palladius'
4
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.
5
+ version = File.read( 'VERSION' )
6
+
7
+ Echoe.new('palladius', version ) do |p|
8
+ p.summary = "My PALLADIUS gem. See http://github.com/palladius/palladius"
9
+ p.description = "My PALLADIUS gem with various utilities.
8
10
 
9
11
  More to come
10
12
  "
11
13
  p.url = "http://github.com/palladius/palladius"
12
14
  p.author = "Riccardo Carlesso"
13
- p.email = "palladiusbonton AT gmail DOT com"
15
+ p.email = "rusko AT palladius DOT it"
14
16
  # So I can't accidentally ship with without certificate! Yay!
15
17
  # See: http://rubydoc.info/gems/echoe/4.6.3/frames
16
18
  p.require_signed = true
@@ -21,6 +23,6 @@ Echoe.new('palladius') do |p|
21
23
  ".noheroku",
22
24
  '.travis.yml',
23
25
  ]
24
- #p.development_dependencies = [ 'ric' ]
25
- #p.runtime_dependencies = [ 'ric', 'sakuric', 'facter' ]
26
+ #p.development_dependencies = [ 'ric','echoe' ]
27
+ p.runtime_dependencies = [ 'ric', 'sakuric', 'facter' ]
26
28
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: palladius
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Riccardo Carlesso
@@ -37,29 +37,68 @@ cert_chain:
37
37
  -----END CERTIFICATE-----
38
38
 
39
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
40
+ dependencies:
41
+ - !ruby/object:Gem::Dependency
42
+ name: ric
43
+ prerelease: false
44
+ requirement: &id001 !ruby/object:Gem::Requirement
45
+ none: false
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ hash: 3
50
+ segments:
51
+ - 0
52
+ version: "0"
53
+ type: :runtime
54
+ version_requirements: *id001
55
+ - !ruby/object:Gem::Dependency
56
+ name: sakuric
57
+ prerelease: false
58
+ requirement: &id002 !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ hash: 3
64
+ segments:
65
+ - 0
66
+ version: "0"
67
+ type: :runtime
68
+ version_requirements: *id002
69
+ - !ruby/object:Gem::Dependency
70
+ name: facter
71
+ prerelease: false
72
+ requirement: &id003 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ hash: 3
78
+ segments:
79
+ - 0
80
+ version: "0"
81
+ type: :runtime
82
+ version_requirements: *id003
83
+ description: "My PALLADIUS gem with various utilities. \n \n More to come\n "
84
+ email: rusko AT palladius DOT it
44
85
  executables: []
45
86
 
46
87
  extensions: []
47
88
 
48
89
  extra_rdoc_files:
49
- - CHANGELOG
50
90
  - README.md
51
- - tasks/rubygem.rake
91
+ - lib/palladius.rb
92
+ - tasks/gemmization.rake
52
93
  files:
53
- - CHANGELOG
54
94
  - Makefile
55
- - Manifest
56
95
  - README.md
57
96
  - Rakefile
97
+ - VERSION
58
98
  - init.rb
59
- - packages/README
60
- - packages/gcutil-1.7.1.tar.gz
61
- - packages/gsutil.tar.gz
62
- - tasks/rubygem.rake
99
+ - lib/palladius.rb
100
+ - tasks/gemmization.rake
101
+ - Manifest
63
102
  - palladius.gemspec
64
103
  homepage: http://github.com/palladius/palladius
65
104
  licenses: []
@@ -99,6 +138,6 @@ rubyforge_project: palladius
99
138
  rubygems_version: 1.8.18
100
139
  signing_key:
101
140
  specification_version: 3
102
- summary: Google Cloud gem. See http://github.com/palladius/gcloud
141
+ summary: My PALLADIUS gem. See http://github.com/palladius/palladius
103
142
  test_files: []
104
143
 
metadata.gz.sig CHANGED
Binary file
data/CHANGELOG DELETED
@@ -1 +0,0 @@
1
- v0.0.1. Packages added
data/packages/README DELETED
@@ -1,6 +0,0 @@
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