Skip to content

Commit

Permalink
Merge pull request #64 from Destructed3/crystal-0.27.2
Browse files Browse the repository at this point in the history
Update Fluence to Crystal 0.27.2
  • Loading branch information
docelic authored Mar 21, 2019
2 parents e8383d9 + 7d9fd1d commit 8bde8b9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
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

0 comments on commit 8bde8b9

Please sign in to comment.