diff --git a/LICENSE b/LICENSE index 3f0264f..c0f3a90 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2018 centraldereservas.com +Copyright (c) 2018 daniel-gil 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: diff --git a/README.md b/README.md index cb3eeb7..4578b54 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# intervals [![Build Status](https://travis-ci.org/centraldereservas/intervals.svg?branch=master)](https://travis-ci.org/centraldereservas/intervals) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![GoDoc](https://godoc.org/github.com/centraldereservas/intervals?status.svg)](https://godoc.org/github.com/centraldereservas/intervals) +# intervals [![Build Status](https://travis-ci.org/daniel-gil/intervals.svg?branch=master)](https://travis-ci.org/daniel-gil/intervals) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![GoDoc](https://godoc.org/github.com/daniel-gil/intervals?status.svg)](https://godoc.org/github.com/daniel-gil/intervals) Provides a helper to work with integer intervals detecting gaps, merged and overlapped sections. ## Installation ```sh -go get github.com/centraldereservas/intervals +go get github.com/daniel-gil/intervals ``` ## Motivation @@ -161,5 +161,5 @@ The next image is another example where `lowInclusive` is `true` but `highInclus This project is under the [MIT License][mit]. -[mit]: https://github.com/centraldereservas/intervals/blob/master/LICENSE -[doc]: https://godoc.org/github.com/centraldereservas/intervals \ No newline at end of file +[mit]: https://github.com/daniel-gil/intervals/blob/master/LICENSE +[doc]: https://godoc.org/github.com/daniel-gil/intervals \ No newline at end of file diff --git a/demo_test.go b/demo_test.go index ad0aa0a..1ca07ae 100644 --- a/demo_test.go +++ b/demo_test.go @@ -4,7 +4,7 @@ import ( "fmt" "math" - "github.com/centraldereservas/intervals" + "github.com/daniel-gil/intervals" ) type demo struct { diff --git a/example/main.go b/example/main.go index a1aedb0..25f04c7 100644 --- a/example/main.go +++ b/example/main.go @@ -6,7 +6,7 @@ import ( "log" "os" - "github.com/centraldereservas/intervals" + "github.com/daniel-gil/intervals" ) const ( diff --git a/find_test.go b/find_test.go index 0bc9d9a..08d336c 100644 --- a/find_test.go +++ b/find_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/centraldereservas/intervals" + "github.com/daniel-gil/intervals" ) func initIntervalsForDemo001() intervals.Intervals { diff --git a/gaps_test.go b/gaps_test.go index a1b151c..305dc70 100644 --- a/gaps_test.go +++ b/gaps_test.go @@ -3,7 +3,7 @@ package intervals_test import ( "testing" - "github.com/centraldereservas/intervals" + "github.com/daniel-gil/intervals" ) func TestGaps(t *testing.T) { diff --git a/merge_test.go b/merge_test.go index 5ab62ad..cdff79a 100644 --- a/merge_test.go +++ b/merge_test.go @@ -3,7 +3,7 @@ package intervals_test import ( "testing" - "github.com/centraldereservas/intervals" + "github.com/daniel-gil/intervals" ) func TestMerge(t *testing.T) { diff --git a/overlap_test.go b/overlap_test.go index 4208f95..4b59e85 100644 --- a/overlap_test.go +++ b/overlap_test.go @@ -3,7 +3,7 @@ package intervals_test import ( "testing" - "github.com/centraldereservas/intervals" + "github.com/daniel-gil/intervals" ) func TestOverlapped(t *testing.T) { diff --git a/report_test.go b/report_test.go index c86414e..b428f82 100644 --- a/report_test.go +++ b/report_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/centraldereservas/intervals" + "github.com/daniel-gil/intervals" ) func TestReport(t *testing.T) {