Skip to content

Commit

Permalink
Merge pull request #17 from alex-lairan/add/add-ameba-to-dev-dependency
Browse files Browse the repository at this point in the history
add `ameba`(linter) to development dependencies
  • Loading branch information
alex-lairan authored Apr 26, 2019
2 parents 4d66751 + c8b7e96 commit 8cb5c55
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ language: crystal
before_install:
- shards install

script: crystal spec
script:
- crystal spec
- bin/ameba
5 changes: 5 additions & 0 deletions shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ authors:
crystal: 0.26.1

license: MIT

development_dependencies:
ameba:
github: veelenga/ameba
version: ~> 0.9.1
1 change: 0 additions & 1 deletion src/monads/functor.cr
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ module Monads
abstract def fmap(&block : T -> U) : Functor(U)
end
end

1 change: 0 additions & 1 deletion src/monads/monad.cr
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ module Monads
abstract def bind(&block : T -> Monad(U)) : Monad(U) forall U
end
end

0 comments on commit 8cb5c55

Please sign in to comment.