Skip to content

Update for PureScript 0.7.4 #34

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

Merged
merged 1 commit into from
Aug 26, 2015
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
6 changes: 0 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,7 @@ language: node_js
sudo: false
node_js:
- 0.12
env:
- PATH=$HOME/purescript:$PATH
install:
- TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p')
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
- chmod a+x $HOME/purescript
- npm install bower gulp -g
- npm install && bower install
script:
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
"purescript-console": "^0.1.0",
"purescript-exceptions": "^0.3.0",
"purescript-functions": "^0.1.0",
"purescript-transformers": "^0.6.0"
"purescript-transformers": "^0.7.1"
}
}
1 change: 0 additions & 1 deletion docs/Control.Monad.Aff.Class.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ class MonadAff e m where
``` purescript
instance monadAffAff :: MonadAff e (Aff e)
instance monadAffContT :: (Monad m, MonadAff eff m) => MonadAff eff (ContT r m)
instance monadAffError :: (Monad m, MonadAff eff m) => MonadAff eff (ErrorT e m)
instance monadAffExceptT :: (Monad m, MonadAff eff m) => MonadAff eff (ExceptT e m)
instance monadAffListT :: (Monad m, MonadAff eff m) => MonadAff eff (ListT m)
instance monadAffMaybe :: (Monad m, MonadAff eff m) => MonadAff eff (MaybeT m)
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"gulp": "^3.8.6",
"gulp-jsvalidate": "^2.0.0",
"gulp-plumber": "^1.0.0",
"gulp-purescript": "^0.5.0",
"gulp-run": "^1.6.8"
"gulp-purescript": "^0.6.0",
"gulp-run": "^1.6.8",
"purescript": "^0.7.4-rc.1"
}
}
4 changes: 0 additions & 4 deletions src/Control/Monad/Aff/Class.purs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module Control.Monad.Aff.Class where

import Control.Monad.Aff
import Control.Monad.Cont.Trans (ContT())
import Control.Monad.Error.Trans (ErrorT())
import Control.Monad.Except.Trans (ExceptT())
import Control.Monad.List.Trans (ListT())
import Control.Monad.Maybe.Trans (MaybeT())
Expand All @@ -25,9 +24,6 @@ module Control.Monad.Aff.Class where
instance monadAffContT :: (Monad m, MonadAff eff m) => MonadAff eff (ContT r m) where
liftAff = lift <<< liftAff

instance monadAffError :: (Monad m, MonadAff eff m) => MonadAff eff (ErrorT e m) where
liftAff = lift <<< liftAff

instance monadAffExceptT :: (Monad m, MonadAff eff m) => MonadAff eff (ExceptT e m) where
liftAff = lift <<< liftAff

Expand Down