https://github.com/mjc-gh/badbrowser
Bad Browser API
https://github.com/mjc-gh/badbrowser
Last synced: 7 months ago
JSON representation
Bad Browser API
- Host: GitHub
- URL: https://github.com/mjc-gh/badbrowser
- Owner: mjc-gh
- License: mit
- Created: 2011-08-06T17:02:30.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2015-11-05T18:00:23.000Z (almost 10 years ago)
- Last Synced: 2025-01-29T11:33:14.350Z (9 months ago)
- Language: Ruby
- Homepage:
- Size: 456 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BadBrowser API
Welcome to the BadBrowser Core API.
Hosted on Heroku: http://badbrowser.herokuapp.com
As of May 2012, this project has been made public. See LICENSE for more details.
## INSTALL
#### Install Ruby
I would highly recommend RVM: http://beginrescueend.com/
If you use RVM, do *not* use root. To install Ruby 1.9.2 run the following:
rvm install 1.9.2
#### Install Gems
We use bundler (because it's awesome)
So first install bundler via:
gem install bundler
Then run the following and all the gems needed will be installed
bundle install
## DEVELOPING
It is recommend you use "shotgun" to locally run the application. To install shotgun, run:
gem install shotgun
To start the application, run:shotgun config.ru
## TESTING
To run the test simply run the following:
rake test
To skip a Browser user-agent test, provide a SKIP argumentrake test SKIP=opera,safari