Skip to content

Commit 39e66e7

Browse files
committed
Clean up git repo and rewrite history
To checkin code of our slack bot all previous commits can be omitted
1 parent ecb43fc commit 39e66e7

13 files changed

+18
-257
lines changed

.gitattributes

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
11
# Git attributes to ignore selection of files and directories
22
# when publishing any of releases release.
3-
.* export-ignore
4-
tests export-ignore
5-
vendor export-ignore
63

7-
*.php diff=php
8-
* text=auto
9-
* eol=lf
10-
*.md text
11-
.gitattributes text
12-
.gitignore text
13-
.scrutinizer.yml text
14-
.travis.yml text
15-
composer.json text
16-
LICENSE text
4+
vendor export-ignore

.gitignore

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +0,0 @@
1-
# Files and directories to ignore
2-
.buildpath
3-
composer.phar
4-
composer.lock
5-
6-
/tests/results/log/*
7-
/tests/results/report/*
8-
/tests/results/testdox.html
9-
10-
/tmp/*
11-
!/tmp/.dirstamp
12-
/vendor/*
13-
!/vendor/.dirstamp
14-
.project
15-
16-
# Directories files to keep
17-
!/tests/results/log/.gitkeep
18-
!/tests/results/report/.gitkeep
19-
!/tmp/.gitkeep
20-
!/vendor/.gitkeep

.scrutinizer.yml

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

.travis.yml

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,6 @@
1-
language: php
1+
language: go
22

3-
php:
4-
- 7.0
5-
- 7.0.8
6-
- nightly
7-
8-
before_script:
9-
- pip install --user codecov
10-
- cd /home/travis/build/aframevr/slackoverflow
11-
- composer install
12-
- cd $TRAVIS_BUILD_DIR/tests
13-
14-
script:
15-
- phpunit --coverage-clover="../coverage.clover"
16-
17-
after_success:
18-
- bash <(curl -s https://codecov.io/bash)
19-
- cd "../"
20-
- wget https://scrutinizer-ci.com/ocular.phar
21-
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
3+
go:
4+
- 1.7
5+
- 1.8
6+
- tip

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright © 2016 A-Frame authors.
3+
Copyright © 2016 -2017 A-Frame authors.
44

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

README.md

Lines changed: 6 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,16 @@
11
# SlackOverflow
22

3-
> Web hook that posts tagged Stack Overflow questions to Slack, updated using reaction emojis<br>
4-
> Work in progress...
3+
> Web hook that posts tagged Stack Overflow questions to Slack, updated using reaction emojis
4+
> Work in progress...
55
6-
[![Minimum PHP Version][php-image]][php-url]
76
[![GitHub license][license-image]][license-url]
8-
[![Latest version][packagist-v-image]][packagist-url]
9-
[![Downloads total][packagist-dt-image]][packagist-url]
10-
11-
##### Development and Contributing
12-
13-
[![Coding Standards][psr-image]][psr-url]
147
[![Build Status][travis-ci-image]][travis-ci-url]
15-
[![Scrutinizer Code Quality][scrutinizer-image]][scrutinizer-url]
16-
[![codecov][codecov-image]][codecov-url]
17-
188

199
<!-- ASSETS and LINKS -->
20-
<!-- PHP FIG-->
21-
[psr-image]: https://img.shields.io/badge/cs-PSR--2-237551.svg?style=flat-square
22-
[psr-url]: http://www.php-fig.org/
23-
<!-- PHP Version -->
24-
[php-image]: https://img.shields.io/badge/php-%3E%3D%207.0-8892BF.svg?style=flat-square
25-
[php-url]: https://php.net/
26-
<!-- License -->
27-
[license-image]: https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square
28-
[license-url]: https://raw.githubusercontent.com/aframevr/slackoverflow/master/LICENSE
2910
<!-- travis-ci -->
3011
[travis-ci-image]: https://travis-ci.org/aframevr/slackoverflow.svg?branch=master
3112
[travis-ci-url]: https://travis-ci.org/aframevr/slackoverflow
32-
<!-- packagist -->
33-
[packagist-v-image]: https://img.shields.io/packagist/v/aframevr/slackoverflow.svg?style=flat-square
34-
[packagist-dt-image]: http://img.shields.io/packagist/dt/aframevr/slackoverflow.svg?style=flat-square
35-
[packagist-url]: https://packagist.org/packages/aframevr/slackoverflow
36-
<!-- Scrutinizer -->
37-
[scrutinizer-image]: https://scrutinizer-ci.com/g/mkungla/slackoverflow/badges/quality-score.png?b=master
38-
[scrutinizer-url]: https://scrutinizer-ci.com/g/mkungla/slackoverflow/?branch=master
39-
<!-- codecov -->
40-
[codecov-image]: https://codecov.io/gh/aframevr/slackoverflow/branch/master/graph/badge.svg
41-
[codecov-url]: https://codecov.io/gh/aframevr/slackoverflow
13+
14+
<!-- License -->
15+
[license-image]: https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square
16+
[license-url]: https://raw.githubusercontent.com/aframevr/slackoverflow/master/LICENSE

composer.json

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

main.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Web hook that posts tagged Stack Overflow questions to Slack, updated using reaction emojis.
2+
// See README.md for usage.
3+
package main
4+
5+
func main() {}

src/.dirstamp

Whitespace-only changes.

tests/.dirstamp

Whitespace-only changes.

tmp/.dirstamp

Whitespace-only changes.

vendor/.dirstamp

Whitespace-only changes.
File renamed without changes.

0 commit comments

Comments
 (0)