From 2f05cc496d9e21744e9ae871e00ca77cce4660a3 Mon Sep 17 00:00:00 2001 From: Travis Ravert Date: Thu, 22 Dec 2022 11:34:46 -0500 Subject: [PATCH] Removing rake tasks and readme instructions. (#750) --- README.md | 40 ---------------------------------------- Rakefile | 16 ---------------- 2 files changed, 56 deletions(-) diff --git a/README.md b/README.md index 38d85e016..22df95d77 100644 --- a/README.md +++ b/README.md @@ -53,46 +53,6 @@ Or use the rake task added: rake docker:build ``` -#### pipenv - -If you don't want to use Docker, you can also use pipenv. - -1. Ensure plantuml and graphviz are installed: - - ```bash - # on OS X - brew install plantuml - brew install graphviz - ``` - -2. Install pipenv and use it to install dependencies in same directory: - - ```bash - pip install -g pipenv - - # then in the documentation root directory: - WORKDIR=/doc PIPENV_VENV_IN_PROJECT=1 pipenv install - - # or using handy rake task: - rake pipenv:install - ``` - -When building the docs, run this command: - -```bash -WORKDIR=/doc PIPENV_VENV_IN_PROJECT=1 pipenv run make html -``` - -or use the rake task: - -```bash -rake pipenv:build - -# or - -rake build -``` - ## Contributing Bug reports and pull requests are welcome on GitHub at diff --git a/Rakefile b/Rakefile index 8f1203b3e..5e90583cb 100644 --- a/Rakefile +++ b/Rakefile @@ -4,22 +4,6 @@ task :default do system "rake --tasks" end -namespace :pipenv do - desc "Build docs using pipenv" - task :build do - exec 'WORKDIR=/doc PIPENV_VENV_IN_PROJECT=1 pipenv run make html' - end - - task :clean do - exec 'WORKDIR=/doc PIPENV_VENV_IN_PROJECT=1 pipenv run make clean' - end - - desc "Install pipenv dependencies" - task :install do - exec 'WORKDIR=/doc PIPENV_VENV_IN_PROJECT=1 pipenv install' - end -end - namespace :docker do desc "Build docs using docker"