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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 153653ce51a94550afa2f041620784173cd9c1ca
4
- data.tar.gz: 466a4dfc703b29efc2c06ba7a513e7c059aee107
3
+ metadata.gz: 1f4a4befd857c8cae9f3e95344e5316b7066977f
4
+ data.tar.gz: 7946c992713f1d340f1c4e18adb32cf5d8a71192
5
5
  SHA512:
6
- metadata.gz: a673b2892548959ce4d01dc537e4ba53cdcfadbdfac499312c9a344cb901a2db49d4dfceff699fb5da16e4cd1ba34b1fc36a0ce6a7bf775e93b6b54fd5924596
7
- data.tar.gz: 73db90b5e3c268915272e216354db1a246b74cf95dded21374865e317591c069fe5f183261737214e80fd2953659b4800cb8f3ae4806d3a8533d13741ea83c66
6
+ metadata.gz: 245dd0cb5178d3efaaf85b655b04b69b8f79d19d31e3677cfb660729fea3bd97e13b489ae429f0ba556c9ba35c2159267a08f6bfac201af1791a38cab0aeaabf
7
+ data.tar.gz: 101b997edbb9a186f68fe452303ea97cc27d4876c4578fd072a16cabe613a45643427dab4016e29332671c5b1c58e44a16b283f1ef6a8c6de18bba371ad17886
data/.rubocop.yml ADDED
@@ -0,0 +1,17 @@
1
+ AllCops:
2
+ Exclude:
3
+ - 'bundle_bin/*'
4
+ - 'vendor/bundle/**/*'
5
+
6
+ Style/Documentation:
7
+ Enabled: false
8
+
9
+ Metrics/LineLength:
10
+ Max: 120
11
+
12
+ Style/FileName:
13
+ Exclude:
14
+ - exe/*
15
+
16
+ Style/RegexpLiteral:
17
+ MaxSlashes: 0
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
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/saddler/reporter/text`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+ ## Reporters
7
7
 
8
- TODO: Delete this and the text above, and describe your gem
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/[my-github-username]/saddler-reporter-text/fork )
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
@@ -1,7 +1,7 @@
1
1
  module Saddler
2
2
  module Reporter
3
3
  class Text
4
- VERSION = '0.0.1'
4
+ VERSION = '0.1.0'
5
5
  def initialize(output)
6
6
  @output = output
7
7
  end
@@ -21,5 +21,5 @@ Gem::Specification.new do |spec|
21
21
 
22
22
  spec.add_development_dependency 'bundler', '~> 1.8'
23
23
  spec.add_development_dependency 'rake', '~> 10.0'
24
- spec.add_development_dependency 'minitest'
24
+ spec.add_development_dependency 'test-unit'
25
25
  end
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.1
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-18 00:00:00.000000000 Z
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: minitest
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