ajaxify_rails 0.0.4 → 0.0.5
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/ajaxify_rails.gemspec +3 -2
- data/lib/ajaxify_rails/version.rb +1 -1
- metadata +10 -8
data/ajaxify_rails.gemspec
CHANGED
@@ -4,11 +4,12 @@ require File.expand_path('../lib/ajaxify_rails/version', __FILE__)
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Nico Ritsche"]
|
6
6
|
gem.email = ["ncrdevmail@gmail.com"]
|
7
|
-
gem.description = %q{Rails
|
7
|
+
gem.description = %q{Automatically makes your Rails app loading content in the background via ajax. Works by turning all internal links into
|
8
|
+
ajax links that trigger an update of the page's content area. Also form submission are automatically turned into ajax requests.
|
8
9
|
Uses the html5 history interface for changing the url and making the browser's back and forward buttons working with ajax.
|
9
10
|
Falls back to a hash based approach for browsers without the history interface (like Internet Explorer).
|
10
11
|
Transparently handles redirects and supports flash messages and page titles. Requires Ruby 1.9 and the asset pipeline.}
|
11
|
-
gem.summary = %q{Rails gem for automatically turning internal links into ajax links that load content without a full page reload.}
|
12
|
+
gem.summary = %q{Rails gem for automatically turning internal links/forms into ajax links/forms that load content without a full page reload.}
|
12
13
|
gem.homepage = "https://github.com/ncri/ajaxify_rails"
|
13
14
|
|
14
15
|
gem.files = `git ls-files`.split($\)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ajaxify_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -27,9 +27,11 @@ dependencies:
|
|
27
27
|
- - ! '>='
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: 3.1.0
|
30
|
-
description: ! "
|
31
|
-
|
32
|
-
|
30
|
+
description: ! "Automatically makes your Rails app loading content in the background
|
31
|
+
via ajax. Works by turning all internal links into\n ajax
|
32
|
+
links that trigger an update of the page's content area. Also form submission are
|
33
|
+
automatically turned into ajax requests.\n Uses the html5
|
34
|
+
history interface for changing the url and making the browser's back and forward
|
33
35
|
buttons working with ajax.\n Falls back to a hash based
|
34
36
|
approach for browsers without the history interface (like Internet Explorer).\n
|
35
37
|
\ Transparently handles redirects and supports flash messages
|
@@ -65,7 +67,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
65
67
|
version: '0'
|
66
68
|
segments:
|
67
69
|
- 0
|
68
|
-
hash:
|
70
|
+
hash: 2597256401823922837
|
69
71
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
72
|
none: false
|
71
73
|
requirements:
|
@@ -74,12 +76,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
74
76
|
version: '0'
|
75
77
|
segments:
|
76
78
|
- 0
|
77
|
-
hash:
|
79
|
+
hash: 2597256401823922837
|
78
80
|
requirements: []
|
79
81
|
rubyforge_project:
|
80
82
|
rubygems_version: 1.8.24
|
81
83
|
signing_key:
|
82
84
|
specification_version: 3
|
83
|
-
summary: Rails gem for automatically turning internal links into ajax links
|
84
|
-
content without a full page reload.
|
85
|
+
summary: Rails gem for automatically turning internal links/forms into ajax links/forms
|
86
|
+
that load content without a full page reload.
|
85
87
|
test_files: []
|