juggernaut_rails 0.6.1 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +3 -2
- data/VERSION +1 -1
- metadata +12 -2
data/Rakefile
CHANGED
@@ -11,7 +11,7 @@ begin
|
|
11
11
|
gemspec.rubyforge_project = 'juggernaut'
|
12
12
|
gemspec.description = <<-END
|
13
13
|
The Juggernaut Gem for Ruby on Rails aims to revolutionize your Rails app by letting the server initiate a connection and push data to the client. In other words your app can have a real time connection to the server with the advantage of instant updates. Although the obvious use of this is for chat, the most exciting prospect for me is collaborative cms and wikis.
|
14
|
-
|
14
|
+
|
15
15
|
This Gem bundles Alex MacCaw's Juggernaut Gem and Rails plugin into one, and extends its Rails intergration for a simpler install and setup.
|
16
16
|
END
|
17
17
|
gemspec.authors = ["Alex MacCaw"]
|
@@ -19,7 +19,8 @@ begin
|
|
19
19
|
gemspec.files = FileList['[A-Z]*',
|
20
20
|
'{bin,lib,media,rails,test,rails}/**/*']
|
21
21
|
gemspec.add_dependency 'eventmachine', '>= 0.10.0'
|
22
|
-
gemspec.add_dependency 'json', '>= 1.1.2'
|
22
|
+
gemspec.add_dependency 'json', '>= 1.1.2'
|
23
|
+
gemspec.add_dependency 'escape'
|
23
24
|
end
|
24
25
|
Jeweler::GemcutterTasks.new
|
25
26
|
rescue LoadError
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.2
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: juggernaut_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex MacCaw
|
@@ -32,7 +32,17 @@ dependencies:
|
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: 1.1.2
|
34
34
|
version:
|
35
|
-
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: escape
|
37
|
+
type: :runtime
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: "0"
|
44
|
+
version:
|
45
|
+
description: " The Juggernaut Gem for Ruby on Rails aims to revolutionize your Rails app by letting the server initiate a connection and push data to the client. In other words your app can have a real time connection to the server with the advantage of instant updates. Although the obvious use of this is for chat, the most exciting prospect for me is collaborative cms and wikis.\n\n This Gem bundles Alex MacCaw's Juggernaut Gem and Rails plugin into one, and extends its Rails intergration for a simpler install and setup.\n"
|
36
46
|
email: info@eribium.org
|
37
47
|
executables:
|
38
48
|
- juggernaut
|