Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new version to readme and improve docs #11

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,19 @@ developers a clean and easy-to-use API to initialize, configure and extend web s
- Configuration
- Database
- Repository
- HTTP servers
- gRPC servers
- Telemetry
- HTTP servers 🔜
- gRPC servers 🔜
- Telemetry 🔜
- Logging
- Tracing
- Monitoring
- Utilities
- String manipulation

## Getting started

```shell
go get github.com/gojaguar/jaguar@v0.5.0
go get github.com/gojaguar/jaguar@v0.6.0
```

## Disclaimer
Expand Down
21 changes: 21 additions & 0 deletions strings/ascii.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
// Copyright 2010 The Go Authors. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// - Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// - Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
//
// - Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// Original license: https://github.com/golang/protobuf/blob/master/LICENSE
// Original CamelCase func: https://github.com/golang/protobuf/blob/master/protoc-gen-go/generator/generator.go#L2648

package strings

// Is c an ASCII lower-case letter?
Expand Down
21 changes: 21 additions & 0 deletions strings/camel_case.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
// Copyright 2010 The Go Authors. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// - Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// - Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
//
// - Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// Original license: https://github.com/golang/protobuf/blob/master/LICENSE
// Original CamelCase func: https://github.com/golang/protobuf/blob/master/protoc-gen-go/generator/generator.go#L2648

package strings

// CamelCase is a special case of PascalCase with the difference that
Expand Down
3 changes: 3 additions & 0 deletions strings/doc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Package strings implements simple functions to manipulate UTF-8 encoded strings that are not included in the
// standard library package.
package strings
26 changes: 20 additions & 6 deletions strings/pascal_case.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// The original CamelCase was adapted to PascalCase.
// Copyright 2010 The Go Authors. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// - Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// - Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
//
// - Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// Original license: https://github.com/golang/protobuf/blob/master/LICENSE
// Original CamelCase func: https://github.com/golang/protobuf/blob/master/protoc-gen-go/generator/generator.go#L2648

// Package strings implements simple functions to manipulate UTF-8 encoded strings that are not included in the
// standard library package.
package strings

// PascalCase returns the PascalCased name.
Expand Down
Loading