├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── Dockerfile ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── gantt_verify.R ├── ganttrify.R └── utils-pipe.R ├── README.Rmd ├── README.md ├── data-raw └── test_project.R ├── data ├── test_project.rda ├── test_project_date_day.rda ├── test_project_date_month.rda ├── test_spots.rda ├── test_spots_date_day.rda └── test_spots_date_month.rda ├── ganttrify.Rproj ├── man ├── figures │ ├── README-activities_with_same_name_in_different_wp_project-1.png │ ├── README-funky_project-1.png │ ├── README-gantt_36_months-1.png │ ├── README-gantt_butt_line_transparency-1.png │ ├── README-gantt_centre_aligned-1.png │ ├── README-gantt_chart-1.png │ ├── README-gantt_charts_resized_text-1.png │ ├── README-gantt_charts_with_events-1.png │ ├── README-gantt_date_day-1.png │ ├── README-gantt_date_month-1.png │ ├── README-gantt_left_aligned-1.png │ ├── README-gantt_long_labels-1.png │ ├── README-gantt_no_wp-1.png │ ├── README-gantt_no_wp_with_title-1.png │ ├── README-gantt_with_text-1.png │ ├── README-lakota-1.png │ ├── README-spot_customisations-1.png │ └── README-spot_text-1.png ├── gantt_verify.Rd ├── ganttrify.Rd └── pipe.Rd └── tests ├── spelling.R ├── testthat.R └── testthat └── test-gantt_verify.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/gantt_verify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/R/gantt_verify.R -------------------------------------------------------------------------------- /R/ganttrify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/R/ganttrify.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/README.md -------------------------------------------------------------------------------- /data-raw/test_project.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/data-raw/test_project.R -------------------------------------------------------------------------------- /data/test_project.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/data/test_project.rda -------------------------------------------------------------------------------- /data/test_project_date_day.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/data/test_project_date_day.rda -------------------------------------------------------------------------------- /data/test_project_date_month.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/data/test_project_date_month.rda -------------------------------------------------------------------------------- /data/test_spots.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/data/test_spots.rda -------------------------------------------------------------------------------- /data/test_spots_date_day.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/data/test_spots_date_day.rda -------------------------------------------------------------------------------- /data/test_spots_date_month.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/data/test_spots_date_month.rda -------------------------------------------------------------------------------- /ganttrify.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/ganttrify.Rproj -------------------------------------------------------------------------------- /man/figures/README-activities_with_same_name_in_different_wp_project-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-activities_with_same_name_in_different_wp_project-1.png -------------------------------------------------------------------------------- /man/figures/README-funky_project-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-funky_project-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_36_months-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_36_months-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_butt_line_transparency-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_butt_line_transparency-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_centre_aligned-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_centre_aligned-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_chart-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_chart-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_charts_resized_text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_charts_resized_text-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_charts_with_events-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_charts_with_events-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_date_day-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_date_day-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_date_month-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_date_month-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_left_aligned-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_left_aligned-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_long_labels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_long_labels-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_no_wp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_no_wp-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_no_wp_with_title-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_no_wp_with_title-1.png -------------------------------------------------------------------------------- /man/figures/README-gantt_with_text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-gantt_with_text-1.png -------------------------------------------------------------------------------- /man/figures/README-lakota-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-lakota-1.png -------------------------------------------------------------------------------- /man/figures/README-spot_customisations-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-spot_customisations-1.png -------------------------------------------------------------------------------- /man/figures/README-spot_text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/figures/README-spot_text-1.png -------------------------------------------------------------------------------- /man/gantt_verify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/gantt_verify.Rd -------------------------------------------------------------------------------- /man/ganttrify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/ganttrify.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-gantt_verify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/ganttrify/HEAD/tests/testthat/test-gantt_verify.R --------------------------------------------------------------------------------