lab2hub 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b8de7a06271a4657d2c9f3f3a74fd891ee3a81af
4
- data.tar.gz: 9f6c3edb0a74e119023c2a1ded36b637765ade92
3
+ metadata.gz: 7af3d89f56b78dc9d483166092a8b7f4d408e542
4
+ data.tar.gz: 09a5b54e4924fcabedf71c9fd8cf7b0ae48f24c3
5
5
  SHA512:
6
- metadata.gz: 038a4c668b19d4552889154697000b77e00f4b7a09688ba9dbec93791a33e0df75a84330e9778daa30844e11bef7586ca1cbf7927094978b441424c061816d61
7
- data.tar.gz: 94e06897a386ed0cd8a7b64a582e93940a2544e7a007cd280cc359cb3562783d14047dc1c9ccb4a8f0198792a40d63c844fc3a8e79e17cfe308cb039fd3c038b
6
+ metadata.gz: af3304202efe5b6ac8df619b4d7d578f43479f80994ba999b10449b042e755062e35dae6acb8c47aca87dcb1615dbab4cd00aea00edf80b84e1290abd96713cb
7
+ data.tar.gz: 7b0f828cdbf61e48cf6b6f57c597650ee840e51a6e645dab144ab1a34b59f273540c485f5c1948ae1bc7d1081e3125b4b03150a2451a810555f6973616a9ce8e
data/README.md CHANGED
@@ -1,3 +1,4 @@
1
+ [![Gem Version](https://badge.fury.io/rb/lab2hub.svg)](https://badge.fury.io/rb/lab2hub)
1
2
  # Lab2hub
2
3
 
3
4
  Easily migrate your projects from GitLab to GitHub.
@@ -17,6 +18,13 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
17
18
 
18
19
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
19
20
 
21
+ ### References
22
+
23
+ - [GitHub API v3 Documentation](https://developer.github.com/v3/)
24
+ - [GitLab API Documentation](http://docs.gitlab.com/ce/api/README.html)
25
+ - [NARKOZ/gitlab](https://github.com/NARKOZ/gitlab)
26
+ - [piotrmurach/github](https://github.com/piotrmurach/github)
27
+
20
28
  ## Contributing
21
29
 
22
30
  Bug reports and pull requests are welcome on GitHub at https://github.com/buo/lab2hub.
data/exe/lab2hub CHANGED
@@ -74,6 +74,7 @@ begin
74
74
  repo = github.repos.create({
75
75
  name: project.name,
76
76
  description: project.description,
77
+ homepage: nil,
77
78
  private: !project.public
78
79
  })
79
80
  puts repo
@@ -1,3 +1,3 @@
1
1
  module Lab2hub
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lab2hub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - buo