Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
trptcolin committed May 9, 2011
0 parents commit b50116c
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
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 consistency_fail.gemspec
gemspec
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
require 'bundler'
Bundler::GemHelper.install_tasks
3 changes: 3 additions & 0 deletions bin/consistency_fail
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env ruby

require "consistency_fail"
21 changes: 21 additions & 0 deletions consistency_fail.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 "consistency_fail/version"

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

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
3 changes: 3 additions & 0 deletions lib/consistency_fail.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module ConsistencyFail
# Your code goes here...
end
3 changes: 3 additions & 0 deletions lib/consistency_fail/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module ConsistencyFail
VERSION = "0.0.1"
end

0 comments on commit b50116c

Please sign in to comment.