initial commit
This commit is contained in:
commit
3f4495198d
|
@ -0,0 +1,4 @@
|
|||
*.gem
|
||||
.bundle
|
||||
Gemfile.lock
|
||||
pkg/*
|
|
@ -0,0 +1,4 @@
|
|||
source "http://rubygems.org"
|
||||
|
||||
# Specify your gem's dependencies in rspec-quickfix-formatter.gemspec
|
||||
gemspec
|
|
@ -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!
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
require 'rspec/core/formatters/quick_fix_formatter'
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
module Rspec
|
||||
module Quickfix
|
||||
module Formatter
|
||||
VERSION = "0.0.1"
|
||||
end
|
||||
end
|
||||
end
|
|
@ -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
|
Loading…
Reference in New Issue