saddler-reporter-text 0.0.1 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +17 -0
- data/.tachikoma.yml +1 -0
- data/README.md +15 -7
- data/bin/console +0 -0
- data/bin/setup +0 -0
- data/lib/saddler/reporter/text.rb +1 -1
- data/saddler-reporter-text.gemspec +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f4a4befd857c8cae9f3e95344e5316b7066977f
|
4
|
+
data.tar.gz: 7946c992713f1d340f1c4e18adb32cf5d8a71192
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 245dd0cb5178d3efaaf85b655b04b69b8f79d19d31e3677cfb660729fea3bd97e13b489ae429f0ba556c9ba35c2159267a08f6bfac201af1791a38cab0aeaabf
|
7
|
+
data.tar.gz: 101b997edbb9a186f68fe452303ea97cc27d4876c4578fd072a16cabe613a45643427dab4016e29332671c5b1c58e44a16b283f1ef6a8c6de18bba371ad17886
|
data/.rubocop.yml
ADDED
data/.tachikoma.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
strategy: 'none'
|
data/README.md
CHANGED
@@ -3,9 +3,21 @@
|
|
3
3
|
[![Gem Version](http://img.shields.io/gem/v/saddler-reporter-text.svg?style=flat)](http://badge.fury.io/rb/saddler-reporter-text)
|
4
4
|
[![Build Status](http://img.shields.io/travis/packsaddle/ruby-saddler-reporter-text/master.svg?style=flat)](https://travis-ci.org/packsaddle/ruby-saddler-reporter-text)
|
5
5
|
|
6
|
-
|
6
|
+
## Reporters
|
7
7
|
|
8
|
-
|
8
|
+
This provides saddler reporters for Text.
|
9
|
+
|
10
|
+
* Text
|
11
|
+
|
12
|
+
## Usage
|
13
|
+
|
14
|
+
```
|
15
|
+
$ saddler report \
|
16
|
+
--require saddler/reporter/text \
|
17
|
+
--reporter Saddler::Reporter::Text
|
18
|
+
```
|
19
|
+
|
20
|
+
like this.
|
9
21
|
|
10
22
|
## Installation
|
11
23
|
|
@@ -23,10 +35,6 @@ Or install it yourself as:
|
|
23
35
|
|
24
36
|
$ gem install saddler-reporter-text
|
25
37
|
|
26
|
-
## Usage
|
27
|
-
|
28
|
-
TODO: Write usage instructions here
|
29
|
-
|
30
38
|
## Development
|
31
39
|
|
32
40
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
@@ -35,7 +43,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
35
43
|
|
36
44
|
## Contributing
|
37
45
|
|
38
|
-
1. Fork it ( https://github.com/
|
46
|
+
1. Fork it ( https://github.com/packsaddle/ruby-saddler-reporter-text/fork )
|
39
47
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
40
48
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
41
49
|
4. Push to the branch (`git push origin my-new-feature`)
|
data/bin/console
CHANGED
File without changes
|
data/bin/setup
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: saddler-reporter-text
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sanemat
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-02-
|
11
|
+
date: 2015-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: test-unit
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
@@ -60,6 +60,8 @@ extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
61
61
|
files:
|
62
62
|
- ".gitignore"
|
63
|
+
- ".rubocop.yml"
|
64
|
+
- ".tachikoma.yml"
|
63
65
|
- ".travis.yml"
|
64
66
|
- CODE_OF_CONDUCT.md
|
65
67
|
- Gemfile
|