ppgit 0.7.2 → 0.7.3
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.
- data/CHANGELOG +2 -0
- data/README.markdown +5 -0
- data/VERSION +1 -1
- data/lib/ppgit/github_utils.rb +2 -2
- data/ppgit.gemspec +2 -2
- metadata +4 -4
data/CHANGELOG
CHANGED
data/README.markdown
CHANGED
@@ -81,6 +81,11 @@ This info is stored in ~/.gitconfig => it works for all your projects.
|
|
81
81
|
#
|
82
82
|
$ ppgit --email_root mycompany+*@gmail.com
|
83
83
|
|
84
|
+
# 3: on gravatar.com, upload and associate an avatar/pair-mugshot with each pair email address.
|
85
|
+
# ex: upload 1 image for mycompany+ann_bob@gmail.com
|
86
|
+
# upload 1 image for mycompany+bob_cid@gmail.com
|
87
|
+
# upload 1 image for mycompany+ann_cid@gmail.com
|
88
|
+
|
84
89
|
=> you'll get
|
85
90
|
mycompany+ann_bob@gmail.com
|
86
91
|
mycompany+bob_cid@gmail.com
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.7.
|
1
|
+
0.7.3
|
data/lib/ppgit/github_utils.rb
CHANGED
@@ -11,7 +11,7 @@ end
|
|
11
11
|
|
12
12
|
|
13
13
|
def read_file_from_github(user, project, branch, file)
|
14
|
-
file_path = "
|
14
|
+
file_path = "https://github.com/#{user}/#{project}/raw/#{branch}/#{file}"
|
15
15
|
begin
|
16
16
|
contents = open(file_path).read.chomp # ex: '1.2.3'
|
17
17
|
rescue => e #SocketError, OpenURI::HTTPError
|
@@ -22,7 +22,7 @@ def read_file_from_github(user, project, branch, file)
|
|
22
22
|
end
|
23
23
|
|
24
24
|
def read_file_lines_from_github(user, project, branch, file)
|
25
|
-
file_path = "
|
25
|
+
file_path = "https://github.com/#{user}/#{project}/raw/#{branch}/#{file}"
|
26
26
|
begin
|
27
27
|
open(file_path).readlines
|
28
28
|
rescue SocketError, OpenURI::HTTPError
|
data/ppgit.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{ppgit}
|
8
|
-
s.version = "0.7.
|
8
|
+
s.version = "0.7.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Alain Ravet"]
|
12
|
-
s.date = %q{2010-
|
12
|
+
s.date = %q{2010-11-04}
|
13
13
|
s.description = %q{git users' pairs switcher}
|
14
14
|
s.email = %q{alain.ravet+git@gmail.com}
|
15
15
|
s.executables = ["git-pp", "ppgit"]
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ppgit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 5
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 7
|
9
|
-
-
|
10
|
-
version: 0.7.
|
9
|
+
- 3
|
10
|
+
version: 0.7.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Alain Ravet
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-11-04 00:00:00 +01:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|