Skip to content
This repository has been archived by the owner on Jan 25, 2020. It is now read-only.

Commit

Permalink
fix spec build
Browse files Browse the repository at this point in the history
  • Loading branch information
plukevdh committed Jun 23, 2017
1 parent d14ec37 commit 87bc421
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ COPY src/ /opt/biplane/src

WORKDIR /opt/biplane
RUN make setup
RUN make build-release

RUN make build
RUN mkdir /kong
WORKDIR /kong
VOLUME /kong
Expand Down
6 changes: 3 additions & 3 deletions spec/kong_client_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ module Biplane
created_at: 1454961927000,
id: "f9950bf1-8644-49a9-813a-a6543c91714e",
name: "library_public_api",
uris: "/library",
uris: ["/library"],
strip_uri: true,
upstream_url: "https://example.com/public_queries",
},
{
created_at: 1454447394000,
id: "3a1aa4ff-edc1-48c9-82d1-4125bc9fbb46",
name: "products_docs",
uris: "/docs/products",
uris: ["/docs/products"],
strip_uri: true,
upstream_url: "https://example.com/docs",
},
{
created_at: 1454102626000,
id: "168d0fb3-cbe3-41da-a821-1dad41bafe06",
name: "products_admin_api",
uris: "/admin/products",
uris: ["/admin/products"],
strip_uri: true,
upstream_url: "https://example.com/admin/products",
},
Expand Down
2 changes: 1 addition & 1 deletion src/biplane/version.cr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Biplane
VERSION = "1.4.2"
VERSION = "1.4.2-dev"
end

0 comments on commit 87bc421

Please sign in to comment.