render_async 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1519f96a0247273fcf694f6a85bae9d668ee92db
4
- data.tar.gz: 4a709ff43dbb29a8bccf09e285fe0e63f224aa2b
3
+ metadata.gz: 645326f6434ec60687de573fb760290c4d18fe67
4
+ data.tar.gz: 886b51be64cc99628b151290e34dfcb3f4d1854f
5
5
  SHA512:
6
- metadata.gz: 69aa88dbe5172447b87eb4da7cdf4b0869daa8d17b890f119e11b3a97b3ada3d35938f9f13cd54998596add714fd6cf270f3114ed1cc9054c74ff007fa9a1547
7
- data.tar.gz: c3cafb358d191c916c8e57d1819e967e241811c1020f27f6b36830412dfa51640c02eb0402465dabb566509461021fcddd66fd30b6a94694baa7e1623462776c
6
+ metadata.gz: 500f6acae0b23f1c3f79c3d6cb7e612dd9aefa3fc869c117b56b21f0c121c8c34aeb6bdc25dd88b8c903a2d68a0e673321de3ff7323e1e6ddfcf02187ac97192
7
+ data.tar.gz: 7a2496aeee1bde44c49c78041648c454ac8b648f4b5356b830b7b18b011e25c7a1135782eb0018202b776a7f7e46f1759cbb094027001fdcf9a44ce4e2379dae
data/README.md CHANGED
@@ -8,9 +8,9 @@ your partial.
8
8
 
9
9
  Workflow:
10
10
 
11
- 1. user visits a page =>
12
- 2. AJAX request on the controller action =>
13
- 3. controller renders a partial =>
11
+ 1. user visits a page =>
12
+ 2. AJAX request on the controller action =>
13
+ 3. controller renders a partial =>
14
14
  4. partials renders in the place where you put `render_async` helper
15
15
 
16
16
  Javascript is injected into `<%= content_for :render_async %>` so you choose
@@ -21,12 +21,12 @@ where to put it.
21
21
  Add this line to your application's Gemfile:
22
22
 
23
23
  ```ruby
24
- gem 'render_async', :source => "https://gem.fury.io/renderedtext/"
24
+ gem 'render_async'
25
25
  ```
26
26
 
27
27
  And then execute:
28
28
 
29
- $ bundle
29
+ $ bundle install
30
30
 
31
31
  ## Usage
32
32
 
@@ -1,3 +1,3 @@
1
1
  module RenderAsync
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: render_async
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kasper Grubbe
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  version: '0'
98
98
  requirements: []
99
99
  rubyforge_project:
100
- rubygems_version: 2.4.5.2
100
+ rubygems_version: 2.4.8
101
101
  signing_key:
102
102
  specification_version: 4
103
103
  summary: Render parts of the page asynchronously with AJAX