deploy_notes 0.0.6 → 0.0.8
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/app/views/deploy_notes/_show.html.haml +1 -1
- data/lib/deploy_notes/local.rb +2 -2
- data/lib/deploy_notes/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 119b9fb943fe2d40a1fe7c802cd57258638c9cf2
|
|
4
|
+
data.tar.gz: 5f90a433b8993a9694958cf6db47e1c4a8a8fc19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc6e8db28e9d8d179a0bf7637030ad380aa8ee55ed9fa75eb7a42031ea18c4d0bdc3763c71b0b54f574b462b378d7ea59c4f75795c29ebe2641eba9fc396a955
|
|
7
|
+
data.tar.gz: b87e539c995fb6307c5c9a729da23368301f58c7263d31d17227e45db05aaa84459228a6cfcc1f2395698086deac9a63495f55f2089653f10121b1cec9bab136
|
data/lib/deploy_notes/local.rb
CHANGED
|
@@ -2,7 +2,7 @@ module DeployNotes
|
|
|
2
2
|
# Class for local deployments
|
|
3
3
|
class Local
|
|
4
4
|
def get
|
|
5
|
-
branch_name
|
|
5
|
+
"[#{branch_name}] - [#{commit_info}]"
|
|
6
6
|
end
|
|
7
7
|
|
|
8
8
|
private
|
|
@@ -12,7 +12,7 @@ module DeployNotes
|
|
|
12
12
|
end
|
|
13
13
|
|
|
14
14
|
def commit_info
|
|
15
|
-
`git log -n1 --pretty=format
|
|
15
|
+
`git log -n1 --pretty=format:%ae:%s:%cr`
|
|
16
16
|
end
|
|
17
17
|
end
|
|
18
18
|
end
|
data/lib/deploy_notes/version.rb
CHANGED