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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 17d2692e5f98a8cbbfc333e10d61614341562409
4
- data.tar.gz: 40ef8b53dc05917ff5cc3dfa86bfbc2525f99e7b
3
+ metadata.gz: 42fdb6ed987158652982b125bfe4164b5c2015dc
4
+ data.tar.gz: e0ce2fd542ce59a313570197c718fe0f420a94ff
5
5
  SHA512:
6
- metadata.gz: 669e3220343b8f2a17a29d5854cc55bac0b49ea434dd0defa76b23bfeab180b2b0f506bf0f72f3d8c0043a678322f7f63d194966309552a3bcaf19cc97834c91
7
- data.tar.gz: 728dbb5386131161aea6bb71d27c3a45ada870b9c5094be15b39c9303f388606ff1c9871f3ee0fa27459b50440ec4b898fbbcfe33607724b08a16c5d7d78c5f1
6
+ metadata.gz: d04fcf22270263b548c011c0d05be50a5f04962e67e3f81a86ab2ede142312241fc0f7756c3a026d4aa8184a9da5a33c92e0c217187f355978e16ff74b8988a3
7
+ data.tar.gz: 6e7cf7932aec26f04663ae84a62eef18f6dcf69a471db99a1befdd67ac30b8453810949e139dfaa3d1d00f5f275f81213bd81aadf70b0426afd694115913b8c3
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Plezi
2
- VERSION = "0.9.1"
2
+ VERSION = "0.9.2"
3
3
  end
@@ -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
- # spec.post_install_message = "** Deprecation Warning:\n- The current code for default error pages will be changed in version 0.9.0.\n- Default error pages will follow a different naming and location conventions.\n- The updated design will be part of the updated `plezi` helper script.\nPlease review your code before upgrading to the 0.9.0 version.\n\nThank you for installing Plezi, the native Ruby Framework for real time web-apps."
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.1
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-10 00:00:00.000000000 Z
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: Thank you for installing Plezi, the native Ruby Framework for
122
- real time web-apps.
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