forked from plamoni/SiriProxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
siriproxy.gemspec
27 lines (22 loc) · 1.09 KB
/
siriproxy.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "siriproxy/version"
Gem::Specification.new do |s|
s.name = "siriproxy"
s.version = SiriProxy::VERSION
s.authors = ["plamoni", "chendo", "netpro2k"]
s.email = []
s.homepage = ""
s.summary = %q{A (tampering) proxy server for Apple's Siri}
s.description = %q{Siri Proxy is a proxy server for Apple's Siri "assistant." The idea is to allow for the creation of custom handlers for different actions. This can allow developers to easily add functionality to Siri.}
s.rubyforge_project = "siriproxy"
s.files = `git ls-files 2> /dev/null`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/* 2> /dev/null`.split("\n")
s.executables = `git ls-files -- bin/* 2> /dev/null`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
s.add_runtime_dependency "CFPropertyList"
s.add_runtime_dependency "eventmachine"
s.add_runtime_dependency "uuidtools"
s.add_development_dependency "rake"
end