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 CHANGED
@@ -1,3 +1,5 @@
1
+ 0.7.3
2
+ - http://github.com -> httpS://github.com
1
3
  0.7.2
2
4
  - fixed that `ppgit clear` would not clear when there were no local (in .git/config)
3
5
  values for user.name/user.email prior to `ppgit name1 name2`
@@ -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.2
1
+ 0.7.3
@@ -11,7 +11,7 @@ end
11
11
 
12
12
 
13
13
  def read_file_from_github(user, project, branch, file)
14
- file_path = "http://github.com/#{user}/#{project}/raw/#{branch}/#{file}"
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 = "http://github.com/#{user}/#{project}/raw/#{branch}/#{file}"
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
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{ppgit}
8
- s.version = "0.7.2"
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-10-14}
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: 7
4
+ hash: 5
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 7
9
- - 2
10
- version: 0.7.2
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-10-14 00:00:00 +02:00
18
+ date: 2010-11-04 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency