Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Leszek-Sieminski authored Jul 17, 2019
2 parents 5a73717 + bca2574 commit b8f9d1c
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
language: r
cache: packages
r_packages:
- covr

script:
- R CMD build .
- R CMD check *tar.gz

after_success:
- Rscript -e 'library(covr); codecov()'
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# RAhrefs 0.1.3
[![Build Status](https://travis-ci.org/Leszek-Sieminski/RAhrefs.svg?branch=master)](https://travis-ci.org/Leszek-Sieminski/RAhrefs)
[![Build status](https://ci.appveyor.com/api/projects/status/5502p5f854fv5dtc?svg=true)](https://ci.appveyor.com/project/Leszek-Sieminski/rahrefs)
[![openissues](https://img.shields.io/github/issues/Leszek-Sieminski/RAhrefs.svg)](https://github.com/Leszek-Sieminski/RAhrefs/issues)
[![codecov](https://codecov.io/gh/Leszek-Sieminski/RAhrefs/branch/master/graph/badge.svg)](https://codecov.io/gh/Leszek-Sieminski/RAhrefs)
[![codesize](https://img.shields.io/github/languages/code-size/Leszek-Sieminski/RAhrefs.svg)](https://github.com/Leszek-Sieminski/RAhrefs)

R package for SEO specialists which serves as an interface for [Ahrefs](https://ahrefs.com/) API.

## What is new?
* 0.1.3 - fixing unproper assertthat usage in helper function
R package for SEO specialists which serves as an interface for [Ahrefs](https://ahrefs.com/) API.

## What is Ahrefs?
Ahrefs is a research toolset for backlinks and SEO analysis that enables access to off-site data.

## News
* 0.1.3 - fixing unproper assertthat usage in helper function

## Features
* Authenticate with an API key
* Download data from 24 Ahrefs reports as formatted data frames
Expand Down Expand Up @@ -132,3 +138,8 @@ str(ahrefs_data)
# > $ last_visited: POSIXct, format: "2019-01-05 10:37:13" "2015-11-22 14:30:18"
```

## Other Ahrefs API packages:
* PHP - [ahrefs/ahrefs-api-php](https://github.com/ahrefs/ahrefs-api-php)
* R - [mhairi/ahrefs](https://github.com/mhairi/ahrefs)
* Node JS - [ybonnefond/node-ahrefs](https://github.com/ybonnefond/node-ahrefs)
* Python - [spremotely/ahrefs-api-python](https://github.com/spremotely/ahrefs-api-python)
41 changes: 41 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# before_build:
# ps: |
# cp ..\travis-tool.sh R-package\travis-tool.sh
# cp travis-tool.sh.cmd R-package\travis-tools.sh.cmd
# cd R-package
# bash -c "echo '^travis-tool\.sh\.cmd$' >> .Rbuildignore"
# build_script:
# - R CMD build .
# - R CMD check *tar.gz

# 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

# Adapt as necessary starting from here

#environment:
# global:
# WARNINGS_ARE_ERRORS: 1
# _R_CHECK_SYSTEM_CLOCK_: FALSE
#
# matrix:
# - R_VERSION: 3.4.4
# R_ARCH: x64
# GCC_PATH: mingw_64

matrix:
fast_finish: true

build_script:
- travis-tool.sh install_deps

test_script:
- travis-tool.sh run_tests

0 comments on commit b8f9d1c

Please sign in to comment.