Skip to content

Commit 159f3b6

Browse files
committed
Update project
Signed-off-by: Uilian Ries <uilianries@gmail.com>
1 parent 3f55baf commit 159f3b6

13 files changed

+494
-423
lines changed

.travis/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ fi
1212

1313
python setup.py sdist
1414
pushd tests
15-
pytest -v -s --cov=conan_clang_update
15+
pytest -v -s --cov=bincrafters_conventions
1616
mv .coverage ..
1717
popd

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2018 Uilian Ries
1+
Copyright (c) 2018 Bincrafters
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[![Build Status: Linux and Macos](https://travis-ci.org/uilianries/conan-clang-update.svg?branch=master)](https://travis-ci.org/uilianries/conan-clang-update)
2-
[![Build status: Windows](https://ci.appveyor.com/api/projects/status/github/uilianries/conan-clang-update?svg=true)](https://ci.appveyor.com/project/uilianries/conan-clang-update)
3-
[![codecov](https://codecov.io/gh/uilianries/conan-clang-update/branch/master/graph/badge.svg)](https://codecov.io/gh/uilianries/conan-clang-update)
4-
[![Pypi Download](https://img.shields.io/badge/download-pypi-blue.svg)](https://pypi.python.org/pypi/conan-clang-update)
1+
[![Build Status: Linux and Macos](https://travis-ci.org/bincrafters/bincrafters-conventions.svg?branch=master)](https://travis-ci.org/bincrafters/bincrafters-conventions)
2+
[![Build status: Windows](https://ci.appveyor.com/api/projects/status/github/bincrafters/bincrafters-conventions?svg=true)](https://ci.appveyor.com/project/bincrafters/bincrafters-conventions)
3+
[![codecov](https://codecov.io/gh/bincrafters/bincrafters-conventions/branch/master/graph/badge.svg)](https://codecov.io/gh/bincrafters/bincrafters-conventions)
4+
[![Pypi Download](https://img.shields.io/badge/download-pypi-blue.svg)](https://pypi.python.org/pypi/bincrafters-conventions)
55

66
# Conan Clang Update
77

@@ -20,36 +20,36 @@ If you want to install by local copy
2020
##### Remote
2121
Or if you want to download our pip package
2222

23-
pip install conan_clang_update
23+
pip install bincrafters_conventions
2424

2525
#### RUN
26-
To update **ALL** Conan projects on Github https://github.com/uilianries
26+
To update **ALL** Conan projects on Github https://github.com/bincrafters
2727

28-
$ conan_clang_update --remote=uilianries
28+
$ bincrafters_conventions --remote=bincrafters
2929

30-
To update **ONLY** one project on Github https://github.com/uilianries/conan-libusb
30+
To update **ONLY** one project on Github https://github.com/bincrafters/conan-conversion
3131

32-
$ conan_clang_update --remote=uilianries/conan-libusb
32+
$ bincrafters_conventions --remote=bincrafters/conan-double-conversion
3333

3434
To **AVOID** to execute push command after to update
3535

36-
$ conan_clang_update --remote=uilianries/conan-libusb --skip-push
36+
$ bincrafters_conventions --remote=bincrafters/conan-libusb --dry-run
3737

3838
To filter **PROJECTS** by pattern
3939

40-
$ conan_clang_update --remote=uilianries --project-pattern uilianries/conan-*
40+
$ bincrafters_conventions --remote=bincrafters --project-pattern bincrafters/conan-*
4141

4242
To filter **BRANCHES** by pattern
4343

44-
$ conan_clang_update --remote=uilianries --branch-pattern stable/*
44+
$ bincrafters_conventions --remote=bincrafters --branch-pattern stable/*
4545

4646
or
4747

48-
$ conan_clang_update --remote=uilianries/conan-libzip --branch-pattern stable/*
48+
$ bincrafters_conventions --remote=bincrafters/conan-libzip --branch-pattern stable/*
4949

5050
To update a **LOCAL** file
5151

52-
$ conan_clang_update --file=.travis.yml
52+
$ bincrafters_conventions --file=.travis.yml
5353

5454

5555
##### Testing and Development
@@ -61,15 +61,15 @@ To install extra packages required to test
6161
#### TESTING
6262
To run all unit test + code coverage, just execute:
6363

64-
pip install -r conan_clang_update/requirements_test.txt
64+
pip install -r bincrafters_conventions/requirements_test.txt
6565
cd tests
66-
pytest -v --cov=conan_clang_update
66+
pytest -v --cov=bincrafters_conventions
6767

6868

6969
#### REQUIREMENTS and DEVELOPMENT
7070
To develop or run conan clang update
7171

72-
pip install -r conan_clang_update/requirements.txt
72+
pip install -r bincrafters_conventions/requirements.txt
7373

7474

7575
#### UPLOAD

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ install:
1515

1616
test_script:
1717
- cd tests
18-
- pytest -v --cov=conan_clang_update
18+
- pytest -v --cov=bincrafters_conventions
File renamed without changes.

0 commit comments

Comments
 (0)