Skip to content
This repository has been archived by the owner on May 16, 2020. It is now read-only.

Commit

Permalink
$ bundle gem odin
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminoakes committed Oct 5, 2011
1 parent 612b59d commit 9f4e3eb
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.gem
.bundle
pkg/*
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in odin.gemspec
gemspec
8 changes: 6 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
require "find"
require 'rubygems'
require 'bundler'
require 'find'

Bundler::GemHelper.install_tasks

# TODO switch to using "import"
def require_files(directory)
Expand Down Expand Up @@ -62,4 +66,4 @@ end
# task :odin do
# # TODO generate documentation with rdoc
# end
# end
# end
3 changes: 3 additions & 0 deletions lib/odin.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module Odin
# Your code goes here...
end
3 changes: 3 additions & 0 deletions lib/odin/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module Odin
VERSION = "0.0.1"
end
21 changes: 21 additions & 0 deletions odin.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "odin/version"

Gem::Specification.new do |s|
s.name = "odin"
s.version = Odin::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 = "odin"

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

0 comments on commit 9f4e3eb

Please sign in to comment.