forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request flutter#18 from srawlins/pedantic
Add example; bump pedantic
- Loading branch information
Showing
5 changed files
with
19 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
language: dart | ||
|
||
dart: | ||
- 2.1.0 | ||
- 2.1.1 | ||
- dev | ||
|
||
dart_task: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import 'package:http_multi_server/http_multi_server.dart'; | ||
import 'package:shelf/shelf.dart' as shelf; | ||
import 'package:shelf/shelf_io.dart' as shelf_io; | ||
|
||
void main() async { | ||
// Both http://127.0.0.1:8080 and http://[::1]:8080 will be bound to the same | ||
// server. | ||
var server = await HttpMultiServer.loopback(8080); | ||
shelf_io.serveRequests(server, (request) { | ||
return shelf.Response.ok("Hello, world!"); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,12 +7,12 @@ author: Dart Team <[email protected]> | |
homepage: https://github.com/dart-lang/http_multi_server | ||
|
||
environment: | ||
sdk: '>=2.1.0 <3.0.0' | ||
sdk: '>=2.1.1 <3.0.0' | ||
|
||
dependencies: | ||
async: '>=1.2.0 <3.0.0' | ||
|
||
dev_dependencies: | ||
http: ^0.12.0 | ||
pedantic: ^1.4.0 | ||
pedantic: ^1.8.0 | ||
test: ^1.5.2 |