Skip to content

Commit

Permalink
Created new empty gem shell
Browse files Browse the repository at this point in the history
  • Loading branch information
stuliston committed Nov 30, 2011
1 parent d9abb3d commit 8739181
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*.gem
.bundle
Gemfile.lock
pkg/*
.DS_Store
1 change: 1 addition & 0 deletions .rvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rvm --create ruby-1.8.7-p352@garb-reporter
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 garb-reporter.gemspec
gemspec
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require "bundler/gem_tasks"
24 changes: 24 additions & 0 deletions garb-reporter.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "garb-reporter/version"

Gem::Specification.new do |s|
s.name = "garb-reporter"
s.version = GarbReporter::VERSION
s.authors = ["Stuart Liston"]
s.email = ["stuart.liston@gmail.com"]
s.homepage = ""
s.summary = %q{Provides a reporter class for Garb}
s.description = %q{GarbReporter removes the need in Garb to create a new class for every report by offering a querying api that dynamically creates the Garb classes for you in the background.}

s.rubyforge_project = "garb-reporter"

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/garb-reporter.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
require "garb-reporter/version"

module GarbReporter
# Your code goes here...
end
3 changes: 3 additions & 0 deletions lib/garb-reporter/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module GarbReporter
VERSION = "0.0.1"
end

0 comments on commit 8739181

Please sign in to comment.