Skip to content

Commit 93a932c

Browse files
committed
Merge branch 'go'
2 parents e8e4da5 + e50736c commit 93a932c

File tree

129 files changed

+2902
-6564
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+2902
-6564
lines changed

.gitignore

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
11
.DS_Store
2-
._src.crx
3-
.project
4-
.pydevproject
5-
.settings
6-
.tmp_*
7-
*.pyc
8-
pythonbrew.egg-info
9-
dist
10-
__pycache__
112
*.swp
123
.idea
134
*.iml
14-
build
15-
*.egg
165
.coverage
6+
vendor
7+
dist

.travis.yml

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,10 @@
1-
language: python
2-
3-
python:
4-
- 2.7
5-
- 3.4
6-
7-
env:
8-
global:
9-
- PYTHONBREW_ROOT=$HOME/tmp/.pythonbrew
10-
- PYTHONBREW_HOME=$HOME/tmp/.pythonbrew
11-
1+
language: go
2+
go:
3+
- 1.9
4+
sudo: false
125
install:
13-
- python setup.py install
14-
- pip install coveralls
15-
6+
- wget -q https://github.com/golang/dep/releases/download/v0.3.2/dep-linux-amd64 -O dep
7+
- chmod +x dep
8+
- ./dep ensure
169
script:
17-
- coverage run --source=pythonbrew setup.py test
18-
19-
after_success:
20-
- coveralls
10+
- make test

ChangeLog

Lines changed: 0 additions & 148 deletions
This file was deleted.

Gopkg.lock

Lines changed: 117 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Gopkg.toml example
2+
#
3+
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
4+
# for detailed Gopkg.toml documentation.
5+
#
6+
# required = ["github.com/user/thing/cmd/thing"]
7+
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
8+
#
9+
# [[constraint]]
10+
# name = "github.com/user/project"
11+
# version = "1.0.0"
12+
#
13+
# [[constraint]]
14+
# name = "github.com/user/project2"
15+
# branch = "dev"
16+
# source = "github.com/myfork/project2"
17+
#
18+
# [[override]]
19+
# name = "github.com/x/y"
20+
# version = "2.4.0"
21+
22+
23+
[[constraint]]
24+
name = "github.com/fatih/color"
25+
version = "1.5.0"
26+
27+
[[constraint]]
28+
branch = "master"
29+
name = "github.com/jessevdk/go-assets"
30+
31+
[[constraint]]
32+
name = "github.com/mattn/go-colorable"
33+
version = "0.0.9"
34+
35+
[[constraint]]
36+
branch = "master"
37+
name = "github.com/pkg/errors"
38+
39+
[[constraint]]
40+
name = "github.com/utahta/go-cronowriter"
41+
version = "1.1.0"
42+
43+
[[constraint]]
44+
name = "github.com/blang/semver"
45+
version = "3.5.1"
46+
47+
[[constraint]]
48+
branch = "master"
49+
name = "github.com/rhysd/go-github-selfupdate"

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 Yuta Uekusa
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

MANIFEST.in

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)