Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
sorinvoicu committed Apr 4, 2024
0 parents commit be16502
Show file tree
Hide file tree
Showing 9 changed files with 103 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
^.*\.Rproj$
^\.Rproj\.user$
^LICENSE\.md$
^LICENSE$
^_pkgdown\.yml$
^docs$
^\.github
^\.lintr$
^NEWS\.md$
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Checks 🧩

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- main
push:
branches:
- main
workflow_dispatch:

jobs:
run-shared-ci:
name: Shared
uses: boehringer-ingelheim/dv.templates/.github/workflows/shared_ci.yml@main
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.Rproj.user
27 changes: 27 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Package: dv.fabric
Type: Package
Title: Convenience installer for DaVinci R packages
Version: 0.1.9
Authors@R: c(
person( "Boehringer-Ingelheim Pharma GmbH & Co.KG", role = c("cph", "fnd")),
person( given = "Sorin", family = "Voicu", role = c("aut", "cre"), email = "[email protected]"),
person( given = 'Korbinian', family = 'Matthias', role = 'aut', email = '[email protected]')
)
Description: Convenience installer for DaVinci R packages.
License: Apache License (>= 2)
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.0
VignetteBuilder: knitr
Suggests:
knitr (>= 1.33)
Imports:
dv.loader (>= 1.1.1),
dv.filter (>= 2.1.1),
dv.listings (>= 3.1.0),
dv.manager (>= 2.1.1)
Remotes:
boehringer-ingelheim/dv.loader@main,
boehringer-ingelheim/dv.filter@main,
boehringer-ingelheim/dv.listings@main,
boehringer-ingelheim/dv.manager@main
13 changes: 13 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2024 Boehringer-Ingelheim Pharma GmbH & Co.KG

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.
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Generated by roxygen2: do not edit by hand

4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# dv.fabric 0.1.9

- Initial release to GitHub

9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Convenience installer for DaVinci R packages

## Installation

``` r
if (!require("remotes")) install.packages("remotes")
remotes::install_github("Boehringer-Ingelheim/dv.fabric")
```

17 changes: 17 additions & 0 deletions dv.fabric.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Version: 1.0

RestoreWorkspace: No
SaveWorkspace: No
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
Encoding: UTF-8

AutoAppendNewline: Yes
StripTrailingWhitespace: Yes
LineEndingConversion: Posix

BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
PackageRoxygenize: rd,collate,namespace

0 comments on commit be16502

Please sign in to comment.