plezi 0.9.1 → 0.9.2
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 +4 -4
- data/CHANGELOG.md +14 -1
- data/lib/plezi/version.rb +1 -1
- data/plezi.gemspec +11 -2
- metadata +14 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 42fdb6ed987158652982b125bfe4164b5c2015dc
|
|
4
|
+
data.tar.gz: e0ce2fd542ce59a313570197c718fe0f420a94ff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d04fcf22270263b548c011c0d05be50a5f04962e67e3f81a86ab2ede142312241fc0f7756c3a026d4aa8184a9da5a33c92e0c217187f355978e16ff74b8988a3
|
|
7
|
+
data.tar.gz: 6e7cf7932aec26f04663ae84a62eef18f6dcf69a471db99a1befdd67ac30b8453810949e139dfaa3d1d00f5f275f81213bd81aadf70b0426afd694115913b8c3
|
data/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
5
|
+
Change log v.0.9.2
|
|
6
|
+
|
|
7
|
+
**Some API deprecation notice**
|
|
8
|
+
|
|
9
|
+
V.0.10.0 will be a major revision. It will _also_ change the Websocket API so that it conforms to the Javascript API, making it clearer.
|
|
10
|
+
|
|
11
|
+
Also, V. 0.10.0 will utilize the [GReactor](https://github.com/boazsegev/GReactor) IO reactor and the [GRHttp](https://github.com/boazsegev/GRHttp) HTTP and Websocket server gems. Both are native Ruby, so no C or Java extentions should be introduced.
|
|
12
|
+
|
|
13
|
+
This means that asynchronous tasking will now be handled by GReactor's API.
|
|
14
|
+
|
|
15
|
+
Make sure to test your app before upgrading to the 0.10.0 version.
|
|
16
|
+
|
|
17
|
+
***
|
|
18
|
+
|
|
5
19
|
Change log v.0.9.1
|
|
6
20
|
|
|
7
21
|
**changed**: Template Gemfile now enforces the Plezi version. Also, the template's demo page now demonstrates WebSocket broadcasting.
|
|
8
22
|
|
|
9
23
|
Minor updates.
|
|
10
24
|
|
|
11
|
-
|
|
12
25
|
***
|
|
13
26
|
|
|
14
27
|
Change log v.0.9.0
|
data/lib/plezi/version.rb
CHANGED
data/plezi.gemspec
CHANGED
|
@@ -21,7 +21,16 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.add_development_dependency "bundler", "~> 1.7"
|
|
22
22
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
23
23
|
|
|
24
|
-
spec.post_install_message = "Thank you for installing Plezi, the native Ruby Framework for real time web-apps."
|
|
25
|
-
|
|
24
|
+
# spec.post_install_message = "Thank you for installing Plezi, the native Ruby Framework for real time web-apps."
|
|
25
|
+
spec.post_install_message = "** Deprecation Warning:\n
|
|
26
|
+
V.0.10.0 will be a major revision. It will also change the Websocket API so that it conforms to the Javascript API, making it clearer.
|
|
27
|
+
|
|
28
|
+
Also, V. 0.10.0 will utilize the GReactor IO reactor and the GRHttp HTTP and Websocket server gems. Both are native Ruby, so no C or Java extentions should be introduced.
|
|
29
|
+
|
|
30
|
+
This means that asynchronous tasking will now be handled by GReactor's API.
|
|
31
|
+
|
|
32
|
+
Make sure to test your app before upgrading to the 0.10.0 version.
|
|
33
|
+
|
|
34
|
+
Thank you for installing Plezi, the native Ruby Framework for real time web-apps."
|
|
26
35
|
|
|
27
36
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: plezi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Boaz Segev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-07-
|
|
11
|
+
date: 2015-07-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -118,8 +118,18 @@ homepage: http://boazsegev.github.io/plezi/
|
|
|
118
118
|
licenses:
|
|
119
119
|
- MIT
|
|
120
120
|
metadata: {}
|
|
121
|
-
post_install_message:
|
|
122
|
-
|
|
121
|
+
post_install_message: |-
|
|
122
|
+
** Deprecation Warning:
|
|
123
|
+
|
|
124
|
+
V.0.10.0 will be a major revision. It will also change the Websocket API so that it conforms to the Javascript API, making it clearer.
|
|
125
|
+
|
|
126
|
+
Also, V. 0.10.0 will utilize the GReactor IO reactor and the GRHttp HTTP and Websocket server gems. Both are native Ruby, so no C or Java extentions should be introduced.
|
|
127
|
+
|
|
128
|
+
This means that asynchronous tasking will now be handled by GReactor's API.
|
|
129
|
+
|
|
130
|
+
Make sure to test your app before upgrading to the 0.10.0 version.
|
|
131
|
+
|
|
132
|
+
Thank you for installing Plezi, the native Ruby Framework for real time web-apps.
|
|
123
133
|
rdoc_options: []
|
|
124
134
|
require_paths:
|
|
125
135
|
- lib
|