-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrew Kos
committed
Aug 10, 2015
0 parents
commit 5d536ed
Showing
12 changed files
with
1,207 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
bower_components | ||
node_modules | ||
|
||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<strong><i>:exclamation: THIS REPO SHOULD NOT BE MADE PUBLIC :exclamation:</i></strong> | ||
|
||
# bulbs-public-ads-maanger | ||
Ads manager for public side of sites. Fills in ad slots. | ||
|
||
## Setup | ||
1. Install via bower, ```<version>``` being the version to depend on: | ||
```bash | ||
$ bower install --save https://0469c955e10241b40fffe0225e29a3c238aadf69:x-oauth-basic@github.com/theonion/bulbs-public-ads-maanger.git\#\<version> | ||
``` | ||
1. Provide ```adUnits``` module (???????????????) | ||
1. Provide ```adsManager``` as a browserify dependency (????????????????) | ||
1. Require and initialize ```AdsManager``` via a browserified file: | ||
```javascript | ||
var ads = require('adsManager'); | ||
// optionally, pass in true to use debug mode | ||
ads.init(); | ||
``` | ||
|
||
## Development | ||
### Builds | ||
To create a new build: | ||
```bash | ||
$ npm run build | ||
``` | ||
|
||
### Tests | ||
To run tests: | ||
```bash | ||
$ npm test | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "bulbs-public-ads-maanger", | ||
"version": "0.0.1", | ||
"private": true, | ||
"authors": [ | ||
"Andrew Kos <akos@theonion.com>", | ||
"Chris Sprehe <csprehe@theonion.com>" | ||
], | ||
"description": "Ads manager for public side", | ||
"license": "MIT", | ||
"main": [ | ||
"build/adsManager.js" | ||
], | ||
"ignore": [ | ||
"bower_components", | ||
"node_modules", | ||
"resources", | ||
"src", | ||
"**/.*", | ||
"package.json" | ||
] | ||
} |
Oops, something went wrong.