-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaltum.gemspec
24 lines (20 loc) · 987 Bytes
/
altum.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/altum/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Larry Marburger"]
gem.email = ["[email protected]"]
gem.description = %q{Drive ShowOff remotely}
gem.summary = %q{Altum uses the magic of Pusher and websockets to drive a ShowOff presentation remotely. The simplest tool to walk through a deck on a conference call.}
gem.homepage = "http://lmarburger.github.com/altum/"
gem.add_dependency 'pusher'
gem.add_dependency 'rack'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'webmock'
gem.add_development_dependency 'wrong'
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "altum"
gem.require_paths = ["lib"]
gem.version = Altum::VERSION
end