Skip to content

Commit

Permalink
0.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jinseob2kim committed Jan 17, 2019
1 parent 5d327f1 commit 7005295
Show file tree
Hide file tree
Showing 61 changed files with 89 additions and 12,131 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
^appveyor\.yml$
^docs$
^_pkgdown\.yml$
^.*\.Rproj$
Expand Down
32 changes: 24 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,28 @@ cache: packages
Imports: stats, data.table, shiny, readxl, DT, jstable, labelled, methods, epiDisplay, GGally, ggplot2, haven, rstudioapi, shinycustomloader, MatchIt, survey, tableone, jskm, survival
Remotes: jinseob2kim/jstable, jinseob2kim/jskm

r_packages:
- covr
matrix:
allow_failures:
- r: devel

r_github_packages:
- jinseob2kim/jsmodule


after_success:
- Rscript -e 'library(covr); codecov()'
include:
- r: devel
- r: release
r_packages:
- covr
r_github_packages:
- r-lib/pkgdown
after_success:
- Rscript -e 'covr::codecov()'
- Rscript -e 'pkgdown::build_site()'
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
keep-history: true
local-dir: docs
on:
branch: master
- r: release
os: osx
- r: oldrel
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Package: jsmodule
Title: Shiny modules for medical research
Version: 0.6.8
Date: 2019-01-16
Title: jsmodule: Rstudio Addins and Shiny Modules for Medical Research
Version: 0.6.9
Date: 2019-01-17
Authors@R: c(person("Jinseob", "Kim", email = "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-9403-605X")),
person("Anpanman", role = c("cph", "fnd"))
)
Description: Shiny modules for medical research.
Description: Rstudio Addins and Shiny Modules for Medical Research.
Depends: R (>= 3.4.0)
License: Apache License 2.0
Encoding: UTF-8
Expand Down
13 changes: 13 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# jsmodule 0.6.9

## Bug fixes

* Fix some spell for cran release.

## Update

* Update **travis-ci**.

* Add **appveyor** CI to test **window** environment.


# jsmodule 0.6.8

## Update
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# jsmodule

[![Build Status](https://travis-ci.org/jinseob2kim/jsmodule.svg?branch=master)](https://travis-ci.org/jinseob2kim/jsmodule)
[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/github/jinseob2kim/jsmodule?branch=master&svg=true)](https://ci.appveyor.com/project/jinseob2kim/jsmodule)
[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/jsmodule)](http://cran.r-project.org/package=jsmodule)
[![codecov](https://codecov.io/github/jinseob2kim/jsmodule/branch/master/graphs/badge.svg)](https://codecov.io/github/jinseob2kim/jsmodule)
[![GitHub issues](https://img.shields.io/github/issues/jinseob2kim/jsmodule.svg)](https://github.com/jinseob2kim/jsmodule/issues)
Expand All @@ -10,7 +11,7 @@
[![GitHub last commit](https://img.shields.io/github/last-commit/google/skia.svg)](https://github.com/jinseob2kim/jsmodule)
[![GitHub contributors](https://img.shields.io/github/contributors/jinseob2kim/jsmodule.svg?maxAge=2592000)](https://github.com/jinseob2kim/jsmodule/graphs/contributors)

Rstudio addins and shiny modules for medical research
Rstudio Addins and Shiny Modules for Medical Research

## Install

Expand Down
45 changes: 45 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# DO NOT CHANGE the "init" and "install" sections below

# Download script file from GitHub
init:
ps: |
$ErrorActionPreference = "Stop"
Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1"
Import-Module '..\appveyor-tool.ps1'
install:
ps: Bootstrap

cache:
- C:\RLibrary

# Adapt as necessary starting from here

build_script:
- travis-tool.sh install_deps

test_script:
- travis-tool.sh run_tests

on_failure:
- 7z a failure.zip *.Rcheck\*
- appveyor PushArtifact failure.zip

artifacts:
- path: '*.Rcheck\**\*.log'
name: Logs

- path: '*.Rcheck\**\*.out'
name: Logs

- path: '*.Rcheck\**\*.fail'
name: Logs

- path: '*.Rcheck\**\*.Rout'
name: Logs

- path: '\*_*.tar.gz'
name: Bits

- path: '\*_*.zip'
name: Bits
Loading

0 comments on commit 7005295

Please sign in to comment.