contributor 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +15 -9
- data/lib/contributor/version.rb +1 -1
- metadata +1 -6
- data/bin/console +0 -14
- data/bin/setup +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60d2ba8c9b0d353686dcdc04aaa21024c4364583
|
4
|
+
data.tar.gz: 8fcc8e9b91f7a79ee7342c9904f450d65a33525d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1ccbf6707b82a7f3e93717e8731339807e8b353983e0c7446b1a71becf079c2ab45fc604ebe113ac5b61c5fb395c66a5c44b9ecc3c9214b1708fd13a7a4e43a
|
7
|
+
data.tar.gz: e22f2da907c296ac48dcdc4c1a5790a625702b53d18d2ce90e2bb18e65242b6c042758acc6f00831a9dbfcb44a403cef8eb640d269167b20798871e49bc9d30f
|
data/README.md
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
# Contributor
|
2
2
|
|
3
|
-
|
3
|
+
Contributor is tiny calculator of git log.
|
4
4
|
|
5
|
-
|
5
|
+
- Print commit
|
6
|
+
- Print increase and decrease lines
|
6
7
|
|
7
8
|
## Installation
|
8
9
|
|
@@ -22,20 +23,25 @@ Or install it yourself as:
|
|
22
23
|
|
23
24
|
## Usage
|
24
25
|
|
25
|
-
|
26
|
+
### Initialize configuration
|
26
27
|
|
27
|
-
|
28
|
+
You need to manage your repository configuration.
|
28
29
|
|
29
|
-
|
30
|
+
```
|
31
|
+
# Create configuration.yml
|
32
|
+
bundle exec contributor --init
|
33
|
+
```
|
30
34
|
|
31
|
-
|
35
|
+
### Run
|
32
36
|
|
33
|
-
|
37
|
+
```
|
38
|
+
bundle exec contributor --configuration your/configuration.yml --repository your/repository/path
|
39
|
+
```
|
34
40
|
|
35
|
-
|
41
|
+
## Contributing
|
36
42
|
|
43
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/alpaca-tc/contributor/issues.
|
37
44
|
|
38
45
|
## License
|
39
46
|
|
40
47
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
-
|
data/lib/contributor/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: contributor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- alpaca-tc
|
@@ -42,9 +42,7 @@ description: Print detail of contribution
|
|
42
42
|
email:
|
43
43
|
- alpaca-tc@alpaca.tc
|
44
44
|
executables:
|
45
|
-
- console
|
46
45
|
- contributor
|
47
|
-
- setup
|
48
46
|
extensions: []
|
49
47
|
extra_rdoc_files: []
|
50
48
|
files:
|
@@ -54,9 +52,7 @@ files:
|
|
54
52
|
- LICENSE.txt
|
55
53
|
- README.md
|
56
54
|
- Rakefile
|
57
|
-
- bin/console
|
58
55
|
- bin/contributor
|
59
|
-
- bin/setup
|
60
56
|
- contributor.gemspec
|
61
57
|
- data/configuration.yml.default.erb
|
62
58
|
- lib/contributor.rb
|
@@ -92,4 +88,3 @@ signing_key:
|
|
92
88
|
specification_version: 4
|
93
89
|
summary: Print detail of contribution
|
94
90
|
test_files: []
|
95
|
-
has_rdoc:
|
data/bin/console
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "contributor"
|
5
|
-
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
8
|
-
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
# require "pry"
|
11
|
-
# Pry.start
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start
|