From 1e1c81658cdf8498e2b9e9cf2e6e13b137038716 Mon Sep 17 00:00:00 2001 From: Sean Porter Date: Fri, 7 Oct 2011 18:36:09 -0700 Subject: [PATCH] gem init --- .gitignore | 4 ++++ Gemfile | 4 ++++ Rakefile | 1 + lib/redphone.rb | 5 +++++ lib/redphone/version.rb | 3 +++ redphone.gemspec | 24 ++++++++++++++++++++++++ 6 files changed, 41 insertions(+) create mode 100644 .gitignore create mode 100644 Gemfile create mode 100644 Rakefile create mode 100644 lib/redphone.rb create mode 100644 lib/redphone/version.rb create mode 100644 redphone.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..d84cbf3 --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +# Specify your gem's dependencies in redphone.gemspec +gemspec diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..2995527 --- /dev/null +++ b/Rakefile @@ -0,0 +1 @@ +require "bundler/gem_tasks" diff --git a/lib/redphone.rb b/lib/redphone.rb new file mode 100644 index 0000000..dd694a4 --- /dev/null +++ b/lib/redphone.rb @@ -0,0 +1,5 @@ +require "redphone/version" + +module Redphone + # Your code goes here... +end diff --git a/lib/redphone/version.rb b/lib/redphone/version.rb new file mode 100644 index 0000000..d7d4e94 --- /dev/null +++ b/lib/redphone/version.rb @@ -0,0 +1,3 @@ +module Redphone + VERSION = "0.0.1" +end diff --git a/redphone.gemspec b/redphone.gemspec new file mode 100644 index 0000000..c060f22 --- /dev/null +++ b/redphone.gemspec @@ -0,0 +1,24 @@ +# -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) +require "redphone/version" + +Gem::Specification.new do |s| + s.name = "redphone" + s.version = Redphone::VERSION + s.authors = ["Sean Porter"] + s.email = ["portertech@gmail.com"] + s.homepage = "" + s.summary = %q{TODO: Write a gem summary} + s.description = %q{TODO: Write a gem description} + + s.rubyforge_project = "redphone" + + 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"] + + # specify any dependencies here; for example: + # s.add_development_dependency "rspec" + # s.add_runtime_dependency "rest-client" +end