-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (32 loc) · 809 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# If you need to 'vendor your gems' for deploying your daemons, bundler is a
# great option. Update this Gemfile with any additional dependencies and run
# 'bundle install' to get them all installed. Daemon-kit's capistrano
# deployment will ensure that the bundle required by your daemon is properly
# installed.
source "http://rubygems.org"
gem 'rake'
gem 'daemon-kit'
gem 'yard'
gem 'bluecloth'
gem 'rspec'
gem 'macaddr'
gem 'json'
gem 'serialport'
gem 'rubybits'
gem 'couchrest', "= 1.1.3"
gem 'eventmachine'
gem 'eventmachine_httpserver'
gem 'chronic'
gem 'wol'
gem 'sinatra'
gem 'amqp'
gem 'uuidtools'
#deploy gems
gem 'highline', "= 1.6.1"
gem 'net-ssh'
gem 'net-scp'
gem 'git'
gem 'slinky' #, :git => "git://github.com/mwylde/slinky.git"
# Web socket gems
gem 'em-websocket'
gem 'state_machine'