Skip to content
This repository was archived by the owner on Apr 24, 2018. It is now read-only.

Commit 71eb794

Browse files
committed
Add rspec to project, and info radiators to README
1 parent 1f881bc commit 71eb794

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

Gemfile

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
source 'https://rubygems.org'
22

3-
# Specify your gem's dependencies in faces.gemspec
4-
gemspec
3+
group :test do
4+
gem 'coveralls', require: false
5+
gem 'rspec', '~> 2.13.0'
6+
end
7+
8+
gemspec

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Faces: Standardized Multi-Avatar Framework
22

3+
[![Gem Version](https://badge.fury.io/rb/faces.png)][gem]
4+
[![CI Build Status](https://secure.travis-ci.org/nickpellant/faces.png?branch=master)][travis]
5+
[![Code Climate](https://codeclimate.com/github/nickpellant/faces.png)][codeclimate]
6+
[![Coverage Status](https://coveralls.io/repos/nickpellant/faces/badge.png?branch=master)][coveralls]
7+
8+
[gem]: https://rubygems.org/gems/faces
9+
[travis]: http://travis-ci.org/nickpellant/faces
10+
[codeclimate]: https://codeclimate.com/github/nickpellant/faces
11+
[coveralls]: https://coveralls.io/r/nickpellant/faces
12+
313
**Faces 1.0 is a complete rewrite and is not compatible with any previous release.**
414

515
## Introduction

spec/spec_helper.rb

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
require 'coveralls'
2+
Coveralls.wear!
3+
4+
require 'rspec'
5+
6+
RSpec.configure do |config|
7+
config.expect_with :rspec do |c|
8+
c.syntax = :expect
9+
end
10+
end

0 commit comments

Comments
 (0)