This repository was archived by the owner on Apr 24, 2018. It is now read-only.
File tree 3 files changed +26
-2
lines changed
3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 1
1
source 'https://rubygems.org'
2
2
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
Original file line number Diff line number Diff line change 1
1
# Faces: Standardized Multi-Avatar Framework
2
2
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
+
3
13
** Faces 1.0 is a complete rewrite and is not compatible with any previous release.**
4
14
5
15
## Introduction
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments