flash_policy_server 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +3 -3
- data/VERSION +1 -1
- data/flash_policy_server.gemspec +3 -3
- metadata +5 -5
data/Rakefile
CHANGED
@@ -18,7 +18,7 @@ Jeweler::Tasks.new do |gem|
|
|
18
18
|
gem.license = "MIT"
|
19
19
|
gem.summary = %Q{A flash policy server.}
|
20
20
|
gem.description = %Q{
|
21
|
-
This is a simple Ruby-based policy server to serve Flash
|
21
|
+
This is a simple Ruby-based policy server to serve Flash's crossdomain.xml
|
22
22
|
policy file.
|
23
23
|
|
24
24
|
The web is increasingly realtime, but websockets still aren’t supported on
|
@@ -26,11 +26,11 @@ Jeweler::Tasks.new do |gem|
|
|
26
26
|
to use websockets, with a Flash fallback. Others (amqp.js, for instance)
|
27
27
|
are Flash only.
|
28
28
|
|
29
|
-
When using Flash sockets, it
|
29
|
+
When using Flash sockets, it's necessary to have a policy server running on
|
30
30
|
port 843, in order to set cross domain policy. This library does the job.
|
31
31
|
}
|
32
32
|
gem.email = "dave.hrycyszyn@headlondon.com"
|
33
|
-
gem.authors = ["Dave
|
33
|
+
gem.authors = ["Dave hrycyszyn"]
|
34
34
|
# dependencies defined in Gemfile
|
35
35
|
end
|
36
36
|
Jeweler::RubygemsDotOrgTasks.new
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.6
|
data/flash_policy_server.gemspec
CHANGED
@@ -5,12 +5,12 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "flash_policy_server"
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.6"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = ["Dave
|
11
|
+
s.authors = ["Dave hrycyszyn"]
|
12
12
|
s.date = "2011-12-25"
|
13
|
-
s.description = "\n This is a simple Ruby-based policy server to serve Flash
|
13
|
+
s.description = "\n This is a simple Ruby-based policy server to serve Flash's crossdomain.xml \n policy file.\n\n The web is increasingly realtime, but websockets still aren\342\200\231t supported on \n older browser clients. Many server push libraries (e.g. socket.io) attempt \n to use websockets, with a Flash fallback. Others (amqp.js, for instance) \n are Flash only.\n\n When using Flash sockets, it's necessary to have a policy server running on \n port 843, in order to set cross domain policy. This library does the job.\n "
|
14
14
|
s.email = "dave.hrycyszyn@headlondon.com"
|
15
15
|
s.executables = ["flash_policy_server"]
|
16
16
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flash_policy_server
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 6
|
10
|
+
version: 0.0.6
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
|
-
- Dave
|
13
|
+
- Dave hrycyszyn
|
14
14
|
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
@@ -93,7 +93,7 @@ dependencies:
|
|
93
93
|
version_requirements: *id005
|
94
94
|
name: rcov
|
95
95
|
prerelease: false
|
96
|
-
description: "\n This is a simple Ruby-based policy server to serve Flash
|
96
|
+
description: "\n This is a simple Ruby-based policy server to serve Flash's crossdomain.xml \n policy file.\n\n The web is increasingly realtime, but websockets still aren\xE2\x80\x99t supported on \n older browser clients. Many server push libraries (e.g. socket.io) attempt \n to use websockets, with a Flash fallback. Others (amqp.js, for instance) \n are Flash only.\n\n When using Flash sockets, it's necessary to have a policy server running on \n port 843, in order to set cross domain policy. This library does the job.\n "
|
97
97
|
email: dave.hrycyszyn@headlondon.com
|
98
98
|
executables:
|
99
99
|
- flash_policy_server
|