Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gdiggs/ronan
A sinatra and redis-based community radio
https://github.com/gdiggs/ronan
Last synced: 21 days ago
JSON representation
A sinatra and redis-based community radio
- Host: GitHub
- URL: https://github.com/gdiggs/ronan
- Owner: gdiggs
- Created: 2012-06-28T04:06:20.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-08-12T14:54:07.000Z (over 9 years ago)
- Last Synced: 2024-12-11T17:22:22.049Z (about 2 months ago)
- Language: Ruby
- Size: 104 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ronan
## A community radio station*"We have to start a radio station." - Ronan O'Rahilly*
## English
Ronan is an application that serves as a community radio station. Songs are added and stored in Redis. The app is built on Sinatra.### Installation
Specify an `ENV['REDISTOGO_URL']` value if you are running in production mode (heroku does this for you automatically). In development mode, Redis' default location, redis://locahost:6379/0, will be used. Songs expire automatically after one week.```bash
$ bundle install
$ ruby ./ronan.rb
```## Français
Ronan est une application qui acte comme une station de radio collective. Les chansons sont ajoutées et mémorisées en Redis. L'application utilise Sinatra.### Installation
Ajoute un variable `ENV['REDISTOGO_URL']` si tu utilise le mode de production (heroku l'ajoutera automatiquement). Au mode de développement, la location défaute utilisée par Redis, redis://locahost:6379/0, sera utilisée. Les chansons expireraient automatiquement après une semaine.```bash
$ bundle install
$ ruby ./ronan.rb
```## License
### The MIT License (MIT)
Copyright (c) 2012 Gordon DiggsPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.