git-commit-autouser 0.0.1 → 0.0.2
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/README.md +0 -9
- data/git-commit-autouser.gemspec +2 -3
- data/lib/git_commit_autouser/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3afea5f68d7e6caaf6ed25075009efdad1dedf59
|
|
4
|
+
data.tar.gz: dc98550c101c6fa2790e8b95075294e9b4f7dc98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 76156ad7346fc47851a666fe2e703ef996db547a8379e244a4108a0309e4c3eebf36f1c15331ac365c5a5f989a6f247bb41bcd24c820b6b902758b698ebef6b7
|
|
7
|
+
data.tar.gz: 2751947a011ccaa9aa913dc3c1d8cc32fd7ada0e57badedfed673a4700d7257b90ee897d868a0034d9c669e6f48507730fa11bb169e7a42a47f290e2d4f4c7f4
|
data/README.md
CHANGED
|
@@ -8,15 +8,6 @@ git-commit-autouser sets name and email of committer and author automatically. T
|
|
|
8
8
|
$ gem install git-commit-autouser
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
### rbenv, system ruby and specific_install
|
|
12
|
-
|
|
13
|
-
```
|
|
14
|
-
rbenv shell system
|
|
15
|
-
sudo gem install specific_install
|
|
16
|
-
sudo gem specific_install -l git@github.com:ryotarai/git-commit-autouser.git
|
|
17
|
-
rbenv rehash
|
|
18
|
-
```
|
|
19
|
-
|
|
20
11
|
## Usage
|
|
21
12
|
|
|
22
13
|
Add the following settings to .gitconfig:
|
data/git-commit-autouser.gemspec
CHANGED
|
@@ -8,9 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = GitCommitAutouser::VERSION
|
|
9
9
|
spec.authors = ["Ryota Arai"]
|
|
10
10
|
spec.email = ["ryota.arai@gmail.com"]
|
|
11
|
-
spec.
|
|
12
|
-
spec.
|
|
13
|
-
spec.homepage = "https://github.com/ryotarai/git-commit-autouser"
|
|
11
|
+
spec.summary = %q{git-commit with setting name and email automatically}
|
|
12
|
+
spec.homepage = "http://ryotarai.github.io/git-commit-autouser/"
|
|
14
13
|
spec.license = "MIT"
|
|
15
14
|
|
|
16
15
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git-commit-autouser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryota Arai
|
|
@@ -80,7 +80,7 @@ dependencies:
|
|
|
80
80
|
- - '>='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
-
description:
|
|
83
|
+
description:
|
|
84
84
|
email:
|
|
85
85
|
- ryota.arai@gmail.com
|
|
86
86
|
executables:
|
|
@@ -117,7 +117,7 @@ files:
|
|
|
117
117
|
- spec/lib/git_commit_autouser/git_spec.rb
|
|
118
118
|
- spec/spec_helper.rb
|
|
119
119
|
- spec/support/helpers.rb
|
|
120
|
-
homepage:
|
|
120
|
+
homepage: http://ryotarai.github.io/git-commit-autouser/
|
|
121
121
|
licenses:
|
|
122
122
|
- MIT
|
|
123
123
|
metadata: {}
|
|
@@ -140,7 +140,7 @@ rubyforge_project:
|
|
|
140
140
|
rubygems_version: 2.0.3
|
|
141
141
|
signing_key:
|
|
142
142
|
specification_version: 4
|
|
143
|
-
summary: git-commit with
|
|
143
|
+
summary: git-commit with setting name and email automatically
|
|
144
144
|
test_files:
|
|
145
145
|
- spec/git-repo/HEAD
|
|
146
146
|
- spec/git-repo/config
|