Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Fluence to Crystal 0.27.2 #64

Merged
merged 2 commits into from
Mar 21, 2019
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
12 changes: 6 additions & 6 deletions shard.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,35 @@ version: 1.0
shards:
ameba:
github: veelenga/ameba
version: 0.8.0
version: 0.8.1

exception_page:
github: crystal-loot/exception_page
version: 0.1.1
version: 0.1.2

kemal:
github: kemalcr/kemal
commit: b389022b35202319b59396f30b3cac87fd8d393a
commit: 5267555322bf17376bb262fa881d915abbe7f5b3

kemal-flash:
github: neovintage/kemal-flash
commit: c0eb4e91573322f05ddf602abbfe748c1d2fd184

kemal-session:
github: kemalcr/kemal-session
commit: b98aec297110f148cfdf0c250810bdcce30aede9
commit: 9e4fd7336a09ec4dd0b2dbec49eb14aafc19890a

kilt:
github: jeromegn/kilt
version: 0.4.0

markd:
github: icyleaf/markd
commit: 69f49f565bb4a015f8745242f6e4daf9b510782d
commit: 6a585a8d9edfd24b660edc07b7d005553b2d9c8b

radix:
github: luislavena/radix
version: 0.3.8
version: 0.3.9

slang:
github: jeromegn/slang
Expand Down
6 changes: 2 additions & 4 deletions spec/acl_spec.cr
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
require "tempfile"

describe Acl do
it "test the users permissions" do
acls = Acl::Groups.new Tempfile.new("spec").to_s
acls = Acl::Groups.new File.tempfile("spec").to_s
g1 = Acl::Group.new(
name: "user",
default: Acl::Perm::Read,
Expand Down Expand Up @@ -53,7 +51,7 @@ describe Acl do
end

it "groups having" do
acls = Acl::Groups.new Tempfile.new("spec").to_s
acls = Acl::Groups.new File.tempfile("spec").to_s
acls.add "guest"
acls.add "admin"
acls["guest"]["/*"] = Acl::Perm::Read
Expand Down
2 changes: 0 additions & 2 deletions spec/markdown_spec.cr
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
require "tempfile"

describe Fluence::Markdown do
it "test internal links" do
page = Fluence::Page.new("test")
Expand Down