Skip to content

Commit 1a62681

Browse files
committed
Update authors/maintainers/copyrights
1 parent e7e7e34 commit 1a62681

File tree

7 files changed

+59
-12
lines changed

7 files changed

+59
-12
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015-2016, David Johnson
1+
Copyright (c) 2015-2016, Servant contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

example/LICENSE

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright (c) 2015-2016, Servant contributors
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
* Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
10+
* Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
* Neither the name of servant-swagger nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+

example/example.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: example
22
version: 0.1.0.0
3-
synopsis: Example usage
4-
description: Example usage
3+
synopsis: servant-swagger demonstration
4+
description: servant-swagger demonstration
55
license: BSD3
66
license-file: LICENSE
7-
author: David Johnson
8-
maintainer: djohnson.m@gmail.com
9-
copyright: David Johnson (c) 2015-2016
7+
author: David Johnson, Nickolay Kudasov
8+
maintainer: nickolay.kudasov@gmail.com
9+
copyright: (c) 2015-2016, Servant contributors
1010
category: Web
1111
build-type: Simple
1212
cabal-version: >=1.10

servant-swagger.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: servant-swagger
22
version: 0.1.2
33
synopsis: Generate Swagger specification for your servant API.
44
description: Please see README.md
5-
homepage: https://github.com/dmjio/servant-swagger
6-
bug-reports: https://github.com/dmjio/servant-swagger/issues
5+
homepage: https://github.com/haskell-servant/servant-swagger
6+
bug-reports: https://github.com/haskell-servant/servant-swagger/issues
77
license: BSD3
88
license-file: LICENSE
9-
author: David Johnson
10-
maintainer: djohnson.m@gmail.com
11-
copyright: David Johnson (c) 2015-2016
9+
author: David Johnson, Nickolay Kudasov
10+
maintainer: nickolay.kudasov@gmail.com
11+
copyright: (c) 2015-2016, Servant contributors
1212
category: Web
1313
build-type: Simple
1414
cabal-version: >=1.10
@@ -19,7 +19,7 @@ extra-source-files:
1919

2020
source-repository head
2121
type: git
22-
location: https://github.com/dmjio/servant-swagger.git
22+
location: https://github.com/haskell-servant/servant-swagger.git
2323

2424
library
2525
ghc-options: -Wall

src/Servant/Swagger.hs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
-- |
2+
-- Module: Servant.Swagger
3+
-- License: BSD3
4+
-- Maintainer: Nickolay Kudasov <[email protected]>
5+
-- Stability: experimental
6+
--
27
-- This module provides means to generate and manipulate
38
-- Swagger specification for servant APIs.
49
--

src/Servant/Swagger/Test.hs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
-- |
2+
-- Module: Servant.Swagger.Test
3+
-- License: BSD3
4+
-- Maintainer: Nickolay Kudasov <[email protected]>
5+
-- Stability: experimental
6+
--
7+
-- Automatic tests for servant API against Swagger spec.
18
module Servant.Swagger.Test (
29
validateEveryToJSON,
310
) where

src/Servant/Swagger/TypeLevel.hs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
-- |
2+
-- Module: Servant.Swagger.TypeLevel
3+
-- License: BSD3
4+
-- Maintainer: Nickolay Kudasov <[email protected]>
5+
-- Stability: experimental
6+
--
7+
-- Useful type families for servant APIs.
18
module Servant.Swagger.TypeLevel (
29
IsSubAPI,
310
EndpointsList,

0 commit comments

Comments
 (0)