-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
misc: support latest pkg:gcloud, other cleanup (#131)
* misc: support latest pkg:gcloud, other cleanup * Update CHANGELOG.md * Update pubspec.yaml
- Loading branch information
1 parent
fe4d830
commit 5ad1009
Showing
5 changed files
with
17 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,10 +1,3 @@ | ||
.buildlog | ||
.DS_Store | ||
.idea | ||
.project | ||
.pub/ | ||
.settings/ | ||
build | ||
packages | ||
.dart_tool/ | ||
.packages | ||
pubspec.lock | ||
.packages |
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,8 +1,15 @@ | ||
language: dart | ||
|
||
dart: | ||
- dev | ||
- stable | ||
|
||
dart_task: | ||
- test: --platform vm | ||
|
||
# Only building master means that we don't run two builds for each pull request. | ||
branches: | ||
only: [master] | ||
|
||
cache: | ||
directories: | ||
- $HOME/.pub-cache |
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 was deleted.
Oops, something went wrong.
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,21 +1,24 @@ | ||
name: rpc | ||
version: 0.6.0-dev.1 | ||
version: 0.6.0 | ||
author: Dart Team <[email protected]> | ||
description: Library for exposing Dart server-side APIs. | ||
homepage: https://github.com/dart-lang/rpc | ||
|
||
environment: | ||
sdk: '>=2.0.0-dev.69.0 <3.0.0' | ||
|
||
dependencies: | ||
args: ^1.4.4 | ||
collection: '>=1.1.1 <2.0.0' | ||
convert: ^2.0.1 | ||
crypto: '>=1.0.0 <3.0.0' | ||
discoveryapis_generator: ^0.9.8 | ||
gcloud: '>=0.2.0+12 <0.6.0' | ||
gcloud: '>=0.2.0+12 <0.7.0' | ||
http_parser: '>=2.0.0 <4.0.0' | ||
logging: '>=0.9.3 <0.12.0' | ||
mime: '>=0.9.3 <1.0.0' | ||
path: '>=1.3.4 <2.0.0' | ||
uri: ^0.11.3 | ||
|
||
dev_dependencies: | ||
test: ^1.2.0 |