talking_stick 0.0.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.
- checksums.yaml +7 -0
- data/.gitignore +15 -0
- data/.rspec +1 -0
- data/Gemfile +15 -0
- data/LICENSE.md +50 -0
- data/README.md +111 -0
- data/Rakefile +32 -0
- data/app/assets/images/talking_stick/.keep +0 -0
- data/app/assets/javascripts/talking_stick/application.js +15 -0
- data/app/assets/javascripts/talking_stick/talking_stick.js +141 -0
- data/app/assets/javascripts/talking_stick/talking_stick/partner.js +100 -0
- data/app/assets/javascripts/talking_stick/talking_stick/rails_signaling.js +117 -0
- data/app/assets/stylesheets/talking_stick/application.css +15 -0
- data/app/controllers/talking_stick/application_controller.rb +4 -0
- data/app/controllers/talking_stick/participants_controller.rb +72 -0
- data/app/controllers/talking_stick/rooms_controller.rb +122 -0
- data/app/helpers/talking_stick/application_helper.rb +4 -0
- data/app/models/talking_stick/participant.rb +18 -0
- data/app/models/talking_stick/room.rb +6 -0
- data/app/models/talking_stick/signal.rb +17 -0
- data/app/views/layouts/talking_stick/application.html.erb +14 -0
- data/app/views/talking_stick/participants/_form.html.erb +25 -0
- data/app/views/talking_stick/participants/edit.html.erb +6 -0
- data/app/views/talking_stick/participants/index.html.erb +29 -0
- data/app/views/talking_stick/participants/new.html.erb +5 -0
- data/app/views/talking_stick/participants/show.html.erb +14 -0
- data/app/views/talking_stick/rooms/_form.html.erb +25 -0
- data/app/views/talking_stick/rooms/edit.html.erb +6 -0
- data/app/views/talking_stick/rooms/index.html.erb +29 -0
- data/app/views/talking_stick/rooms/new.html.erb +5 -0
- data/app/views/talking_stick/rooms/show.html.erb +40 -0
- data/bin/rails +12 -0
- data/config/routes.rb +7 -0
- data/db/migrate/20150510181337_create_talking_stick_rooms.rb +10 -0
- data/db/migrate/20150510182258_create_talking_stick_participants.rb +14 -0
- data/db/migrate/20150511005922_create_talking_stick_signals.rb +12 -0
- data/lib/talking_stick.rb +4 -0
- data/lib/talking_stick/engine.rb +12 -0
- data/lib/talking_stick/version.rb +3 -0
- data/lib/tasks/talking_stick_tasks.rake +4 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/models/.keep +0 -0
- data/spec/dummy/app/models/concerns/.keep +0 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +29 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +32 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +41 -0
- data/spec/dummy/config/environments/production.rb +79 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/assets.rb +11 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/models/talking_stick/participant_spec.rb +7 -0
- data/spec/models/talking_stick/room_spec.rb +7 -0
- data/spec/spec_helper.rb +13 -0
- data/talking_stick.gemspec +27 -0
- data/vendor/assets/javascripts/talking_stick/adapter.js +243 -0
- metadata +258 -0
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
File without changes
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
ENV['RAILS_ENV'] ||= 'test'
|
2
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
3
|
+
require 'rspec/rails'
|
4
|
+
require 'rspec/autorun'
|
5
|
+
require 'factory_girl_rails'
|
6
|
+
# Load support files
|
7
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
8
|
+
|
9
|
+
RSpec.configure do |config|
|
10
|
+
config.mock_with :rspec
|
11
|
+
config.use_transactional_fixtures = true
|
12
|
+
config.order = "random"
|
13
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
$:.push File.expand_path('../lib', __FILE__)
|
2
|
+
|
3
|
+
# Maintain your gem's version:
|
4
|
+
require 'talking_stick/version'
|
5
|
+
|
6
|
+
# Describe your gem and declare its dependencies:
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = 'talking_stick'
|
9
|
+
s.version = TalkingStick::VERSION
|
10
|
+
s.authors = ['Ben Klang']
|
11
|
+
s.email = ['bklang@mojolingo.com']
|
12
|
+
s.homepage = 'https://github.com/mojolingo/talking_stick'
|
13
|
+
s.summary = 'Easy group-based video conversations for Rails with WebRTC'
|
14
|
+
s.description = 'TalkingStick is a Rails Engine that provides easy group-based video conversations, all thanks to the power of WebRTC.'
|
15
|
+
s.license = 'MIT'
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
19
|
+
|
20
|
+
s.add_dependency 'rails', '~> 4.0'
|
21
|
+
s.add_dependency 'jquery-rails', '~> 4.0'
|
22
|
+
|
23
|
+
s.add_development_dependency 'sqlite3'
|
24
|
+
s.add_development_dependency 'rspec-rails'
|
25
|
+
s.add_development_dependency 'capybara'
|
26
|
+
s.add_development_dependency 'factory_girl_rails'
|
27
|
+
end
|
@@ -0,0 +1,243 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
|
3
|
+
*
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
6
|
+
* tree.
|
7
|
+
*/
|
8
|
+
|
9
|
+
/* More information about these options at jshint.com/docs/options */
|
10
|
+
/* jshint browser: true, camelcase: true, curly: true, devel: true,
|
11
|
+
eqeqeq: true, forin: false, globalstrict: true, node: true,
|
12
|
+
quotmark: single, undef: true, unused: strict */
|
13
|
+
/* global mozRTCIceCandidate, mozRTCPeerConnection, Promise,
|
14
|
+
mozRTCSessionDescription, webkitRTCPeerConnection, MediaStreamTrack */
|
15
|
+
/* exported trace,requestUserMedia */
|
16
|
+
'use strict';
|
17
|
+
|
18
|
+
var RTCPeerConnection = null;
|
19
|
+
var getUserMedia = null;
|
20
|
+
var attachMediaStream = null;
|
21
|
+
var reattachMediaStream = null;
|
22
|
+
var webrtcDetectedBrowser = null;
|
23
|
+
var webrtcDetectedVersion = null;
|
24
|
+
|
25
|
+
function trace(text) {
|
26
|
+
// This function is used for logging.
|
27
|
+
if (text[text.length - 1] === '\n') {
|
28
|
+
text = text.substring(0, text.length - 1);
|
29
|
+
}
|
30
|
+
if (window.performance) {
|
31
|
+
var now = (window.performance.now() / 1000).toFixed(3);
|
32
|
+
console.log(now + ': ' + text);
|
33
|
+
} else {
|
34
|
+
console.log(text);
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
if (navigator.mozGetUserMedia) {
|
39
|
+
console.log('This appears to be Firefox');
|
40
|
+
|
41
|
+
webrtcDetectedBrowser = 'firefox';
|
42
|
+
|
43
|
+
webrtcDetectedVersion =
|
44
|
+
parseInt(navigator.userAgent.match(/Firefox\/([0-9]+)\./)[1], 10);
|
45
|
+
|
46
|
+
// The RTCPeerConnection object.
|
47
|
+
RTCPeerConnection = function(pcConfig, pcConstraints) {
|
48
|
+
// .urls is not supported in FF yet.
|
49
|
+
if (pcConfig && pcConfig.iceServers) {
|
50
|
+
for (var i = 0; i < pcConfig.iceServers.length; i++) {
|
51
|
+
if (pcConfig.iceServers[i].hasOwnProperty('urls')) {
|
52
|
+
pcConfig.iceServers[i].url = pcConfig.iceServers[i].urls;
|
53
|
+
delete pcConfig.iceServers[i].urls;
|
54
|
+
}
|
55
|
+
}
|
56
|
+
}
|
57
|
+
return new mozRTCPeerConnection(pcConfig, pcConstraints);
|
58
|
+
};
|
59
|
+
|
60
|
+
// The RTCSessionDescription object.
|
61
|
+
window.RTCSessionDescription = mozRTCSessionDescription;
|
62
|
+
|
63
|
+
// The RTCIceCandidate object.
|
64
|
+
window.RTCIceCandidate = mozRTCIceCandidate;
|
65
|
+
|
66
|
+
// getUserMedia shim (only difference is the prefix).
|
67
|
+
// Code from Adam Barth.
|
68
|
+
getUserMedia = navigator.mozGetUserMedia.bind(navigator);
|
69
|
+
navigator.getUserMedia = getUserMedia;
|
70
|
+
|
71
|
+
// Shim for MediaStreamTrack.getSources.
|
72
|
+
MediaStreamTrack.getSources = function(successCb) {
|
73
|
+
setTimeout(function() {
|
74
|
+
var infos = [
|
75
|
+
{kind: 'audio', id: 'default', label:'', facing:''},
|
76
|
+
{kind: 'video', id: 'default', label:'', facing:''}
|
77
|
+
];
|
78
|
+
successCb(infos);
|
79
|
+
}, 0);
|
80
|
+
};
|
81
|
+
|
82
|
+
// Creates ICE server from the URL for FF.
|
83
|
+
window.createIceServer = function(url, username, password) {
|
84
|
+
var iceServer = null;
|
85
|
+
var urlParts = url.split(':');
|
86
|
+
if (urlParts[0].indexOf('stun') === 0) {
|
87
|
+
// Create ICE server with STUN URL.
|
88
|
+
iceServer = {
|
89
|
+
'url': url
|
90
|
+
};
|
91
|
+
} else if (urlParts[0].indexOf('turn') === 0) {
|
92
|
+
if (webrtcDetectedVersion < 27) {
|
93
|
+
// Create iceServer with turn url.
|
94
|
+
// Ignore the transport parameter from TURN url for FF version <=27.
|
95
|
+
var turnUrlParts = url.split('?');
|
96
|
+
// Return null for createIceServer if transport=tcp.
|
97
|
+
if (turnUrlParts.length === 1 ||
|
98
|
+
turnUrlParts[1].indexOf('transport=udp') === 0) {
|
99
|
+
iceServer = {
|
100
|
+
'url': turnUrlParts[0],
|
101
|
+
'credential': password,
|
102
|
+
'username': username
|
103
|
+
};
|
104
|
+
}
|
105
|
+
} else {
|
106
|
+
// FF 27 and above supports transport parameters in TURN url,
|
107
|
+
// So passing in the full url to create iceServer.
|
108
|
+
iceServer = {
|
109
|
+
'url': url,
|
110
|
+
'credential': password,
|
111
|
+
'username': username
|
112
|
+
};
|
113
|
+
}
|
114
|
+
}
|
115
|
+
return iceServer;
|
116
|
+
};
|
117
|
+
|
118
|
+
window.createIceServers = function(urls, username, password) {
|
119
|
+
var iceServers = [];
|
120
|
+
// Use .url for FireFox.
|
121
|
+
for (var i = 0; i < urls.length; i++) {
|
122
|
+
var iceServer =
|
123
|
+
window.createIceServer(urls[i], username, password);
|
124
|
+
if (iceServer !== null) {
|
125
|
+
iceServers.push(iceServer);
|
126
|
+
}
|
127
|
+
}
|
128
|
+
return iceServers;
|
129
|
+
};
|
130
|
+
|
131
|
+
// Attach a media stream to an element.
|
132
|
+
attachMediaStream = function(element, stream) {
|
133
|
+
console.log('Attaching media stream');
|
134
|
+
element.mozSrcObject = stream;
|
135
|
+
};
|
136
|
+
|
137
|
+
reattachMediaStream = function(to, from) {
|
138
|
+
console.log('Reattaching media stream');
|
139
|
+
to.mozSrcObject = from.mozSrcObject;
|
140
|
+
};
|
141
|
+
|
142
|
+
} else if (navigator.webkitGetUserMedia) {
|
143
|
+
console.log('This appears to be Chrome');
|
144
|
+
|
145
|
+
webrtcDetectedBrowser = 'chrome';
|
146
|
+
// Temporary fix until crbug/374263 is fixed.
|
147
|
+
// Setting Chrome version to 999, if version is unavailable.
|
148
|
+
var result = navigator.userAgent.match(/Chrom(e|ium)\/([0-9]+)\./);
|
149
|
+
if (result !== null) {
|
150
|
+
webrtcDetectedVersion = parseInt(result[2], 10);
|
151
|
+
} else {
|
152
|
+
webrtcDetectedVersion = 999;
|
153
|
+
}
|
154
|
+
|
155
|
+
// Creates iceServer from the url for Chrome M33 and earlier.
|
156
|
+
window.createIceServer = function(url, username, password) {
|
157
|
+
var iceServer = null;
|
158
|
+
var urlParts = url.split(':');
|
159
|
+
if (urlParts[0].indexOf('stun') === 0) {
|
160
|
+
// Create iceServer with stun url.
|
161
|
+
iceServer = {
|
162
|
+
'url': url
|
163
|
+
};
|
164
|
+
} else if (urlParts[0].indexOf('turn') === 0) {
|
165
|
+
// Chrome M28 & above uses below TURN format.
|
166
|
+
iceServer = {
|
167
|
+
'url': url,
|
168
|
+
'credential': password,
|
169
|
+
'username': username
|
170
|
+
};
|
171
|
+
}
|
172
|
+
return iceServer;
|
173
|
+
};
|
174
|
+
|
175
|
+
// Creates an ICEServer object from multiple URLs.
|
176
|
+
window.createIceServers = function(urls, username, password) {
|
177
|
+
return {
|
178
|
+
'urls': urls,
|
179
|
+
'credential': password,
|
180
|
+
'username': username
|
181
|
+
};
|
182
|
+
};
|
183
|
+
|
184
|
+
// The RTCPeerConnection object.
|
185
|
+
RTCPeerConnection = function(pcConfig, pcConstraints) {
|
186
|
+
return new webkitRTCPeerConnection(pcConfig, pcConstraints);
|
187
|
+
};
|
188
|
+
|
189
|
+
// Get UserMedia (only difference is the prefix).
|
190
|
+
// Code from Adam Barth.
|
191
|
+
getUserMedia = navigator.webkitGetUserMedia.bind(navigator);
|
192
|
+
navigator.getUserMedia = getUserMedia;
|
193
|
+
|
194
|
+
// Attach a media stream to an element.
|
195
|
+
attachMediaStream = function(element, stream) {
|
196
|
+
if (typeof element.srcObject !== 'undefined') {
|
197
|
+
element.srcObject = stream;
|
198
|
+
} else if (typeof element.mozSrcObject !== 'undefined') {
|
199
|
+
element.mozSrcObject = stream;
|
200
|
+
} else if (typeof element.src !== 'undefined') {
|
201
|
+
element.src = URL.createObjectURL(stream);
|
202
|
+
} else {
|
203
|
+
console.log('Error attaching stream to element.');
|
204
|
+
}
|
205
|
+
};
|
206
|
+
|
207
|
+
reattachMediaStream = function(to, from) {
|
208
|
+
to.src = from.src;
|
209
|
+
};
|
210
|
+
} else {
|
211
|
+
console.log('Browser does not appear to be WebRTC-capable');
|
212
|
+
}
|
213
|
+
|
214
|
+
// Returns the result of getUserMedia as a Promise.
|
215
|
+
function requestUserMedia(constraints) {
|
216
|
+
return new Promise(function(resolve, reject) {
|
217
|
+
var onSuccess = function(stream) {
|
218
|
+
resolve(stream);
|
219
|
+
};
|
220
|
+
var onError = function(error) {
|
221
|
+
reject(error);
|
222
|
+
};
|
223
|
+
|
224
|
+
try {
|
225
|
+
getUserMedia(constraints, onSuccess, onError);
|
226
|
+
} catch (e) {
|
227
|
+
reject(e);
|
228
|
+
}
|
229
|
+
});
|
230
|
+
}
|
231
|
+
|
232
|
+
if (typeof module !== 'undefined') {
|
233
|
+
module.exports = {
|
234
|
+
RTCPeerConnection: RTCPeerConnection,
|
235
|
+
getUserMedia: getUserMedia,
|
236
|
+
attachMediaStream: attachMediaStream,
|
237
|
+
reattachMediaStream: reattachMediaStream,
|
238
|
+
webrtcDetectedBrowser: webrtcDetectedBrowser,
|
239
|
+
webrtcDetectedVersion: webrtcDetectedVersion
|
240
|
+
//requestUserMedia: not exposed on purpose.
|
241
|
+
//trace: not exposed on purpose.
|
242
|
+
};
|
243
|
+
}
|
metadata
ADDED
@@ -0,0 +1,258 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: talking_stick
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ben Klang
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-05-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jquery-rails
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '4.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '4.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: sqlite3
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec-rails
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: capybara
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: factory_girl_rails
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: TalkingStick is a Rails Engine that provides easy group-based video conversations,
|
98
|
+
all thanks to the power of WebRTC.
|
99
|
+
email:
|
100
|
+
- bklang@mojolingo.com
|
101
|
+
executables: []
|
102
|
+
extensions: []
|
103
|
+
extra_rdoc_files: []
|
104
|
+
files:
|
105
|
+
- ".gitignore"
|
106
|
+
- ".rspec"
|
107
|
+
- Gemfile
|
108
|
+
- LICENSE.md
|
109
|
+
- README.md
|
110
|
+
- Rakefile
|
111
|
+
- app/assets/images/talking_stick/.keep
|
112
|
+
- app/assets/javascripts/talking_stick/application.js
|
113
|
+
- app/assets/javascripts/talking_stick/talking_stick.js
|
114
|
+
- app/assets/javascripts/talking_stick/talking_stick/partner.js
|
115
|
+
- app/assets/javascripts/talking_stick/talking_stick/rails_signaling.js
|
116
|
+
- app/assets/stylesheets/talking_stick/application.css
|
117
|
+
- app/controllers/talking_stick/application_controller.rb
|
118
|
+
- app/controllers/talking_stick/participants_controller.rb
|
119
|
+
- app/controllers/talking_stick/rooms_controller.rb
|
120
|
+
- app/helpers/talking_stick/application_helper.rb
|
121
|
+
- app/models/talking_stick/participant.rb
|
122
|
+
- app/models/talking_stick/room.rb
|
123
|
+
- app/models/talking_stick/signal.rb
|
124
|
+
- app/views/layouts/talking_stick/application.html.erb
|
125
|
+
- app/views/talking_stick/participants/_form.html.erb
|
126
|
+
- app/views/talking_stick/participants/edit.html.erb
|
127
|
+
- app/views/talking_stick/participants/index.html.erb
|
128
|
+
- app/views/talking_stick/participants/new.html.erb
|
129
|
+
- app/views/talking_stick/participants/show.html.erb
|
130
|
+
- app/views/talking_stick/rooms/_form.html.erb
|
131
|
+
- app/views/talking_stick/rooms/edit.html.erb
|
132
|
+
- app/views/talking_stick/rooms/index.html.erb
|
133
|
+
- app/views/talking_stick/rooms/new.html.erb
|
134
|
+
- app/views/talking_stick/rooms/show.html.erb
|
135
|
+
- bin/rails
|
136
|
+
- config/routes.rb
|
137
|
+
- db/migrate/20150510181337_create_talking_stick_rooms.rb
|
138
|
+
- db/migrate/20150510182258_create_talking_stick_participants.rb
|
139
|
+
- db/migrate/20150511005922_create_talking_stick_signals.rb
|
140
|
+
- lib/talking_stick.rb
|
141
|
+
- lib/talking_stick/engine.rb
|
142
|
+
- lib/talking_stick/version.rb
|
143
|
+
- lib/tasks/talking_stick_tasks.rake
|
144
|
+
- spec/dummy/README.rdoc
|
145
|
+
- spec/dummy/Rakefile
|
146
|
+
- spec/dummy/app/assets/images/.keep
|
147
|
+
- spec/dummy/app/assets/javascripts/application.js
|
148
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
149
|
+
- spec/dummy/app/controllers/application_controller.rb
|
150
|
+
- spec/dummy/app/controllers/concerns/.keep
|
151
|
+
- spec/dummy/app/helpers/application_helper.rb
|
152
|
+
- spec/dummy/app/mailers/.keep
|
153
|
+
- spec/dummy/app/models/.keep
|
154
|
+
- spec/dummy/app/models/concerns/.keep
|
155
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
156
|
+
- spec/dummy/bin/bundle
|
157
|
+
- spec/dummy/bin/rails
|
158
|
+
- spec/dummy/bin/rake
|
159
|
+
- spec/dummy/bin/setup
|
160
|
+
- spec/dummy/config.ru
|
161
|
+
- spec/dummy/config/application.rb
|
162
|
+
- spec/dummy/config/boot.rb
|
163
|
+
- spec/dummy/config/database.yml
|
164
|
+
- spec/dummy/config/environment.rb
|
165
|
+
- spec/dummy/config/environments/development.rb
|
166
|
+
- spec/dummy/config/environments/production.rb
|
167
|
+
- spec/dummy/config/environments/test.rb
|
168
|
+
- spec/dummy/config/initializers/assets.rb
|
169
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
170
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
171
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
172
|
+
- spec/dummy/config/initializers/inflections.rb
|
173
|
+
- spec/dummy/config/initializers/mime_types.rb
|
174
|
+
- spec/dummy/config/initializers/session_store.rb
|
175
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
176
|
+
- spec/dummy/config/locales/en.yml
|
177
|
+
- spec/dummy/config/routes.rb
|
178
|
+
- spec/dummy/config/secrets.yml
|
179
|
+
- spec/dummy/lib/assets/.keep
|
180
|
+
- spec/dummy/log/.keep
|
181
|
+
- spec/dummy/public/404.html
|
182
|
+
- spec/dummy/public/422.html
|
183
|
+
- spec/dummy/public/500.html
|
184
|
+
- spec/dummy/public/favicon.ico
|
185
|
+
- spec/models/talking_stick/participant_spec.rb
|
186
|
+
- spec/models/talking_stick/room_spec.rb
|
187
|
+
- spec/spec_helper.rb
|
188
|
+
- talking_stick.gemspec
|
189
|
+
- vendor/assets/javascripts/talking_stick/adapter.js
|
190
|
+
homepage: https://github.com/mojolingo/talking_stick
|
191
|
+
licenses:
|
192
|
+
- MIT
|
193
|
+
metadata: {}
|
194
|
+
post_install_message:
|
195
|
+
rdoc_options: []
|
196
|
+
require_paths:
|
197
|
+
- lib
|
198
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
199
|
+
requirements:
|
200
|
+
- - ">="
|
201
|
+
- !ruby/object:Gem::Version
|
202
|
+
version: '0'
|
203
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
204
|
+
requirements:
|
205
|
+
- - ">="
|
206
|
+
- !ruby/object:Gem::Version
|
207
|
+
version: '0'
|
208
|
+
requirements: []
|
209
|
+
rubyforge_project:
|
210
|
+
rubygems_version: 2.4.6
|
211
|
+
signing_key:
|
212
|
+
specification_version: 4
|
213
|
+
summary: Easy group-based video conversations for Rails with WebRTC
|
214
|
+
test_files:
|
215
|
+
- spec/dummy/README.rdoc
|
216
|
+
- spec/dummy/Rakefile
|
217
|
+
- spec/dummy/app/assets/images/.keep
|
218
|
+
- spec/dummy/app/assets/javascripts/application.js
|
219
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
220
|
+
- spec/dummy/app/controllers/application_controller.rb
|
221
|
+
- spec/dummy/app/controllers/concerns/.keep
|
222
|
+
- spec/dummy/app/helpers/application_helper.rb
|
223
|
+
- spec/dummy/app/mailers/.keep
|
224
|
+
- spec/dummy/app/models/.keep
|
225
|
+
- spec/dummy/app/models/concerns/.keep
|
226
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
227
|
+
- spec/dummy/bin/bundle
|
228
|
+
- spec/dummy/bin/rails
|
229
|
+
- spec/dummy/bin/rake
|
230
|
+
- spec/dummy/bin/setup
|
231
|
+
- spec/dummy/config.ru
|
232
|
+
- spec/dummy/config/application.rb
|
233
|
+
- spec/dummy/config/boot.rb
|
234
|
+
- spec/dummy/config/database.yml
|
235
|
+
- spec/dummy/config/environment.rb
|
236
|
+
- spec/dummy/config/environments/development.rb
|
237
|
+
- spec/dummy/config/environments/production.rb
|
238
|
+
- spec/dummy/config/environments/test.rb
|
239
|
+
- spec/dummy/config/initializers/assets.rb
|
240
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
241
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
242
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
243
|
+
- spec/dummy/config/initializers/inflections.rb
|
244
|
+
- spec/dummy/config/initializers/mime_types.rb
|
245
|
+
- spec/dummy/config/initializers/session_store.rb
|
246
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
247
|
+
- spec/dummy/config/locales/en.yml
|
248
|
+
- spec/dummy/config/routes.rb
|
249
|
+
- spec/dummy/config/secrets.yml
|
250
|
+
- spec/dummy/lib/assets/.keep
|
251
|
+
- spec/dummy/log/.keep
|
252
|
+
- spec/dummy/public/404.html
|
253
|
+
- spec/dummy/public/422.html
|
254
|
+
- spec/dummy/public/500.html
|
255
|
+
- spec/dummy/public/favicon.ico
|
256
|
+
- spec/models/talking_stick/participant_spec.rb
|
257
|
+
- spec/models/talking_stick/room_spec.rb
|
258
|
+
- spec/spec_helper.rb
|