pushify 1.0.0
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/.specification +92 -0
- data/LICENSE +20 -0
- data/README.markdown +31 -0
- data/ROADMAP +13 -0
- data/Rakefile +60 -0
- data/VERSION +1 -0
- data/bin/pushify +50 -0
- data/install/expressinstall.swf +0 -0
- data/install/json.js +482 -0
- data/install/juggernaut.js +215 -0
- data/install/juggernaut.swf +0 -0
- data/install/juggernaut.yml +97 -0
- data/install/juggernaut_hosts.yml +18 -0
- data/install/pushify.js +81 -0
- data/install/swfobject.js +5 -0
- data/lib/pushify/helper.rb +39 -0
- data/lib/pushify/install.rb +27 -0
- data/lib/pushify/juggernaut.rb +58 -0
- data/lib/pushify/rack.rb +26 -0
- data/lib/pushify/rails.rb +54 -0
- data/lib/pushify/server.rb +85 -0
- data/lib/pushify.rb +9 -0
- data/pkg/pushify-1.0.0.gem +0 -0
- data/pushify.gemspec +60 -0
- data/spec/css_push_spec.rb +7 -0
- data/spec/spec_helper.rb +9 -0
- metadata +92 -0
metadata
ADDED
@@ -0,0 +1,92 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pushify
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
version: 1.0.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Jason Tillery
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-01-20 00:00:00 -06:00
|
19
|
+
default_executable: pushify
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description:
|
23
|
+
email: tilleryj@thinklinkr.com
|
24
|
+
executables:
|
25
|
+
- pushify
|
26
|
+
extensions: []
|
27
|
+
|
28
|
+
extra_rdoc_files: []
|
29
|
+
|
30
|
+
files:
|
31
|
+
- .specification
|
32
|
+
- LICENSE
|
33
|
+
- README.markdown
|
34
|
+
- ROADMAP
|
35
|
+
- Rakefile
|
36
|
+
- VERSION
|
37
|
+
- bin/pushify
|
38
|
+
- install/expressinstall.swf
|
39
|
+
- install/json.js
|
40
|
+
- install/juggernaut.js
|
41
|
+
- install/juggernaut.swf
|
42
|
+
- install/juggernaut.yml
|
43
|
+
- install/juggernaut_hosts.yml
|
44
|
+
- install/pushify.js
|
45
|
+
- install/swfobject.js
|
46
|
+
- lib/pushify.rb
|
47
|
+
- lib/pushify/helper.rb
|
48
|
+
- lib/pushify/install.rb
|
49
|
+
- lib/pushify/juggernaut.rb
|
50
|
+
- lib/pushify/rack.rb
|
51
|
+
- lib/pushify/rails.rb
|
52
|
+
- lib/pushify/server.rb
|
53
|
+
- pkg/pushify-1.0.0.gem
|
54
|
+
- pushify.gemspec
|
55
|
+
- spec/css_push_spec.rb
|
56
|
+
- spec/spec_helper.rb
|
57
|
+
has_rdoc: true
|
58
|
+
homepage: http://github.com/tilleryj/pushify
|
59
|
+
licenses: []
|
60
|
+
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options:
|
63
|
+
- --charset=UTF-8
|
64
|
+
require_paths:
|
65
|
+
- lib
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
none: false
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
hash: 3
|
72
|
+
segments:
|
73
|
+
- 0
|
74
|
+
version: "0"
|
75
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
|
+
none: false
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
hash: 3
|
81
|
+
segments:
|
82
|
+
- 0
|
83
|
+
version: "0"
|
84
|
+
requirements: []
|
85
|
+
|
86
|
+
rubyforge_project:
|
87
|
+
rubygems_version: 1.3.7
|
88
|
+
signing_key:
|
89
|
+
specification_version: 3
|
90
|
+
summary: See updates you make to css, html, javascript, and images appear immediately in all of your browsers without having to refresh.
|
91
|
+
test_files: []
|
92
|
+
|