Skip to content

Commit

Permalink
chore(config): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
falsandtru committed Oct 9, 2016
1 parent bc0a97c commit 11c64ad
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 26 deletions.
12 changes: 8 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ GEM
execjs
coffee-script-source (1.10.0)
colorator (1.1.0)
connection_pool (2.2.0)
ethon (0.9.1)
ffi (>= 1.3.0)
execjs (2.7.0)
Expand All @@ -31,20 +32,21 @@ GEM
multi_json (~> 1.0)
net-http-persistent (>= 2.7)
net-http-pipeline
github-pages (96)
github-pages (98)
activesupport (= 4.2.7)
github-pages-health-check (= 1.2.0)
jekyll (= 3.2.1)
jekyll-coffeescript (= 1.0.1)
jekyll-feed (= 0.5.1)
jekyll-gist (= 1.4.0)
jekyll-github-metadata (= 2.0.2)
jekyll-github-metadata (= 2.1.1)
jekyll-mentions (= 1.2.0)
jekyll-paginate (= 1.1.0)
jekyll-redirect-from (= 0.11.0)
jekyll-sass-converter (= 1.3.0)
jekyll-seo-tag (= 2.0.0)
jekyll-sitemap (= 0.10.0)
jekyll-swiss (= 0.4.0)
jemoji (= 0.7.0)
kramdown (= 1.11.1)
liquid (= 3.0.6)
Expand Down Expand Up @@ -79,7 +81,7 @@ GEM
jekyll-feed (0.5.1)
jekyll-gist (1.4.0)
octokit (~> 4.2)
jekyll-github-metadata (2.0.2)
jekyll-github-metadata (2.1.1)
jekyll (~> 3.1)
octokit (~> 4.0)
jekyll-mentions (1.2.0)
Expand All @@ -94,6 +96,7 @@ GEM
jekyll-seo-tag (2.0.0)
jekyll (~> 3.1)
jekyll-sitemap (0.10.0)
jekyll-swiss (0.4.0)
jekyll-watch (1.5.0)
listen (~> 3.0, < 3.1)
jemoji (0.7.0)
Expand All @@ -116,7 +119,8 @@ GEM
multi_json (1.12.1)
multipart-post (2.0.0)
net-dns (0.8.0)
net-http-persistent (2.9.4)
net-http-persistent (3.0.0)
connection_pool (~> 2.2)
net-http-pipeline (1.0.1)
nokogiri (1.6.8.1-x64-mingw32)
mini_portile2 (~> 2.1.0)
Expand Down
20 changes: 2 additions & 18 deletions localsocket.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,29 +73,13 @@
= 'send'
| 'recv';

// spica@0.0.0
class Observable<T extends Array<string | number>, D, R>
implements Observer<T, D, R>, Publisher<T, D, R> {
monitor(type: T, subscriber: Subscriber<D, R>): () => void;
on(type: T, subscriber: Subscriber<D, R>): () => void;
off(type: T, subscriber?: Subscriber<D, R>): void;
once(type: T, subscriber: Subscriber<D, R>): () => void;
emit(type: T, data: D, tracker?: (data: D, results: R[]) => any): void;
reflect(type: T, data: D): R[];
refs(type: T): [T, Subscriber<D, R>, boolean][];
}
// spica@0.0.35
interface Observer<T extends Array<string | number>, D, R> {
monitor(type: T, subscriber: Subscriber<D, R>): () => void;
on(type: T, subscriber: Subscriber<D, R>): () => void;
off(type: T, subscriber?: Subscriber<D, R>): void;
once(type: T, subscriber: Subscriber<D, R>): () => void;
}
interface Publisher<T extends Array<string | number>, D, R> {
emit(type: T, data: D, tracker?: (data: D, results: any[]) => any): void;
reflect(type: T, data: D): R[];
}
interface Subscriber<D, R> {
(data: D): R;
}
type Subscriber<D, R> = (data: D) => R;

}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@
"karma-espower-preprocessor": "1.1.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"lodash": "^4.16.3",
"lodash": "^4.16.4",
"mocha": "^3.1.0",
"npm-check-updates": "^2.8.2",
"npm-check-updates": "^2.8.4",
"power-assert": "^1.4.1",
"run-sequence": "^1.2.2",
"semver": "^5.3.0",
"spica": "0.0.34",
"typescript": "2.1.0-dev.20161004"
"spica": "0.0.35",
"typescript": "2.1.0-dev.20161008"
},
"scripts": {
"test": "gulp server"
Expand Down

0 comments on commit 11c64ad

Please sign in to comment.