Skip to content

Commit

Permalink
initial commit. ready to go.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhfs committed Sep 11, 2011
0 parents commit a102cd4
Show file tree
Hide file tree
Showing 9 changed files with 62 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 rotation.gemspec
gemspec
Empty file added README.md
Empty file.
10 changes: 10 additions & 0 deletions Rakefile
@@ -0,0 +1,10 @@
require "bundler/gem_tasks"
require 'rake/testtask'

Rake::TestTask.new do |t|
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
end

desc "Run tests"
task :default => :test
5 changes: 5 additions & 0 deletions lib/rotation.rb
@@ -0,0 +1,5 @@
require "rotation/version"

module Rotation
# Your code goes here...
end
3 changes: 3 additions & 0 deletions lib/rotation/version.rb
@@ -0,0 +1,3 @@
module Rotation
VERSION = "0.0.1"
end
26 changes: 26 additions & 0 deletions rotation.gemspec
@@ -0,0 +1,26 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rotation/version"

Gem::Specification.new do |s|
s.name = "rotation"
s.version = Rotation::VERSION
s.authors = ["Marcelo Silveira"]
s.email = ["marcelo@mhfs.com.br"]
s.homepage = "https://github.com/mhfs/rotation/"
s.summary = %q{A quick way to control rotation of stuff over time}
s.description = %q{Rotation is a quick utility to help you rotate any kind of stuff over time. I created it to control code review rotation among the team members.}

s.rubyforge_project = "rotation"

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 "rake"
s.add_development_dependency "contest"
s.add_development_dependency "redgreen"
# s.add_runtime_dependency "rest-client"
end
7 changes: 7 additions & 0 deletions test/rotation_test.rb
@@ -0,0 +1,7 @@
require "test_helper"

class RotationTest < Test::Unit::TestCase
test "something" do
assert true
end
end
3 changes: 3 additions & 0 deletions test/test_helper.rb
@@ -0,0 +1,3 @@
require "test/unit"
require "contest"
require "redgreen"

0 comments on commit a102cd4

Please sign in to comment.