# UpdateRepos [![Build Status](https://travis-ci.org/pedrovgs/UpdateRepos.svg?branch=master)](https://travis-ci.org/pedrovgs/UpdateRepos) A command line tool used to update all your git repositories with just one command. Written using purely functional Haskell. Follow me on Twitter ### Screencast: ![screencast](./art/screencast.git) ### Contributing: If you are going to modify the code or just review the implementation from any IDE I strongly recommend you to install [Atom](https://atom.io/) following this [guide](https://github.com/simonmichael/haskell-atom-setup) to set up the whole Haskell environment in a few minutes. You can build this project using ``stack`` and just a bunch of commands: ``` // Open a Haskell REPL with the modules already loaded stack ghci // Generates the executable file associated with the project stack build // Installs the already generated executable file in your ~/.local/bin folder stack install // Clean a previous build stack clean ``` The production code is covered covered using unit and [property based](https://en.wikipedia.org/wiki/QuickCheck) tests. If you want to build and execute the project tests you just need to install [Stack](https://docs.haskellstack.org/en/stable/README/) and execute the following command: ``` stack build --test ``` Developed By ------------ * Pedro Vicente Gómez Sánchez - Follow me on Twitter Add me to Linkedin License ------- Copyright 2017 Pedro Vicente Gómez Sánchez Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.