Skip to content

Commit

Permalink
Replaces GitHub with GitLab
Browse files Browse the repository at this point in the history
  • Loading branch information
erkattak committed Mar 9, 2018
1 parent b07fd98 commit 8945498
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 7 deletions.
41 changes: 41 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
stages:
- test

node-4:
stage: test
image: node:4
variables:
NODE_ENV: test
before_script:
- npm install && npm rebuild
script:
- npm test
cache:
paths:
- node_modules/

node-6:
stage: test
image: node:6
variables:
NODE_ENV: test
before_script:
- npm install && npm rebuild
script:
- npm test
cache:
paths:
- node_modules/

node-8:
stage: test
image: node:8
variables:
NODE_ENV: test
before_script:
- npm install && npm rebuild
script:
- npm test
cache:
paths:
- node_modules/
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A Brightcove provider plugin for the Oddworks content server.

[![Build Status](https://travis-ci.org/oddnetworks/oddworks-brightcove-provider.svg?branch=master)](https://travis-ci.org/oddnetworks/oddworks-brightcove-provider)
[![pipeline status](https://gitlab.com/oddnetworks/oddworks/brightcove-provider/badges/master/pipeline.svg)](https://gitlab.com/oddnetworks/oddworks/brightcove-provider/commits/master)

Installation
------------
Expand All @@ -14,12 +14,12 @@ For full Brightcove API documentation see [docs.brightcove.com/en/video-cloud/co

Oddworks Server Integration
---------------------------
The Oddworks-Brightcove provider is designed to be integrated with an Oddworks server [catalog](https://github.com/oddnetworks/oddworks/tree/master/lib/services/catalog), specifically as a [provider](https://github.com/oddnetworks/oddworks/tree/master/lib/services/catalog#providers). To initialize the plugin in your server:
The Oddworks-Brightcove provider is designed to be integrated with an Oddworks server [catalog](https://gitlab.com/oddnetworks/oddworks/core/tree/master/lib/services/catalog), specifically as a [provider](https://gitlab.com/oddnetworks/oddworks/core/tree/master/lib/services/catalog#providers). To initialize the plugin in your server:

```JavaScript
const brightcoveProvider = require('oddworks-brightcove-provider');

// See https://github.com/oddnetworks/oddworks/tree/master/lib/services/catalog#patterns
// See https://gitlab.com/oddnetworks/oddworks/core/tree/master/lib/services/catalog#patterns
// for more information regarding an Oddcast Bus.
const bus = createMyOddcastBus();

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oddworks-brightcove-provider",
"version": "1.4.0",
"version": "1.4.1",
"description": "An Oddworks provider plugin for Brightcove APIs",
"main": "index.js",
"dependencies": {
Expand All @@ -23,7 +23,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/oddnetworks/oddworks-brightcove-provider.git"
"url": "git+https://gitlab.com/oddnetworks/oddworks/brightcove-provider.git"
},
"keywords": [
"Oddworks",
Expand All @@ -38,9 +38,9 @@
"author": "Odd Networks Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/oddnetworks/oddworks-brightcove-provider/issues"
"url": "https://gitlab.com/oddnetworks/oddworks/brightcove-provider/issues"
},
"homepage": "https://github.com/oddnetworks/oddworks-brightcove-provider#readme",
"homepage": "https://gitlab.com/oddnetworks/oddworks/brightcove-provider#readme",
"xo": {
"rules": {
"object-property-newline": 0,
Expand Down

0 comments on commit 8945498

Please sign in to comment.