pair_see 0.1.3 → 0.1.4

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: 44029153ff3ea1d71f64f91a64838361f7c3c23e
4
- data.tar.gz: 19a2a60b23c5405dd1baf2035472409d9cba17dd
3
+ metadata.gz: 81bb49796a8d7b405eaf42d4a686c6d4976ea0df
4
+ data.tar.gz: 0e3288c9919ba8915a9eaf3aac59423f8fda8536
5
5
  SHA512:
6
- metadata.gz: db6b0146e6b446a2ae793dde5fb881ce04452789af62bb952018fdafcbb47840a983f7fb6507147adce3c60e7d827bd6590164869f30983c9563bdb031f1e2fd
7
- data.tar.gz: d88f156a7a2d57bc5458412b5a85965e7976de2eb3ed307f19e2d8e785e600575247a23a08e5a40b72be02008ed38d4ff87f1ff7b1d795470770a650b9b8ab6d
6
+ metadata.gz: 02ecfdf9001d28bef43a1a3d5a331a3b2a43f2e7024098136e62b9ff12b382326f3c6f6f10677f3b8d6e5650659cf0dec89ae69a7f3104dbacb4bf6e6e8b9ea7
7
+ data.tar.gz: d319af81af500915037e9bcd7e4aa280b110d560d773e4cd56771e61cade16db31e1fd2bb104866cf4f811d5caa2089d6aa80ae787a61cb12985f108eecff652
data/.travis.yml CHANGED
@@ -1,7 +1,12 @@
1
1
  language: ruby
2
2
  rvm:
3
- - "2.3.3"
4
- script: CODECLIMATE_REPO_TOKEN=cdb26718880608c44fda7463511e0151140ade238d92cb1044892472da13ca48 bundle exec rake
5
- # script: CODECLIMATE_REPO_TOKEN=fdf133973df1a994c9201d11cb862686f00341915ba80834f7a6073f71a8a947 bundle exec rake
3
+ - "2.4.1"
4
+ addons:
5
+ code_climate:
6
+ repo_token: cdb26718880608c44fda7463511e0151140ade238d92cb1044892472da13ca48
7
+ script: bundle exec rake
6
8
  notifications:
7
9
  email: false
10
+ before_install:
11
+ - git config --global user.email 'pairsee-test@example.com'
12
+ - git config --global user.name 'pairsee-test'
data/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
1
+
2
+
3
+ 0.1.4
4
+ =====
5
+ * fixing various badges and travis builds. This probably doesn't need a release but it's fun and good practice
6
+
7
+ 0.1.3
8
+ =====
9
+
10
+ * Updating to ruby 2.4.1
11
+ * Updating all gems to newest available versions
12
+ * Fixing bug where only the latest 30 commits were being reported
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pair_see (0.1.3)
4
+ pair_see (0.1.4)
5
5
  git (~> 1.3)
6
6
  trollop (~> 2.1)
7
7
  yamler (~> 0.1)
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![Code Climate](https://codeclimate.com/github/compwron/pairSee/badges/gpa.svg)](https://codeclimate.com/github/compwron/pairSee)
4
4
  [![Test Coverage](https://codeclimate.com/github/compwron/pairSee/badges/coverage.svg)](https://codeclimate.com/github/compwron/pairSee)
5
5
  [![Build Status](https://travis-ci.org/compwron/pairSee.svg)](https://travis-ci.org/compwron/pairSee)
6
- [![Dependency Status](https://gemnasium.com/compwron/pairSee.png)](https://gemnasium.com/compwron/pairSee)
6
+ [![Dependency Status](https://gemnasium.com/badges/github.com/compwron/pairSee.svg)](https://gemnasium.com/github.com/compwron/pairSee)
7
7
  [![Gem Version](https://img.shields.io/gem/v/pair_see.svg)](https://rubygems.org/gems/pair_see)
8
8
  [![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)
9
9
 
@@ -13,7 +13,7 @@ Usage cases:
13
13
  * See what cards have been in play and for how long since given date: $ pairsee --cards --after 2012-10-01
14
14
  * See all devs and what cards they have worked on since given date: $ pairsee --after 2013-11-01 -s
15
15
 
16
- Example usage:
16
+ Example usage:
17
17
  ```
18
18
  $ pairsee --root ../../my_code --after 2012-07-10 --config ../../foo/config/config.yml
19
19
  $ pairsee --extras --root ../../my_code
@@ -53,7 +53,7 @@ names: Person1 Person2 Person3
53
53
  card_prefix: FOO-
54
54
  ```
55
55
 
56
- So if your commit log looks like
56
+ So if your commit log looks like
57
57
  ```
58
58
  "Bob/Alice [FOO-1] wrote code"
59
59
  "Alice [FOO-1] stuff"
@@ -1,3 +1,3 @@
1
1
  module PairSee
2
- VERSION = '0.1.3'
2
+ VERSION = '0.1.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pair_see
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - compwron
@@ -163,6 +163,7 @@ files:
163
163
  - ".rspec"
164
164
  - ".ruby-version"
165
165
  - ".travis.yml"
166
+ - CHANGELOG.md
166
167
  - CODE_OF_CONDUCT.md
167
168
  - Gemfile
168
169
  - Gemfile.lock