wiselinks 0.3.5 → 0.3.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/Gemfile.lock +25 -25
  2. data/README.md +23 -16
  3. data/VERSION +1 -1
  4. data/wiselinks.gemspec +2 -2
  5. metadata +3 -3
data/Gemfile.lock CHANGED
@@ -1,12 +1,12 @@
1
1
  GEM
2
2
  remote: http://rubygems.org/
3
3
  specs:
4
- actionmailer (3.2.9)
5
- actionpack (= 3.2.9)
4
+ actionmailer (3.2.10)
5
+ actionpack (= 3.2.10)
6
6
  mail (~> 2.4.4)
7
- actionpack (3.2.9)
8
- activemodel (= 3.2.9)
9
- activesupport (= 3.2.9)
7
+ actionpack (3.2.10)
8
+ activemodel (= 3.2.10)
9
+ activesupport (= 3.2.10)
10
10
  builder (~> 3.0.0)
11
11
  erubis (~> 2.7.0)
12
12
  journey (~> 1.0.4)
@@ -14,18 +14,18 @@ GEM
14
14
  rack-cache (~> 1.2)
15
15
  rack-test (~> 0.6.1)
16
16
  sprockets (~> 2.2.1)
17
- activemodel (3.2.9)
18
- activesupport (= 3.2.9)
17
+ activemodel (3.2.10)
18
+ activesupport (= 3.2.10)
19
19
  builder (~> 3.0.0)
20
- activerecord (3.2.9)
21
- activemodel (= 3.2.9)
22
- activesupport (= 3.2.9)
20
+ activerecord (3.2.10)
21
+ activemodel (= 3.2.10)
22
+ activesupport (= 3.2.10)
23
23
  arel (~> 3.0.2)
24
24
  tzinfo (~> 0.3.29)
25
- activeresource (3.2.9)
26
- activemodel (= 3.2.9)
27
- activesupport (= 3.2.9)
28
- activesupport (3.2.9)
25
+ activeresource (3.2.10)
26
+ activemodel (= 3.2.10)
27
+ activesupport (= 3.2.10)
28
+ activesupport (3.2.10)
29
29
  i18n (~> 0.6)
30
30
  multi_json (~> 1.0)
31
31
  arel (3.0.2)
@@ -42,7 +42,7 @@ GEM
42
42
  rake
43
43
  rdoc
44
44
  journey (1.0.4)
45
- json (1.7.5)
45
+ json (1.7.6)
46
46
  mail (2.4.4)
47
47
  i18n (>= 0.4.0)
48
48
  mime-types (~> 1.16)
@@ -60,17 +60,17 @@ GEM
60
60
  rack
61
61
  rack-test (0.6.2)
62
62
  rack (>= 1.0)
63
- rails (3.2.9)
64
- actionmailer (= 3.2.9)
65
- actionpack (= 3.2.9)
66
- activerecord (= 3.2.9)
67
- activeresource (= 3.2.9)
68
- activesupport (= 3.2.9)
63
+ rails (3.2.10)
64
+ actionmailer (= 3.2.10)
65
+ actionpack (= 3.2.10)
66
+ activerecord (= 3.2.10)
67
+ activeresource (= 3.2.10)
68
+ activesupport (= 3.2.10)
69
69
  bundler (~> 1.0)
70
- railties (= 3.2.9)
71
- railties (3.2.9)
72
- actionpack (= 3.2.9)
73
- activesupport (= 3.2.9)
70
+ railties (= 3.2.10)
71
+ railties (3.2.10)
72
+ actionpack (= 3.2.10)
73
+ activesupport (= 3.2.10)
74
74
  rack-ssl (~> 1.3.2)
75
75
  rake (>= 0.8.7)
76
76
  rdoc (~> 3.4)
data/README.md CHANGED
@@ -8,52 +8,59 @@ Wiselinks makes following links and submitting some forms in your web applicatio
8
8
 
9
9
  You may find Wiselinks similar to [Turbolinks](https://github.com/rails/turbolinks) or [Pjax](https://github.com/defunkt/jquery-pjax), but Wiselinks have several rather important differences from both projects. We tried to make Wiselinks as easy to use as Turbolinks are but also as configurable as Pjax.
10
10
 
11
- ##Compatibility
11
+ ## Compatibility
12
12
 
13
13
  Wiselinks uses [History.js](https://github.com/balupton/History.js/) library to perform requests.
14
14
 
15
15
  Wiselinks works in all major browsers including browsers that do not support HTML History API out of the box.
16
16
 
17
- ## In Comparison to Turbolinks
17
+ ## In Comparison to Turbolinks and PJAX
18
18
 
19
19
  <table>
20
20
  <thead>
21
21
  <tr>
22
22
  <th></th>
23
- <th>Turbolinks</th>
24
23
  <th>Wiselinks</th>
24
+ <th>Turbolinks</th>
25
+ <th>PJAX</th>
25
26
  </tr>
26
27
  </thead>
27
28
  <tbody>
28
29
  <tr>
29
- <td>Work in browsers with History API</td>
30
- <td>Yes</td>
30
+ <td>Work in HTML5 browsers</td>
31
31
  <td><strong>Yes</strong></td>
32
+ <td>Yes</td>
33
+ <td>Yes</td>
32
34
  </tr>
33
35
  <tr>
34
36
  <td>Work in browsers without History API</td>
35
- <td>No, degrades to normal request processing.</td>
36
- <td><strong>Yes</strong></td>
37
+ <td><strong>Yes</strong>, with hashbang (can be switched off)</td>
38
+ <td>No, degrades to normal request processing</td>
39
+ <td>No, degrades to normal request processing</td>
37
40
  </tr>
38
41
  <tr>
39
42
  <td>Work without JavaScript</td>
40
- <td>No, degrades to normal request processing.</td>
41
- <td>No, degrades to normal request processing.</td>
43
+ <td>No, degrades to normal request processing</td>
44
+ <td>No, degrades to normal request processing</td>
45
+ <td>No, degrades to normal request processing</td>
42
46
  </tr>
43
47
  <tr>
44
- <td>Form processing</td>
45
- <td>No</td>
48
+ <td>Form processing</td>
46
49
  <td><strong>Yes</strong></td>
50
+ <td>No</td>
51
+ <td>Yes (experimental feature)</td>
47
52
  </tr>
48
53
  <tr>
49
- <td>Form parameters optimization</td>
50
- <td>No</td>
54
+ <td>Form parameters optimization</td>
51
55
  <td><strong>Yes</strong></td>
56
+ <td>No</td>
57
+ <td>No</td>
52
58
  </tr>
53
59
  <tr>
54
- <td>Assets change detection</td>
55
- <td>Yes, by parsing document head on every request.</td>
56
- <td><strong>Yes</strong>, by calculating assets MD5 hash on boot.</td>
60
+ <td>Assets change detection</td>
61
+ <td><strong>Yes</strong>, by calculating assets MD5 hash on boot</td>
62
+ <td>Yes, by parsing document head on every request</td>
63
+ <td>No</td>
57
64
  </tr>
58
65
  </tbody>
59
66
  </table>
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.5
1
+ 0.3.6
data/wiselinks.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "wiselinks"
8
- s.version = "0.3.5"
8
+ s.version = "0.3.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Igor Alexandrov", "Alexey Solilin", "Julia Egorova"]
12
- s.date = "2012-12-28"
12
+ s.date = "2013-01-05"
13
13
  s.email = "igor.alexandrov@gmail.com"
14
14
  s.extra_rdoc_files = [
15
15
  "LICENSE",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wiselinks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2012-12-28 00:00:00.000000000 Z
14
+ date: 2013-01-05 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: shoulda
@@ -168,7 +168,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
168
168
  version: '0'
169
169
  segments:
170
170
  - 0
171
- hash: -1607414637639133094
171
+ hash: 1683382934064275963
172
172
  required_rubygems_version: !ruby/object:Gem::Requirement
173
173
  none: false
174
174
  requirements: