githubissues-port 0.1.3 → 0.1.4
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/README.rdoc +2 -2
- data/githubissues-port.gemspec +4 -2
- data/lib/githubissues-port/version.rb +1 -1
- metadata +30 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
OGIyNDMyMDNmZTRiZTZkZjRlYTBkNGNhYjc2YzE5YzE3N2RmZTdhZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MzJjM2M1ZjczYjc4OWFlNDZkOTJmNzQ0NmYwNjhkYWQzNTQ3YWYzMw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NzM0YTI2MjA1ODE5YzIyZTdkZDNhNmQzYTQ3ZDhiYWFmYjYzNWI5ZjJmN2Vi
|
10
|
+
ZTY3NWY3OWNhMGQ4MTNiYzI1MzM3ZGEwZWFlY2NlNmI0ZWNkNTMwOGNkN2Uw
|
11
|
+
MjgwMjVjMmMwNjRlYWUyZTAxYjc4N2I3ZmFhOWQ3N2U3YjA1OWI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NmZjMmM4NjlmMWQ2ODViMmM4MGYzZGQ4NTg2N2U5OWRlOTFiZjRiMWJhOGVk
|
14
|
+
OGJiZTJmZWQxNTI0YzMwZWMwODJmNjNmN2IyMWU2YjdkYTJiNmY3NmRjMGU3
|
15
|
+
N2I0MDlmMzZkNWM3OTBlYTk4Y2Q3YmU0YTBkMmM2ZWYyNmUzMzQ=
|
data/README.rdoc
CHANGED
@@ -28,9 +28,9 @@ githubissues-port can simply import or export issues from an Excel file.:
|
|
28
28
|
|
29
29
|
connection = Github.new basic_auth: "#{your_github_username}:#{your_github_password}"
|
30
30
|
|
31
|
-
Githubissues::Port::Import.new connection, owner, repo, 'import.xlsx'
|
31
|
+
Githubissues::Port::Import.new connection, owner, repo, 'import.xlsx', fields: ['labels']
|
32
32
|
|
33
|
-
Githubissues::Port::Export.new connection, owner, repo, 'export.xlsx'
|
33
|
+
Githubissues::Port::Export.new connection, owner, repo, 'export.xlsx', fields: ['number', 'title', 'body', 'labels']
|
34
34
|
|
35
35
|
== Contributing
|
36
36
|
|
data/githubissues-port.gemspec
CHANGED
@@ -20,6 +20,8 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.required_ruby_version = '>= 1.9.2'
|
21
21
|
|
22
22
|
spec.add_dependency 'github_api'
|
23
|
-
spec.add_dependency 'axlsx'
|
24
|
-
spec.add_dependency 'creek'
|
23
|
+
spec.add_dependency 'axlsx'
|
24
|
+
spec.add_dependency 'creek'
|
25
|
+
spec.add_development_dependency 'rake', '~>10.1.1'
|
26
|
+
spec.add_development_dependency 'rspec'
|
25
27
|
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.1.
|
4
|
+
version: 0.1.4
|
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-01-
|
13
|
+
date: 2014-01-31 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: github_api
|
@@ -54,6 +54,34 @@ dependencies:
|
|
54
54
|
- - ! '>='
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: '0'
|
57
|
+
- !ruby/object:Gem::Dependency
|
58
|
+
name: rake
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ~>
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 10.1.1
|
64
|
+
type: :development
|
65
|
+
prerelease: false
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ~>
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 10.1.1
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: rspec
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
type: :development
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ! '>='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
57
85
|
description: An Excel import/export extension for github issues in Ruby.
|
58
86
|
email:
|
59
87
|
executables: []
|