initial commit

This commit is contained in:
John Bintz 2011-03-30 09:07:15 -04:00
commit 3f4495198d
8 changed files with 59 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*

4
Gemfile Normal file
View File

@ -0,0 +1,4 @@
source "http://rubygems.org"
# Specify your gem's dependencies in rspec-quickfix-formatter.gemspec
gemspec

17
README.md Normal file
View File

@ -0,0 +1,17 @@
## Usage
Install the gem:
rake install
In .rspec:
--format RSpec::Core::Formatters::QuickFixFormatter
--out .quickfix-out
In Vim:
:cf .quickfix-out
Easy!

2
Rakefile Normal file
View File

@ -0,0 +1,2 @@
require 'bundler'
Bundler::GemHelper.install_tasks

View File

@ -0,0 +1,2 @@
require 'rspec/core/formatters/quick_fix_formatter'

View File

@ -0,0 +1,7 @@
module Rspec
module Quickfix
module Formatter
VERSION = "0.0.1"
end
end
end

View File

@ -0,0 +1,23 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rspec-quickfix-formatter/version"
Gem::Specification.new do |s|
s.name = "rspec-quickfix-formatter"
s.version = Rspec::Quickfix::Formatter::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["John Bintz"]
s.email = ["john@coswellproductions.com"]
s.homepage = ""
s.summary = %q{RSpec formatter to create a Quickfix-compatible output file for Vim}
s.description = %q{RSpec formatter to create a Quickfix-compatible output file for Vim. Use as an --out format option for rspec.}
s.rubyforge_project = "rspec-quickfix-formatter"
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"]
s.add_dependency 'rspec'
end