githubissues-port 0.3.1 → 0.3.2
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/.travis.yml +4 -0
- data/{README.rdoc → Readme.md} +22 -14
- data/githubissues-port.gemspec +0 -1
- data/lib/githubissues-port/version.rb +1 -1
- metadata +4 -17
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ODA2ZmEwZmZiMzhlZGI2NGJiZTQ3ZjZiNGJlMTAwNzlkOGZmNDgyZg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MThjMjNmMGQzMTlmMzUwNzg3ZjIxNmZmNzQzYWEyYjNkY2VhOTNhZQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZDg4OGMzZThjMDQ3NDQ1OGNkZjVlZWE3YzdkMGY5NGFmNDkxMzQ1NDc2YzZl
|
10
|
+
YmM4MGExMDllZTMzZWU3NzFlMWRlMGQ3ZDc3MDZlYTRmYTBiYWU4YTkyZDRj
|
11
|
+
N2Y1NzZjNGNkZjNmNTE1YWEwOTI2OTcxOWFiYzhmZTFkNjVkNzI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MDFlMGE1ZTdjNWU4ZDNjNTdhYzQ1YTNjNDk3ZjhiZjA4MGQzZWFiY2ExODNj
|
14
|
+
MTc4NjZiNWYyY2NkZjFjNDEyMWU3YzdhZDljM2YxYzQyNGJhMjQ2NjVlMDUy
|
15
|
+
MGZjMTRhOTdiM2ZiNmQ1MTAyOWY0ZmE5NWM2MjE2OGNhZWQyZWU=
|
data/.travis.yml
ADDED
data/{README.rdoc → Readme.md}
RENAMED
@@ -1,21 +1,27 @@
|
|
1
|
-
|
1
|
+
[](https://travis-ci.org/github-issues-port/githubissues-port)[](http://badge.fury.io/rb/githubissues-port)[](https://bitdeli.com/free "Bitdeli Badge")
|
2
2
|
|
3
|
-
|
3
|
+
# Github Issues Port
|
4
4
|
|
5
|
-
|
5
|
+
Ever Felt the need of Exporting your Github Issues or Importing the issues in Github via a Excel. **githubissues-port** is your answer. :neckbeard:.
|
6
6
|
|
7
|
+
**githubissues-port** can be used from the command line or as part of a Ruby web framework.
|
7
8
|
|
8
|
-
|
9
|
+
#### Sample Application
|
9
10
|
|
10
|
-
|
11
|
+
[Sample Application with usage can be found here](http://mysterious-springs-2093.herokuapp.com/)
|
12
|
+
|
13
|
+
### Installation
|
14
|
+
|
15
|
+
To install the gem using terminal, run the following command:
|
11
16
|
|
12
17
|
gem install githubissues-port
|
13
18
|
|
14
|
-
To use it in
|
19
|
+
To use it in rails application add the gem to the Gemfile:
|
20
|
+
|
21
|
+
gem "githubissues-port"
|
15
22
|
|
16
|
-
|
23
|
+
### Basic Usage
|
17
24
|
|
18
|
-
== Basic Usage
|
19
25
|
githubissues-port can simply import or export issues from an Excel file.:
|
20
26
|
|
21
27
|
require 'githubissues-port'
|
@@ -30,12 +36,14 @@ githubissues-port can simply import or export issues from an Excel file.:
|
|
30
36
|
connection = Github.new(basic_auth: "#{your_github_username}:#{your_github_password}")
|
31
37
|
|
32
38
|
# The import mudule will import issues from Excel, creates an issue if the number blank, otherwise, updating an existing issue by looking up the issue number.
|
39
|
+
|
33
40
|
Githubissues::Port::Import.new(connection, owner, repo, 'import.xlsx', fields: ['title', 'labels'])
|
34
41
|
|
35
42
|
# The export module will export issues to Excel.
|
43
|
+
|
36
44
|
Githubissues::Port::Export.new(connection, owner, repo, 'export.xlsx', fields: ['number', 'title', 'body', 'labels'])
|
37
45
|
|
38
|
-
|
46
|
+
### Contributing
|
39
47
|
|
40
48
|
Contributions are welcomed. You can fork a repository, add your code changes to the forked branch, ensure all existing unit tests pass, create new unit tests cover your new changes and finally create a pull request.
|
41
49
|
|
@@ -47,14 +55,14 @@ to install the development gem dependecies:
|
|
47
55
|
|
48
56
|
githubissues-port this is complete, you should be able to run the test suite:
|
49
57
|
|
50
|
-
rake
|
58
|
+
rake spec
|
51
59
|
|
52
60
|
|
53
|
-
|
61
|
+
### Bug Reporting
|
54
62
|
|
55
|
-
Please use the
|
63
|
+
Please use the [Issues](https://github.com/githubissues-port/githubissues-port/issues) page to report bugs or suggest new enhancements.
|
56
64
|
|
57
65
|
|
58
|
-
|
66
|
+
### License
|
59
67
|
|
60
|
-
|
68
|
+
githubissues-port has been published under [MIT License](https://github.com/githubissues-port/githubissues-port/blob/master/LICENSE.txt])
|
data/githubissues-port.gemspec
CHANGED
@@ -20,7 +20,6 @@ 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 'faraday','0.8.0'
|
24
23
|
spec.add_dependency 'creek'
|
25
24
|
spec.add_dependency 'axlsx','~> 2.0.1'
|
26
25
|
spec.add_development_dependency 'rake', '~>10.1.1'
|
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.2
|
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-03 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: github_api
|
@@ -26,20 +26,6 @@ dependencies:
|
|
26
26
|
- - ! '>='
|
27
27
|
- !ruby/object:Gem::Version
|
28
28
|
version: '0'
|
29
|
-
- !ruby/object:Gem::Dependency
|
30
|
-
name: faraday
|
31
|
-
requirement: !ruby/object:Gem::Requirement
|
32
|
-
requirements:
|
33
|
-
- - '='
|
34
|
-
- !ruby/object:Gem::Version
|
35
|
-
version: 0.8.0
|
36
|
-
type: :runtime
|
37
|
-
prerelease: false
|
38
|
-
version_requirements: !ruby/object:Gem::Requirement
|
39
|
-
requirements:
|
40
|
-
- - '='
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
version: 0.8.0
|
43
29
|
- !ruby/object:Gem::Dependency
|
44
30
|
name: creek
|
45
31
|
requirement: !ruby/object:Gem::Requirement
|
@@ -103,10 +89,11 @@ extensions: []
|
|
103
89
|
extra_rdoc_files: []
|
104
90
|
files:
|
105
91
|
- .gitignore
|
92
|
+
- .travis.yml
|
106
93
|
- Gemfile
|
107
94
|
- LICENSE.txt
|
108
|
-
- README.rdoc
|
109
95
|
- Rakefile
|
96
|
+
- Readme.md
|
110
97
|
- export.xlsx
|
111
98
|
- githubissues-port.gemspec
|
112
99
|
- lib/githubissues-port.rb
|