From fe075cc6c3aac7156e3b3768cbc1111eeddf67a1 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 1 Mar 2011 22:47:32 +0000 Subject: [PATCH] Initial commit --- .gitignore | 4 ++++ Gemfile | 4 ++++ Rakefile | 2 ++ lib/twhois.rb | 3 +++ lib/twhois/version.rb | 3 +++ twhois.gemspec | 21 +++++++++++++++++++++ 6 files changed, 37 insertions(+) create mode 100644 .gitignore create mode 100644 Gemfile create mode 100644 Rakefile create mode 100644 lib/twhois.rb create mode 100644 lib/twhois/version.rb create mode 100644 twhois.gemspec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4040c6c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.gem +.bundle +Gemfile.lock +pkg/* diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..f8f419a --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +# Specify your gem's dependencies in twhois.gemspec +gemspec diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..14cfe0b --- /dev/null +++ b/Rakefile @@ -0,0 +1,2 @@ +require 'bundler' +Bundler::GemHelper.install_tasks diff --git a/lib/twhois.rb b/lib/twhois.rb new file mode 100644 index 0000000..f0da803 --- /dev/null +++ b/lib/twhois.rb @@ -0,0 +1,3 @@ +module Twhois + # Your code goes here... +end diff --git a/lib/twhois/version.rb b/lib/twhois/version.rb new file mode 100644 index 0000000..834d455 --- /dev/null +++ b/lib/twhois/version.rb @@ -0,0 +1,3 @@ +module Twhois + VERSION = "0.0.1" +end diff --git a/twhois.gemspec b/twhois.gemspec new file mode 100644 index 0000000..f37a67f --- /dev/null +++ b/twhois.gemspec @@ -0,0 +1,21 @@ +# -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) +require "twhois/version" + +Gem::Specification.new do |s| + s.name = "twhois" + s.version = Twhois::VERSION + s.platform = Gem::Platform::RUBY + s.authors = ["TODO: Write your name"] + s.email = ["TODO: Write your email address"] + s.homepage = "" + s.summary = %q{TODO: Write a gem summary} + s.description = %q{TODO: Write a gem description} + + s.rubyforge_project = "twhois" + + s.files = `git ls-files`.split("\n") + s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") + s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } + s.require_paths = ["lib"] +end