githubissues-port 0.3.3 → 0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/export.xlsx +0 -0
- data/lib/githubissues-port/export.rb +4 -0
- data/lib/githubissues-port/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YjIxNzZjZjJmODFmNTBjODgxNTMxZWQ2Y2NhMDNjMWFjMDZlNjY2ZQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NTRjM2ViOTQ5OGI0MmM5ZWIyOWMyZWJiYTJhMDc3NDhlYjU0ZTc0OA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NTVjNzJmNzEyMDJjOTZjNTRjZDNmZTc1YmFhMWI2OTkyN2FlZDhhZTlkYTFl
|
10
|
+
MWVmZjgxZDYzNGRiMjlmYTc2ZGVmM2FlYWE5Y2IyMWEyMTdmODgxOTFjNDhl
|
11
|
+
N2Y0NDI4MmFhZGRjYjFhODExNjhmMjVlNmMxNWQ3MWNjYjZmODM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTM5ZDhkMDcxYzQzOWQ4YWYyMzVmOTNhMTU5NWU3OTkyMWVkMThlMGU3OGJh
|
14
|
+
MTExNmZiMDZiMzJhMzNhMmNiMGVlNjI5N2EzMjQzYjIxYmRlNWNmOGIzZmEy
|
15
|
+
M2ZkMjM4MzFmY2Y1OGU1ZmQyNjhlOWJlMDBlY2I1ZjA4MTU1YmM=
|
data/export.xlsx
CHANGED
Binary file
|
@@ -44,6 +44,10 @@ module Githubissues
|
|
44
44
|
issue.labels.map(&:name).join(', ') unless issue.labels.nil?
|
45
45
|
when 'milestone'
|
46
46
|
issue.milestone.title unless issue.milestone.nil?
|
47
|
+
when 'created_at'
|
48
|
+
DateTime.parse issue.created_at unless issue.created_at.nil?
|
49
|
+
when 'closed_at'
|
50
|
+
DateTime.parse issue.closed_at unless issue.closed_at.nil?
|
47
51
|
else
|
48
52
|
issue.send field
|
49
53
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: githubissues-port
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: '0.5'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ramtin Vaziri
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2014-02-
|
13
|
+
date: 2014-02-27 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: github_api
|