Skip to content
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
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# webless

TODO: Write a description here
Webless is an HTTP Client that doesn't make real HTTP requests. It's used for testing calls,
but much faster since it does not make any network calls.

## Installation

Expand All @@ -9,7 +10,7 @@ TODO: Write a description here
```yaml
dependencies:
webless:
github: matthewmcgarvey/webless
github: crystal-loot/webless
```

2. Run `shards install`
Expand All @@ -24,16 +25,20 @@ TODO: Write usage instructions here

## Development

TODO: Write development instructions here
1. Write code
2. Write spec
3. `crystal spec`
4. `crystal tool format spec src`
5. `./bin/ameba`

## Contributing

1. Fork it (<https://github.com/matthewmcgarvey/webless/fork>)
1. Fork it (<https://github.com/crystal-loot/webless/fork>)
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

## Contributors

- [matthewmcgarvey](https://github.com/matthewmcgarvey) - creator and maintainer
- [matthewmcgarvey](https://github.com/matthewmcgarvey) - creator
4 changes: 2 additions & 2 deletions shard.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: webless
version: 0.1.0
version: 0.2.0

authors:
- matthewmcgarvey <matthewmcgarvey14@gmail.com>

crystal: ">= 1.0.0"
crystal: ">= 1.14.0"

license: MIT

Expand Down
2 changes: 1 addition & 1 deletion src/webless.cr
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ require "./webless/client"
require "./webless/request_builder"

module Webless
VERSION = "0.1.0"
VERSION = "0.2.0"
DEFAULT_HOST = "example.com"
end