forked from adhearsion/virginia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
virginia.gemspec
29 lines (24 loc) · 1.01 KB
/
virginia.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
25
26
27
28
29
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "virginia/version"
Gem::Specification.new do |s|
s.name = "virginia"
s.version = Virginia::VERSION
s.authors = ["Luca Pradovera"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{A Reel interface to Adhearsion}
s.description = %q{Gives an Adhearsion app the ability to be controlled and interact over HTTP}
s.rubyforge_project = "virginia"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_runtime_dependency %q<adhearsion>, ["~> 2.4"]
s.add_runtime_dependency %q<activesupport>, [">= 3.0"]
s.add_runtime_dependency %q<reel>
s.add_runtime_dependency %q<octarine>
s.add_development_dependency %q<bundler>, ["~> 1.0"]
s.add_development_dependency %q<rspec>, ["~> 2.5"]
s.add_development_dependency %q<rake>, [">= 0"]
s.add_development_dependency %q<guard-rspec>
end