cap-git-deploy 0.1.2 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d6ea635853d315bab5683403f0b1a672017e9569
4
- data.tar.gz: d0466392b528f2b509c91dd7b9c83dda7079f90d
3
+ metadata.gz: 054fe77d166f32b2e18421b414f399f4778a16aa
4
+ data.tar.gz: 23530ef3629b4e60180a3ea3cbf968acc82a3873
5
5
  SHA512:
6
- metadata.gz: 31ee25f5d4fd1914da809540716a5a275d687eecf903a3620a1d4ecc2a01aed7b060f24880602404fa5697047cb7e4ded02a69f0b5f5f095daddf822165c8348
7
- data.tar.gz: e71b6c3232ad4ee342e5ae1cdca27bbcd4171713b779bcad16be5dc79dc300dc611e530cf8d7332d8170736f0b98615c85f3ca4a943172020433e01cf25fd900
6
+ metadata.gz: 0337115da84860559f70326daaa7344dbb07691a29602bd5b1de9548e6d4b406c7979c687df589eefdebac48315d7eb9a9cb128836ca81d44e52880ae740645f
7
+ data.tar.gz: 623a8a54e157c2c84b3c6fb9700696006a2a05864ad816d4a6ff04120265b233fe8c34a84661ed1d6bf6cf415aa7e0f619b5eba2b1016739404a4cf50f6c38ef
@@ -1,10 +1,19 @@
1
- # 0.1.1 2013-11-12
1
+ # Cap-Git-Deploy Changelog
2
+
3
+
4
+ ## 0.1.2 2013-12-03
5
+
6
+ * don't depend on grit anymore
7
+ * include full user name inside the revision file
8
+
9
+
10
+ ## 0.1.1 2013-11-12
2
11
 
3
12
  * add support for submodules
4
13
  * prune stale branches during `git fetch`
5
14
 
6
15
 
7
- # 0.1.0 2013-11-11
16
+ ## 0.1.0 2013-11-11
8
17
 
9
18
  * depend on capistrano 2 (avoid unwanted updates to capistrano 3)
10
19
  * play shifted semver using `~> 0.1.0` as gem requirement
@@ -16,9 +16,9 @@ module Cap
16
16
  # The name of the current logged user
17
17
  def self.current_user
18
18
  login = Etc.getlogin
19
- user = Etc.getpwnam(login)
19
+ user = Etc.getpwnam(login).gecos
20
20
  host = Socket.gethostname
21
- "<#{user}> #{login}@#{host}"
21
+ "#{login}@#{host} (#{user})"
22
22
  end
23
23
  end
24
24
  end
@@ -1,7 +1,7 @@
1
1
  module Cap
2
2
  module Git
3
3
  module Deploy
4
- VERSION = '0.1.2'
4
+ VERSION = '0.1.3'
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cap-git-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicola Racco
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-12-03 00:00:00.000000000 Z
12
+ date: 2013-12-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano
@@ -78,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
78
78
  version: '0'
79
79
  requirements: []
80
80
  rubyforge_project:
81
- rubygems_version: 2.1.2
81
+ rubygems_version: 2.1.11
82
82
  signing_key:
83
83
  specification_version: 4
84
84
  summary: Mikamai-style capistrano git deployment strategy