pair_see 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +8 -3
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +1 -1
- data/README.md +3 -3
- data/lib/pair_see/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 81bb49796a8d7b405eaf42d4a686c6d4976ea0df
|
|
4
|
+
data.tar.gz: 0e3288c9919ba8915a9eaf3aac59423f8fda8536
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
4
|
-
|
|
5
|
-
|
|
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
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://codeclimate.com/github/compwron/pairSee)
|
|
4
4
|
[](https://codeclimate.com/github/compwron/pairSee)
|
|
5
5
|
[](https://travis-ci.org/compwron/pairSee)
|
|
6
|
-
[](https://gemnasium.com/github.com/compwron/pairSee)
|
|
7
7
|
[](https://rubygems.org/gems/pair_see)
|
|
8
8
|
[](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"
|
data/lib/pair_see/version.rb
CHANGED
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.
|
|
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
|