Skip to content

Commit

Permalink
Initial commit of project files
Browse files Browse the repository at this point in the history
  • Loading branch information
frenchroasted committed Feb 23, 2012
0 parents commit e0bd9fc
Show file tree
Hide file tree
Showing 7 changed files with 41 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 ada_matcher.gemspec
gemspec
Empty file added README.md
Empty file.
1 change: 1 addition & 0 deletions Rakefile
@@ -0,0 +1 @@
require "bundler/gem_tasks"
24 changes: 24 additions & 0 deletions ada_matcher.gemspec
@@ -0,0 +1,24 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ada_matcher/version"

Gem::Specification.new do |s|
s.name = "ada_matcher"
s.version = AdaMatcher::VERSION
s.authors = ["Aaron Brown"]
s.email = ["aaron@thebrownproject.com"]
s.homepage = ""
s.summary = %q{TODO: Write a gem summary}
s.description = %q{TODO: Write a gem description}

s.rubyforge_project = "ada_matcher"

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
5 changes: 5 additions & 0 deletions lib/ada_matcher.rb
@@ -0,0 +1,5 @@
require "ada_matcher/version"

module AdaMatcher
# Your code goes here...
end
3 changes: 3 additions & 0 deletions lib/ada_matcher/version.rb
@@ -0,0 +1,3 @@
module AdaMatcher
VERSION = "0.0.1"
end

0 comments on commit e0bd9fc

Please sign in to comment.