helloworld 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.
Files changed (5) hide show
  1. data/Manifest +4 -0
  2. data/Rakefile +12 -0
  3. data/helloworld.gemspec +30 -0
  4. data/lib/hello_world.rb +5 -0
  5. metadata +61 -0
@@ -0,0 +1,4 @@
1
+ Manifest
2
+ Rakefile
3
+ helloworld.gemspec
4
+ lib/hello_world.rb
@@ -0,0 +1,12 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'echoe'
4
+
5
+ Echoe.new('helloworld', '0.0.1') do |p|
6
+ p.description = "A gem that illustrates how to build a gem"
7
+ p.url = "http://github.com/CodeOfficer/hello-world-gem"
8
+ p.author = "Russ Jones"
9
+ p.email = "spam @nospam@ codeofficer.com"
10
+ p.ignore_pattern = ["tmp/*", "script/*"]
11
+ p.development_dependencies = []
12
+ end
@@ -0,0 +1,30 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{helloworld}
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 = ["Russ Jones"]
9
+ s.date = %q{2010-02-03}
10
+ s.description = %q{A gem that illustrates how to build a gem}
11
+ s.email = %q{spam @nospam@ codeofficer.com}
12
+ s.extra_rdoc_files = ["lib/hello_world.rb"]
13
+ s.files = ["Manifest", "Rakefile", "helloworld.gemspec", "lib/hello_world.rb"]
14
+ s.homepage = %q{http://github.com/CodeOfficer/hello-world-gem}
15
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Helloworld"]
16
+ s.require_paths = ["lib"]
17
+ s.rubyforge_project = %q{helloworld}
18
+ s.rubygems_version = %q{1.3.5}
19
+ s.summary = %q{A gem that illustrates how to build a gem}
20
+
21
+ if s.respond_to? :specification_version then
22
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
23
+ s.specification_version = 3
24
+
25
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
26
+ else
27
+ end
28
+ else
29
+ end
30
+ end
@@ -0,0 +1,5 @@
1
+ module HelloWorld
2
+ def self.say_hello
3
+ puts 'hello world'
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,61 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: helloworld
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Russ Jones
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-02-03 00:00:00 -05:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: A gem that illustrates how to build a gem
17
+ email: spam @nospam@ codeofficer.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - lib/hello_world.rb
24
+ files:
25
+ - Manifest
26
+ - Rakefile
27
+ - helloworld.gemspec
28
+ - lib/hello_world.rb
29
+ has_rdoc: true
30
+ homepage: http://github.com/CodeOfficer/hello-world-gem
31
+ licenses: []
32
+
33
+ post_install_message:
34
+ rdoc_options:
35
+ - --line-numbers
36
+ - --inline-source
37
+ - --title
38
+ - Helloworld
39
+ require_paths:
40
+ - lib
41
+ required_ruby_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: "0"
46
+ version:
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: "1.2"
52
+ version:
53
+ requirements: []
54
+
55
+ rubyforge_project: helloworld
56
+ rubygems_version: 1.3.5
57
+ signing_key:
58
+ specification_version: 3
59
+ summary: A gem that illustrates how to build a gem
60
+ test_files: []
61
+