From 56eb7f5a4c9299c1634e50efc6d9295dc69233a3 Mon Sep 17 00:00:00 2001 From: Matt Sears Date: Sat, 8 Oct 2011 10:49:18 -0400 Subject: [PATCH] Initial setup and gem configuration --- .gitignore | 4 ++++ Gemfile | 4 ++++ Rakefile | 1 + lib/taco.rb | 5 +++++ lib/taco/version.rb | 3 +++ taco.gemspec | 24 ++++++++++++++++++++++++ 6 files changed, 41 insertions(+) create mode 100644 .gitignore create mode 100644 Gemfile create mode 100644 Rakefile create mode 100644 lib/taco.rb create mode 100644 lib/taco/version.rb create mode 100644 taco.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..44b882e --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +# Specify your gem's dependencies in taco.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/taco.rb b/lib/taco.rb new file mode 100644 index 0000000..1cc87b3 --- /dev/null +++ b/lib/taco.rb @@ -0,0 +1,5 @@ +require "taco/version" + +module Taco + # Your code goes here... +end diff --git a/lib/taco/version.rb b/lib/taco/version.rb new file mode 100644 index 0000000..14b53a6 --- /dev/null +++ b/lib/taco/version.rb @@ -0,0 +1,3 @@ +module Taco + VERSION = "0.0.1" +end diff --git a/taco.gemspec b/taco.gemspec new file mode 100644 index 0000000..b75f4cc --- /dev/null +++ b/taco.gemspec @@ -0,0 +1,24 @@ + +# -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) +require "taco/version" + +Gem::Specification.new do |s| + s.name = "taco" + s.version = Taco::VERSION + s.authors = ["Matt Sears"] + s.email = ["matt@mattsears.com"] + s.homepage = "http://mattsears.com" + s.summary = %q{Hold your stuff in a shell} + s.description = %q{Manages todo items from the command line} + s.rubyforge_project = "taco" + + 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