fastlane-plugin-git_tags 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c896761421537ba84395e08443a3acb08702ba8
|
4
|
+
data.tar.gz: 23e28f70923aa725f38570086bdd0f49de4eede5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ee2ea6f790d17db65ee73112c68e01fbc2e827969e935a1d17053653d51f8d6b6c8e3d4643d6a175d93905ff6519e05efdd9a968736ce6a981d84a5399c86ee
|
7
|
+
data.tar.gz: 6433f4358f7bf0444afcffa710936aef8af3813f12d868407c5b2fd0502da1282430cce1947d371b7a5019184860248ff5888788360fd5fd521ee752aba982b8
|
data/README.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
# git_tags plugin
|
2
2
|
|
3
|
-
[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-git_tags)
|
3
|
+
[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-git_tags)
|
4
|
+
[![Twitter: @fsaragoca](https://img.shields.io/badge/contact-@fsaragoca-blue.svg?style=flat)](https://twitter.com/fsaragoca)
|
5
|
+
|
6
|
+
[![CircleCI](https://circleci.com/gh/fsaragoca/fastlane-plugin-git_tags.svg?style=svg)](https://circleci.com/gh/fsaragoca/fastlane-plugin-git_tags)
|
4
7
|
|
5
8
|
## Getting Started
|
6
9
|
|
@@ -2,7 +2,7 @@ module Fastlane
|
|
2
2
|
module Actions
|
3
3
|
class GitTagsAction < Action
|
4
4
|
def self.run(params)
|
5
|
-
tags = Actions.sh("git tag --
|
5
|
+
tags = Actions.sh("git tag | xargs -I@ git log --format=format:\"%ai @%n\" -1 @ | sort | awk '{print $4}'", log: $verbose).chomp.split("\n").reverse
|
6
6
|
tags = tags.take(params[:limit]) if params[:limit]
|
7
7
|
tags
|
8
8
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-git_tags
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fernando Saragoca
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-12-
|
11
|
+
date: 2016-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|