Skip to content

Commit 6c4b757

Browse files
committed
Gem boilerplate
1 parent 06c2d87 commit 6c4b757

File tree

5 files changed

+108
-0
lines changed

5 files changed

+108
-0
lines changed

Gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source 'https://rubygems.org'
2+
3+
gemspec
4+
5+
group :development, :test do
6+
gem 'byebug'
7+
gem 'rspec'
8+
end

Gemfile.lock

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
PATH
2+
remote: .
3+
specs:
4+
rfc (0.0.1)
5+
rspec-core (~> 3.0)
6+
7+
GEM
8+
remote: https://rubygems.org/
9+
specs:
10+
byebug (10.0.2)
11+
diff-lcs (1.3)
12+
rspec (3.7.0)
13+
rspec-core (~> 3.7.0)
14+
rspec-expectations (~> 3.7.0)
15+
rspec-mocks (~> 3.7.0)
16+
rspec-core (3.7.1)
17+
rspec-support (~> 3.7.0)
18+
rspec-expectations (3.7.0)
19+
diff-lcs (>= 1.2.0, < 2.0)
20+
rspec-support (~> 3.7.0)
21+
rspec-mocks (3.7.0)
22+
diff-lcs (>= 1.2.0, < 2.0)
23+
rspec-support (~> 3.7.0)
24+
rspec-support (3.7.1)
25+
26+
PLATFORMS
27+
ruby
28+
29+
DEPENDENCIES
30+
byebug
31+
rfc!
32+
rspec
33+
34+
BUNDLED WITH
35+
1.16.3

LICENSE

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
The MIT License (MIT)
2+
=====================
3+
4+
Copyright (c) 2018 Oleg Pudeyev
5+
6+
Permission is hereby granted, free of charge, to any person obtaining
7+
a copy of this software and associated documentation files (the
8+
"Software"), to deal in the Software without restriction, including
9+
without limitation the rights to use, copy, modify, merge, publish,
10+
distribute, sublicense, and/or sell copies of the Software, and to
11+
permit persons to whom the Software is furnished to do so, subject to
12+
the following conditions:
13+
14+
The above copyright notice and this permission notice shall be
15+
included in all copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# RSpec Formatter Collection
2+
3+
A collection of RSpec formatters.
4+
5+
## RSpec Insta-Failing Formatter (RIFF)
6+
7+
RIFF was originally developed for running large test suites in a
8+
continuous integration environment, where the runs are non-interactive
9+
and the output is saved to a file/stream of some kind.
10+
It has the following features;
11+
12+
- Immediate error/failure reporting
13+
- Timestamped percentage progress output
14+
- No output overwrites or terminal manipulation
15+
16+
## License
17+
18+
MIT

rfc.gemspec

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# -*- encoding: utf-8 -*-
2+
3+
Gem::Specification.new do |s|
4+
s.name = "rfc"
5+
s.version = "0.0.1"
6+
s.platform = Gem::Platform::RUBY
7+
s.license = "MIT"
8+
s.authors = ["Oleg Pudeyev"]
9+
s.email = "[email protected]"
10+
s.homepage = "https://github.com/p-mongo/rfc"
11+
s.summary = "rfc-0.0.1"
12+
s.description = "RSpec Formatter Collection including a concise insta-failing formatter"
13+
14+
s.files = `git ls-files -- lib/*`.split("\n")
15+
s.files += %w[README.md LICENSE]
16+
s.test_files = []
17+
s.bindir = 'bin'
18+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19+
s.rdoc_options = ["--charset=UTF-8"]
20+
s.require_path = "lib"
21+
22+
s.required_ruby_version = '>= 1.9.3'
23+
s.add_runtime_dependency "rspec-core", "~> 3.0"
24+
end

0 commit comments

Comments
 (0)