siriproxy 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +11 -0
- data/.rvmrc +1 -0
- data/COPYING +674 -0
- data/Gemfile +25 -0
- data/README.md +262 -0
- data/Rakefile +9 -0
- data/bin/siriproxy +6 -0
- data/config.example.yml +30 -0
- data/lib/siri_objects.rb +331 -0
- data/lib/siriproxy/command_line.rb +201 -0
- data/lib/siriproxy/connection/guzzoni.rb +24 -0
- data/lib/siriproxy/connection/iphone.rb +50 -0
- data/lib/siriproxy/connection.rb +212 -0
- data/lib/siriproxy/interpret_siri.rb +50 -0
- data/lib/siriproxy/plugin.rb +58 -0
- data/lib/siriproxy/plugin_manager.rb +78 -0
- data/lib/siriproxy/version.rb +3 -0
- data/lib/siriproxy.rb +37 -0
- data/plugins/siriproxy-example/.gitignore +4 -0
- data/plugins/siriproxy-example/Gemfile +4 -0
- data/plugins/siriproxy-example/Rakefile +1 -0
- data/plugins/siriproxy-example/lib/siriproxy-example.rb +95 -0
- data/plugins/siriproxy-example/siriproxy-example.gemspec +23 -0
- data/scripts/gen_certs.sh +80 -0
- data/scripts/openssl.cnf +353 -0
- data/siriproxy.gemspec +27 -0
- metadata +147 -0
metadata
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: siriproxy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 4
|
8
|
+
- 1
|
9
|
+
version: 0.4.1
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- plamoni
|
13
|
+
- chendo
|
14
|
+
- netpro2k
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2013-02-26 00:00:00 -06:00
|
20
|
+
default_executable:
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
name: CFPropertyList
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - "="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
segments:
|
31
|
+
- 2
|
32
|
+
- 1
|
33
|
+
- 2
|
34
|
+
version: 2.1.2
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: eventmachine
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
segments:
|
46
|
+
- 0
|
47
|
+
version: "0"
|
48
|
+
type: :runtime
|
49
|
+
version_requirements: *id002
|
50
|
+
- !ruby/object:Gem::Dependency
|
51
|
+
name: uuidtools
|
52
|
+
prerelease: false
|
53
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
segments:
|
59
|
+
- 0
|
60
|
+
version: "0"
|
61
|
+
type: :runtime
|
62
|
+
version_requirements: *id003
|
63
|
+
- !ruby/object:Gem::Dependency
|
64
|
+
name: rake
|
65
|
+
prerelease: false
|
66
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
67
|
+
none: false
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
segments:
|
72
|
+
- 0
|
73
|
+
version: "0"
|
74
|
+
type: :development
|
75
|
+
version_requirements: *id004
|
76
|
+
description: 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.
|
77
|
+
email:
|
78
|
+
- plamoni@siriproxy.info
|
79
|
+
executables:
|
80
|
+
- siriproxy
|
81
|
+
extensions: []
|
82
|
+
|
83
|
+
extra_rdoc_files: []
|
84
|
+
|
85
|
+
files:
|
86
|
+
- .gitignore
|
87
|
+
- .rvmrc
|
88
|
+
- COPYING
|
89
|
+
- Gemfile
|
90
|
+
- README.md
|
91
|
+
- Rakefile
|
92
|
+
- bin/siriproxy
|
93
|
+
- config.example.yml
|
94
|
+
- lib/siri_objects.rb
|
95
|
+
- lib/siriproxy.rb
|
96
|
+
- lib/siriproxy/command_line.rb
|
97
|
+
- lib/siriproxy/connection.rb
|
98
|
+
- lib/siriproxy/connection/guzzoni.rb
|
99
|
+
- lib/siriproxy/connection/iphone.rb
|
100
|
+
- lib/siriproxy/interpret_siri.rb
|
101
|
+
- lib/siriproxy/plugin.rb
|
102
|
+
- lib/siriproxy/plugin_manager.rb
|
103
|
+
- lib/siriproxy/version.rb
|
104
|
+
- plugins/siriproxy-example/.gitignore
|
105
|
+
- plugins/siriproxy-example/Gemfile
|
106
|
+
- plugins/siriproxy-example/Rakefile
|
107
|
+
- plugins/siriproxy-example/lib/siriproxy-example.rb
|
108
|
+
- plugins/siriproxy-example/siriproxy-example.gemspec
|
109
|
+
- scripts/gen_certs.sh
|
110
|
+
- scripts/openssl.cnf
|
111
|
+
- siriproxy.gemspec
|
112
|
+
has_rdoc: true
|
113
|
+
homepage: http://www.github.com/plamoni/SiriProxy
|
114
|
+
licenses: []
|
115
|
+
|
116
|
+
post_install_message:
|
117
|
+
rdoc_options: []
|
118
|
+
|
119
|
+
require_paths:
|
120
|
+
- lib
|
121
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
122
|
+
none: false
|
123
|
+
requirements:
|
124
|
+
- - ">="
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
segments:
|
127
|
+
- 1
|
128
|
+
- 9
|
129
|
+
- 2
|
130
|
+
version: 1.9.2
|
131
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
132
|
+
none: false
|
133
|
+
requirements:
|
134
|
+
- - ">="
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
segments:
|
137
|
+
- 0
|
138
|
+
version: "0"
|
139
|
+
requirements: []
|
140
|
+
|
141
|
+
rubyforge_project: siriproxy
|
142
|
+
rubygems_version: 1.3.7
|
143
|
+
signing_key:
|
144
|
+
specification_version: 3
|
145
|
+
summary: A (tampering) proxy server for Apple's Siri
|
146
|
+
test_files: []
|
147
|
+
|