Skip to content

Commit

Permalink
Created repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Darrick Wiebe committed Oct 3, 2011
0 parents commit 278619a
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in pacer-neo4j-algo.gemspec
gemspec
1 change: 1 addition & 0 deletions Rakefile
@@ -0,0 +1 @@
require "bundler/gem_tasks"
9 changes: 9 additions & 0 deletions lib/pacer-neo4j-algo.rb
@@ -0,0 +1,9 @@
require "pacer-neo4j-algo/version"

module Pacer
module Neo4j
module Algo
# Your code goes here...
end
end
end
7 changes: 7 additions & 0 deletions lib/pacer-neo4j-algo/version.rb
@@ -0,0 +1,7 @@
module Pacer
module Neo4j
module Algo
VERSION = "0.0.1"
end
end
end
24 changes: 24 additions & 0 deletions pacer-neo4j-algo.gemspec
@@ -0,0 +1,24 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "pacer-neo4j-algo/version"

Gem::Specification.new do |s|
s.name = "pacer-neo4j-algo"
s.version = Pacer::Neo4j::Algo::VERSION
s.authors = ["Darrick Wiebe"]
s.email = ["darrick@innatesoftware.com"]
s.homepage = ""
s.summary = %q{TODO: Write a gem summary}
s.description = %q{TODO: Write a gem description}

s.rubyforge_project = "pacer-neo4j-algo"

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

0 comments on commit 278619a

Please sign in to comment.