Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.Rhistory
.RData
*.Rproj
.vs
11 changes: 11 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@ require(devtools)
load_all(".")
```

Alternatively, you can use Visual Studio with the [R Tools](https://www.visualstudio.com/en-us/features/rtvs-vs.aspx) extension. Then install and load the required packages:

```{r, eval = FALSE}
# Make sure you are in the Rkoans directory
install.packages("devtools")
install.packages("roxygen2")
install.packages("testthat")
require(devtools)
load_all(".")
```

_Don't install Rkoans as a package because you will need access to some of the folders within as you work through the koans._

## Studying the koans
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@ require(devtools)
load_all(".")
```

Alternatively, you can use Visual Studio with the [R Tools](https://www.visualstudio.com/en-us/features/rtvs-vs.aspx) extension. Then install and load the required packages:

```r
# Make sure you are in the Rkoans directory
install.packages("devtools")
install.packages("roxygen2")
install.packages("testthat")
require(devtools)
load_all(".")
```


_Don't install Rkoans as a package because you will need access to some of the folders within as you work through the koans._

Expand Down
18 changes: 18 additions & 0 deletions Rkoans.rxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="Globals">
<ProjectGuid>1109966f-d2c3-4c7e-a4d7-ad554c4406fb</ProjectGuid>
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
</PropertyGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties />
</VisualStudio>
</ProjectExtensions>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\RTVS\Rules\rtvs.rules.props" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\RTVS\Rules\rtvs.rules.props')" />
<Import Project="Rkoans.InMemory.Targets" Condition="Exists('Rkoans.InMemory.Targets')" />
</Project>
12 changes: 12 additions & 0 deletions Rkoans.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{DA7A21FA-8162-4350-AD77-A8D1B671F3ED}") = "Rkoans", "Rkoans.rxproj", "{1109966F-D2C3-4C7E-A4D7-AD554C4406FB}"
EndProject
Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal