Skip to content

Commit

Permalink
Merge branch 'go'
Browse files Browse the repository at this point in the history
  • Loading branch information
utahta committed Jan 8, 2018
2 parents e8e4da5 + e50736c commit 93a932c
Show file tree
Hide file tree
Showing 129 changed files with 2,902 additions and 6,564 deletions.
13 changes: 2 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
.DS_Store
._src.crx
.project
.pydevproject
.settings
.tmp_*
*.pyc
pythonbrew.egg-info
dist
__pycache__
*.swp
.idea
*.iml
build
*.egg
.coverage
vendor
dist
26 changes: 8 additions & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,10 @@
language: python

python:
- 2.7
- 3.4

env:
global:
- PYTHONBREW_ROOT=$HOME/tmp/.pythonbrew
- PYTHONBREW_HOME=$HOME/tmp/.pythonbrew

language: go
go:
- 1.9
sudo: false
install:
- python setup.py install
- pip install coveralls

- wget -q https://github.com/golang/dep/releases/download/v0.3.2/dep-linux-amd64 -O dep
- chmod +x dep
- ./dep ensure
script:
- coverage run --source=pythonbrew setup.py test

after_success:
- coveralls
- make test
148 changes: 0 additions & 148 deletions ChangeLog

This file was deleted.

117 changes: 117 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 49 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"


[[constraint]]
name = "github.com/fatih/color"
version = "1.5.0"

[[constraint]]
branch = "master"
name = "github.com/jessevdk/go-assets"

[[constraint]]
name = "github.com/mattn/go-colorable"
version = "0.0.9"

[[constraint]]
branch = "master"
name = "github.com/pkg/errors"

[[constraint]]
name = "github.com/utahta/go-cronowriter"
version = "1.1.0"

[[constraint]]
name = "github.com/blang/semver"
version = "3.5.1"

[[constraint]]
branch = "master"
name = "github.com/rhysd/go-github-selfupdate"
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2017 Yuta Uekusa

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
3 changes: 0 additions & 3 deletions MANIFEST.in

This file was deleted.

Loading

0 comments on commit 93a932c

Please sign in to comment.