amethyst-framework / amethyst

Amethyst is a Rails inspired web-framework for Crystal language
https://github.com/amethyst-framework
MIT License
648 stars 46 forks source link

Moved all classes to module namespace #56

Closed sdogruyol closed 8 years ago

sdogruyol commented 8 years ago

Since Crystal 0.7.7 you can't require at type declarations and that's why Amethyst wasn't building.

I've removed all the requires in type declarations and moved all classes into related modules.

Now we've got another error which makes the specs fail

in ./src/amethyst/session/pool.cr:28: can't use Hash(K, V) as generic type argument yet, use a more specific type
sdogruyol commented 8 years ago

Ah this is my bad @drujensen already fixed it :+1: