Add stupid basics for this stupid gem

This commit is contained in:
R. Tyler Croy 2011-10-21 11:54:26 -07:00
parent 062f5ae153
commit 63951826d2
5 changed files with 24 additions and 0 deletions

0
Gemfile Normal file
View File

0
Rakefile Normal file
View File

0
VERSION Normal file
View File

17
hello.gemspec Normal file
View File

@ -0,0 +1,17 @@
Gem::Specification.new do |s|
s.name = %q{hello}
s.author = "R. Tyler Croy"
s.homepage = "http://www.zombo.com"
s.description = "This is so amazing"
s.email = "tyler@linux.com"
s.version = "0.0.1"
s.date = %q{2011-10-21}
s.summary = %q{hello gem}
s.files = [
"Gemfile",
"Rakefile",
"VERSION",
"lib/hello.rb"
]
s.require_paths = ["lib"]
end

7
lib/hello.rb Normal file
View File

@ -0,0 +1,7 @@
module Hello
class Greeter
def self.greet(name="you there")
puts "Hey, hey #{name}. Hi I says!"
end
end
end