hello_world 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest ADDED
@@ -0,0 +1,3 @@
1
+ Rakefile
2
+ lib/hello_world.rb
3
+ Manifest
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'echoe'
4
+
5
+ Echoe.new('hello_world', '0.0.1') do |p|
6
+ p.description = "A gem that illustrates how to build a gem"
7
+ p.url = "http://github.com/tombombadil/hello_world"
8
+ p.author = "Chris Young"
9
+ p.email = "beesucker @nospam@ gmail.com"
10
+ p.ignore_pattern = ["tmp/*", "script/*"]
11
+ p.development_dependencies = []
12
+ end
@@ -0,0 +1,32 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{hello_world}
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 = ["Chris Young"]
9
+ s.date = %q{2010-01-02}
10
+ s.description = %q{A gem that illustrates how to build a gem}
11
+ s.email = %q{beesucker @nospam@ gmail.com}
12
+ s.extra_rdoc_files = ["lib/hello_world.rb"]
13
+ s.files = ["Rakefile", "lib/hello_world.rb", "Manifest", "hello_world.gemspec"]
14
+ s.homepage = %q{http://github.com/tombombadil/hello_world}
15
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Hello_world"]
16
+ s.require_paths = ["lib"]
17
+ s.rubyforge_project = %q{hello_world}
18
+ s.rubygems_version = %q{1.3.5}
19
+ s.summary = %q{A gem that illustrates how to build a gem}
20
+ s.signing_key = '/Volumes/Secure/Certificates/gem-private_key.pem'
21
+ s.cert_chain = ['gem-public_cert.pem']
22
+
23
+ if s.respond_to? :specification_version then
24
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
25
+ s.specification_version = 3
26
+
27
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
28
+ else
29
+ end
30
+ else
31
+ end
32
+ end
@@ -0,0 +1,5 @@
1
+ module HelloWorld
2
+ def self.say_hello
3
+ puts 'hello world'
4
+ end
5
+ end
data.tar.gz.sig ADDED
Binary file
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hello_world
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Chris Young
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDNjCCAh6gAwIBAgIBADANBgkqhkiG9w0BAQUFADBBMRMwEQYDVQQDDApjaHJp
14
+ c3lvdW5nMRUwEwYKCZImiZPyLGQBGRYFYnV6YXoxEzARBgoJkiaJk/IsZAEZFgNj
15
+ b20wHhcNMTAwMTAxMDE0MTA2WhcNMTEwMTAxMDE0MTA2WjBBMRMwEQYDVQQDDApj
16
+ aHJpc3lvdW5nMRUwEwYKCZImiZPyLGQBGRYFYnV6YXoxEzARBgoJkiaJk/IsZAEZ
17
+ FgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDu37vOHls+p6xf
18
+ vzazqbwWkjZhh+p6t8cMhDKzMD2O+ITMSIouKg8z2DkIDtvSnkZb3pfWEC/YkZu1
19
+ 79RahOE79mSC4IB1gLeyEMmTg1TPJkNxIuoG632Sp09j2Eg8EUW1EToSFsh+gIwz
20
+ FcCBFWQ1yq0IgfQZ9+RM8a8Ei6uKfQXmm4wK6vZT5Lxp8Dv0nELoO1dkYV1WXkGh
21
+ AAFhUMX2Y9tp0x2XZztO2Z+AUL4GYD1PyU2Afh7qp/qQJZMVS0YJjulB2bnW2yn/
22
+ 7vlBadeBo3Ohp1J+OJuMUtmnuOAcKo+4cbj3HT4xTyuUa+V3izENJKX3qWCTk1D+
23
+ mU8TzNlzAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
24
+ BBSTLbhEokEPfV+oVZKmXVmGucmgljANBgkqhkiG9w0BAQUFAAOCAQEAQqRkDRig
25
+ aHqxsoqnJjG9FgZCIidnYhLNj7c3hXy8OQKJMZYau5VSDZb8dS4hC+jxQuyXiRJr
26
+ z5E16Gbqkb2fRC/YU63FnfIg2ce7PlGTp8yw0Xypn3QBYywDAWWJS4TdguikEDOM
27
+ e8IOmSKyOVJ7Zn6DIC0qyVtdcacXuKXWqqYQaWNwFwlaSlud5mQlyB77lcj5E5Lc
28
+ 2mBFwT18jFQay2vOU/lgBDXBQ/VmrgL22gnhLL2nSf++CHM8miqa39Jk2MPaTbMs
29
+ tMtvELogNijvQYORkxU83coIjJ0bIsxgbjeBoFEcWCKkq/e8uSLULcJR4nULhvR3
30
+ bIN1xy1IiuNcvw==
31
+ -----END CERTIFICATE-----
32
+
33
+ date: 2010-01-02 00:00:00 -07:00
34
+ default_executable:
35
+ dependencies: []
36
+
37
+ description: A gem that illustrates how to build a gem
38
+ email: beesucker @nospam@ gmail.com
39
+ executables: []
40
+
41
+ extensions: []
42
+
43
+ extra_rdoc_files:
44
+ - lib/hello_world.rb
45
+ files:
46
+ - Rakefile
47
+ - lib/hello_world.rb
48
+ - Manifest
49
+ - hello_world.gemspec
50
+ has_rdoc: true
51
+ homepage: http://github.com/tombombadil/hello_world
52
+ licenses: []
53
+
54
+ post_install_message:
55
+ rdoc_options:
56
+ - --line-numbers
57
+ - --inline-source
58
+ - --title
59
+ - Hello_world
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: "0"
67
+ version:
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: "1.2"
73
+ version:
74
+ requirements: []
75
+
76
+ rubyforge_project: hello_world
77
+ rubygems_version: 1.3.5
78
+ signing_key:
79
+ specification_version: 3
80
+ summary: A gem that illustrates how to build a gem
81
+ test_files: []
82
+
metadata.gz.sig ADDED
@@ -0,0 +1,2 @@
1
+ oL*�s��6ڸ�P�hI�:"(�&7H�RȠsN(�A!X@'��C0FB�tp��w�y[�<��`�l��6.2Q�=�_���>��$�Z�]2�ݡ�KS/Ow�@R t�n�gM�s�|��B�ڴ�G_d��,�Q�L��u�b�2.^_�ߺ�h"�u�k[����w� ����v^���r�v*�_9[V���N��рNc g�e���
2
+ �_����U�P}؝S����lq�=���V��x��e�e��/���h�^