Skip to content

Commit

Permalink
CRAN release
Browse files Browse the repository at this point in the history
  • Loading branch information
hrbrmstr committed Jul 1, 2015
1 parent 661fe96 commit 5e5b6ec
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 1,252 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: iptools
Type: Package
Title: Manipulate, Validate and Resolve IP Addresses
Version: 0.2.0.9000
Version: 0.2.0
Date: 2015-07-01
Author: Bob Rudis <bob@rudis.net> [aut, cre], Oliver Keyes <ironholds@gmail.com> [aut]
Maintainer: Bob Rudis <bob@rudis.net>
Expand Down
7 changes: 7 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,16 @@ knitr::opts_chunk$set(
fig.path = "README-"
)
```
[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/0.1.0/active.svg)](http://www.repostatus.org/#active)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/iptools)](http://cran.r-project.org/web/packages/iptools)
![downloads](http://cranlogs.r-pkg.org/badges/grand-total/iptools)

## Easy IP address handling with iptools

`iptools` is a set of tools for a working with IP addresses. The aim is to provide functionality not presently available with any existing R package and to do so with as much speed as possible. To that end, many of the operations are written in `Rcpp` and require installation of the `Boost` libraries. A current, lofty goal is to mimic most of the functionality of the Python `iptools` module and make IP addresses first class R objects.

Available [on CRAN](http://cran.r-project.org/web/packages/iptools/)

### Functionality

The package primarily supports IPv4 addresses due to deficiencies in R's support for large numbers, but there is IPv6 support for some functionality, and we plan to build more in as R improves and as we do. Functionality includes:
Expand All @@ -36,6 +41,8 @@ To install the development version:

```{r install, eval=FALSE}
devtools::install_github("hrbrmstr/iptools")
# or
install.packages("iptools")
```

`iptools` depends on the Boost library, which can be obtained on most linux distributions with:
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<!-- README.md is generated from README.Rmd. Please edit that file -->
[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/0.1.0/active.svg)](http://www.repostatus.org/#active) [![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/iptools)](http://cran.r-project.org/web/packages/iptools) ![downloads](http://cranlogs.r-pkg.org/badges/grand-total/iptools)

Easy IP address handling with iptools
-------------------------------------

`iptools` is a set of tools for a working with IP addresses. The aim is to provide functionality not presently available with any existing R package and to do so with as much speed as possible. To that end, many of the operations are written in `Rcpp` and require installation of the `Boost` libraries. A current, lofty goal is to mimic most of the functionality of the Python `iptools` module and make IP addresses first class R objects.

Available [on CRAN](http://cran.r-project.org/web/packages/iptools/)

### Functionality

The package primarily supports IPv4 addresses due to deficiencies in R's support for large numbers, but there is IPv6 support for some functionality, and we plan to build more in as R improves and as we do. Functionality includes:
Expand All @@ -21,6 +25,8 @@ To install the development version:

``` r
devtools::install_github("hrbrmstr/iptools")
# or
install.packages("iptools")
```

`iptools` depends on the Boost library, which can be obtained on most linux distributions with:
Expand All @@ -44,7 +50,7 @@ library(iptools)
library(testthat)

date()
#> [1] "Wed Jul 1 08:43:56 2015"
#> [1] "Wed Jul 1 19:19:07 2015"

test_dir("tests/")
#> Test IP generators : ......
Expand Down
Loading

0 comments on commit 5e5b6ec

Please sign in to comment.