Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Kos committed Aug 10, 2015
0 parents commit 5d536ed
Show file tree
Hide file tree
Showing 12 changed files with 1,207 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
bower_components
node_modules

.DS_Store
31 changes: 31 additions & 0 deletions README.md
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
```
22 changes: 22 additions & 0 deletions bower.json
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"
]
}
Loading

0 comments on commit 5d536ed

Please sign in to comment.