Skip to content

Commit

Permalink
Add initial Sinatra app
Browse files Browse the repository at this point in the history
  • Loading branch information
cheshire137 committed Apr 14, 2017
1 parent 2567aa4 commit dfbe259
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Gemfile
@@ -0,0 +1,3 @@
source 'https://rubygems.org'

gem 'sinatra', '~> 1.4.8'
20 changes: 20 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,20 @@
GEM
remote: https://rubygems.org/
specs:
rack (1.6.5)
rack-protection (1.5.3)
rack
sinatra (1.4.8)
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
tilt (2.0.7)

PLATFORMS
ruby

DEPENDENCIES
sinatra (~> 1.4.8)

BUNDLED WITH
1.11.2
9 changes: 9 additions & 0 deletions README.md
@@ -1,2 +1,11 @@
# spotify-slack-status

Update your Slack status based on the track currently playing in Spotify.

## How to Develop

```bash
bundle install
rackup
open http://localhost:9292/
```
5 changes: 5 additions & 0 deletions app.rb
@@ -0,0 +1,5 @@
require 'sinatra'

get '/' do
"Hello World!"
end
2 changes: 2 additions & 0 deletions config.ru
@@ -0,0 +1,2 @@
require './app'
run Sinatra::Application

0 comments on commit dfbe259

Please sign in to comment.