githubissues-port 0.3.2 → 0.3.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 +8 -8
- data/export.xlsx +0 -0
- data/lib/githubissues-port/export.rb +3 -1
- data/lib/githubissues-port/import.rb +1 -2
- data/lib/githubissues-port/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
Y2E5OWFkYTA0OThjNDQzMDRkYjQxNGU5N2JmYzBiYzFlZTUwNmJhZQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NTQwNDBlOTJhMGYwOTI1NzVjNTQ2YjYyYzQ4YzBkY2U0YTc2OGQxMA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NjFiMWVmOTQwZmEyYWFjYzk1MzhlOGEzMTk5MzFjODgxYmU1MTFhZGI0NDc1
|
|
10
|
+
NTNhMDM0NzY3ZThkNTE1NjczNzE4NWE4YTU2ZTA4NzczNWZiOGI2ZDcyNWIw
|
|
11
|
+
YmM0MWZkMjZhMGQ5ZjVmYWE5MjZmZWMzMTQwMzQ3YjhiN2RkZmQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
Y2JlYTc0ZDlmOGM1OWU5MjE2NWFmNTdiYjY0ZTA0ZjllZWZhODA4Y2JlYzNk
|
|
14
|
+
YTIzMWViZmI4ZGU2M2U3OGZkZDUwYTc0YWYzZjJjNDMxMTM0Y2FhM2RhOGI5
|
|
15
|
+
MmQ4OGRiNmJlMzFmNjBlYWUxMjAzN2NhYzc0OWEyNjU1ZDVlOGY=
|
data/export.xlsx
CHANGED
|
Binary file
|
|
@@ -42,6 +42,8 @@ module Githubissues
|
|
|
42
42
|
issue.assignee.login unless issue.assignee.nil?
|
|
43
43
|
when 'labels'
|
|
44
44
|
issue.labels.map(&:name).join(', ') unless issue.labels.nil?
|
|
45
|
+
when 'milestone'
|
|
46
|
+
issue.milestone.title unless issue.milestone.nil?
|
|
45
47
|
else
|
|
46
48
|
issue.send field
|
|
47
49
|
end
|
|
@@ -49,4 +51,4 @@ module Githubissues
|
|
|
49
51
|
end
|
|
50
52
|
end
|
|
51
53
|
end
|
|
52
|
-
end
|
|
54
|
+
end
|
|
@@ -16,8 +16,7 @@ module Githubissues
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
def parse_excel
|
|
19
|
-
|
|
20
|
-
creek = Creek::Book.new(path, :check_file_extension => false)
|
|
19
|
+
creek = Creek::Book.new path, :check_file_extension => false
|
|
21
20
|
sheet= creek.sheets[0]
|
|
22
21
|
sheet.rows.each_with_index do |row, row_index|
|
|
23
22
|
break if row.first.nil? and row[1].nil?
|
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.3.
|
|
4
|
+
version: 0.3.3
|
|
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-10 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: github_api
|
|
@@ -122,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
122
122
|
version: '0'
|
|
123
123
|
requirements: []
|
|
124
124
|
rubyforge_project:
|
|
125
|
-
rubygems_version: 2.
|
|
125
|
+
rubygems_version: 2.2.0
|
|
126
126
|
signing_key:
|
|
127
127
|
specification_version: 4
|
|
128
128
|
summary: github-issues-port is a Ruby gem that facilittes easy import and export of
|