progressive_render 0.4.3 → 0.6.0

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: c0055d64a0089eea6faf3c3c0151b1003b55e90d
4
- data.tar.gz: b8035bf632af47521f3e31755f7e08deb172f0e7
3
+ metadata.gz: 0e59aa059a78e3501f3223175f78dd4b2b389f39
4
+ data.tar.gz: 79512ffbfbc0dd674e72ac430a9673f2b0f2a57f
5
5
  SHA512:
6
- metadata.gz: 6a07fba3ab6163da94523596947685023de5785114c2b714d8b29071c5de78e1d2cf4c565dabcbdf7be35d5c7950c9a1a4ffc03ee890dca997a496c0324ec298
7
- data.tar.gz: 45add62929d21577da019f699e0fe3906f80ec1929c4af5486f7c7c09aeeb8a4bfc7de965c58552f6649f6bbbb54ef185a9c3903330ccd7879f8d62a8ee453a5
6
+ metadata.gz: c2bcbd711ba7401b0b3a769f3516d09a9d9768ec6696e71f09dd79a0d8a92e44975f698eb611a4490555723ca979885a70904937e6199dc7e6988421811fab43
7
+ data.tar.gz: 7f8e25f4c7cbf45c05449ae87dac6b162f4975e5ea391cb88fdc308474448af319e7b1b60901fbc58901196906822d770186f1829e4c25a475bec9e08b9f1b6b
data/.rubocop.yml CHANGED
@@ -5,6 +5,7 @@ Metrics/LineLength:
5
5
 
6
6
  AllCops:
7
7
  Exclude:
8
+ - Appraisals
8
9
  - spec/dummy/bin/rake
9
10
  - spec/dummy/bin/rails
10
11
  - spec/dummy/bin/spring
data/.rubocop_todo.yml CHANGED
@@ -1,18 +1,59 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2016-07-31 14:02:10 -0700 using RuboCop version 0.42.0.
3
+ # on 2017-04-13 10:49:43 -0400 using RuboCop version 0.48.1.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
+ # Offense count: 3
10
+ # Cop supports --auto-correct.
11
+ # Configuration parameters: Include, TreatCommentsAsGroupSeparators.
12
+ # Include: **/Gemfile, **/gems.rb
13
+ Bundler/OrderedGems:
14
+ Exclude:
15
+ - 'spec/dummy/Gemfile'
16
+
9
17
  # Offense count: 1
10
18
  Metrics/AbcSize:
11
- Exclude:
12
- - 'spec/controller_request_spec.rb'
19
+ Max: 49
13
20
 
14
21
  # Offense count: 3
22
+ # Configuration parameters: CountComments, ExcludedMethods.
23
+ Metrics/BlockLength:
24
+ Max: 41
25
+
26
+ # Offense count: 1
15
27
  # Configuration parameters: CountComments.
16
28
  Metrics/MethodLength:
29
+ Max: 23
30
+
31
+ # Offense count: 1
32
+ # Cop supports --auto-correct.
33
+ Style/EmptyLineAfterMagicComment:
34
+ Exclude:
35
+ - 'progressive_load.gemspec'
36
+
37
+ # Offense count: 5
38
+ # Cop supports --auto-correct.
39
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
40
+ # SupportedStyles: compact, expanded
41
+ Style/EmptyMethod:
42
+ Exclude:
43
+ - 'spec/dummy/app/controllers/load_test_controller.rb'
44
+
45
+ # Offense count: 1
46
+ # Cop supports --auto-correct.
47
+ # Configuration parameters: InverseMethods, InverseBlocks.
48
+ Style/InverseMethods:
49
+ Exclude:
50
+ - 'lib/progressive_render/rails/view.rb'
51
+
52
+ # Offense count: 3
53
+ # Cop supports --auto-correct.
54
+ # Configuration parameters: PreferredDelimiters.
55
+ Style/PercentLiteralDelimiters:
17
56
  Exclude:
18
- - 'spec/controller_request_spec.rb'
57
+ - 'Rakefile'
58
+ - 'lib/progressive_render/rails/engine.rb'
59
+ - 'spec/dummy/config/routes.rb'
data/.travis.yml CHANGED
@@ -12,8 +12,12 @@ cache: bundler
12
12
 
13
13
  before_install: gem install bundler -v 1.10.3
14
14
 
15
+ after_script:
16
+ - codeclimate-test-reporter < lcov.info
17
+
15
18
  gemfile:
16
- - gemfiles/rails_5_0_0_beta4.gemfile
19
+ - gemfiles/rails_5_0_2.gemfile
20
+ - gemfiles/rails_5_0_1.gemfile
17
21
  - gemfiles/rails_4_2.gemfile
18
22
  - gemfiles/rails_4_1.gemfile
19
23
 
@@ -23,4 +27,6 @@ matrix:
23
27
  - rvm: ruby-head
24
28
  exclude:
25
29
  - rvm: 2.1.10
26
- gemfile: gemfiles/rails_5_0_0_beta4.gemfile
30
+ gemfile: gemfiles/rails_5_0_2.gemfile
31
+ - rvm: 2.1.10
32
+ gemfile: gemfiles/rails_5_0_1.gemfile
data/Appraisals CHANGED
@@ -1,5 +1,10 @@
1
- appraise "rails-5-0-0-beta4" do
2
- gem "rails", "5.0.0.beta4"
1
+ appraise "rails-5-0-1" do
2
+ gem "rails", "5.0.1"
3
+ gem "nokogiri"
4
+ end
5
+
6
+ appraise "rails-5-0-2" do
7
+ gem "rails", "5.0.2"
3
8
  gem "nokogiri"
4
9
  end
5
10
 
@@ -11,4 +16,4 @@ end
11
16
  appraise "rails-4-1" do
12
17
  gem "rails", "4.1.13"
13
18
  gem "nokogiri"
14
- end
19
+ end
data/Rakefile CHANGED
@@ -5,4 +5,4 @@ require 'rubocop/rake_task'
5
5
  RSpec::Core::RakeTask.new(:spec)
6
6
  RuboCop::RakeTask.new
7
7
 
8
- task default: %w(rubocop spec)
8
+ task default: %w(spec rubocop)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- progressive_render (0.4.3)
4
+ progressive_render (0.6.0)
5
5
  coffee-rails
6
6
  jquery-rails
7
7
  nokogiri
@@ -58,7 +58,7 @@ GEM
58
58
  coffee-script (2.4.1)
59
59
  coffee-script-source
60
60
  execjs
61
- coffee-script-source (1.10.0)
61
+ coffee-script-source (1.12.2)
62
62
  columnize (0.9.0)
63
63
  diff-lcs (1.2.5)
64
64
  docile (1.1.5)
@@ -135,8 +135,8 @@ GEM
135
135
  ruby-progressbar (~> 1.7)
136
136
  unicode-display_width (~> 1.0, >= 1.0.1)
137
137
  ruby-progressbar (1.8.1)
138
- sass (3.4.22)
139
- sass-rails (5.0.5)
138
+ sass (3.4.23)
139
+ sass-rails (5.0.6)
140
140
  railties (>= 4.0.0, < 6)
141
141
  sass (~> 3.1)
142
142
  sprockets (>= 2.8, < 4.0)
@@ -157,10 +157,10 @@ GEM
157
157
  sqlite3 (1.3.10)
158
158
  thor (0.19.1)
159
159
  thread_safe (0.3.5)
160
- tilt (2.0.5)
160
+ tilt (2.0.7)
161
161
  tzinfo (1.2.2)
162
162
  thread_safe (~> 0.1)
163
- uglifier (3.0.0)
163
+ uglifier (3.2.0)
164
164
  execjs (>= 0.3.0, < 3)
165
165
  unicode-display_width (1.1.0)
166
166
 
@@ -182,4 +182,4 @@ DEPENDENCIES
182
182
  sqlite3
183
183
 
184
184
  BUNDLED WITH
185
- 1.12.5
185
+ 1.13.6
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- progressive_render (0.4.3)
4
+ progressive_render (0.6.0)
5
5
  coffee-rails
6
6
  jquery-rails
7
7
  nokogiri
@@ -67,7 +67,7 @@ GEM
67
67
  coffee-script (2.4.1)
68
68
  coffee-script-source
69
69
  execjs
70
- coffee-script-source (1.10.0)
70
+ coffee-script-source (1.12.2)
71
71
  columnize (0.9.0)
72
72
  diff-lcs (1.2.5)
73
73
  docile (1.1.5)
@@ -76,7 +76,7 @@ GEM
76
76
  globalid (0.3.6)
77
77
  activesupport (>= 4.1.0)
78
78
  i18n (0.7.0)
79
- jquery-rails (4.1.1)
79
+ jquery-rails (4.3.1)
80
80
  rails-dom-testing (>= 1, < 3)
81
81
  railties (>= 4.2.0)
82
82
  thor (>= 0.14, < 2.0)
@@ -158,8 +158,8 @@ GEM
158
158
  ruby-progressbar (~> 1.7)
159
159
  unicode-display_width (~> 1.0, >= 1.0.1)
160
160
  ruby-progressbar (1.8.1)
161
- sass (3.4.22)
162
- sass-rails (5.0.5)
161
+ sass (3.4.23)
162
+ sass-rails (5.0.6)
163
163
  railties (>= 4.0.0, < 6)
164
164
  sass (~> 3.1)
165
165
  sprockets (>= 2.8, < 4.0)
@@ -180,10 +180,10 @@ GEM
180
180
  sqlite3 (1.3.10)
181
181
  thor (0.19.1)
182
182
  thread_safe (0.3.5)
183
- tilt (2.0.5)
183
+ tilt (2.0.7)
184
184
  tzinfo (1.2.2)
185
185
  thread_safe (~> 0.1)
186
- uglifier (3.0.0)
186
+ uglifier (3.2.0)
187
187
  execjs (>= 0.3.0, < 3)
188
188
  unicode-display_width (1.1.0)
189
189
 
@@ -205,4 +205,4 @@ DEPENDENCIES
205
205
  sqlite3
206
206
 
207
207
  BUNDLED WITH
208
- 1.12.5
208
+ 1.13.6
@@ -3,7 +3,7 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "rails", "5.0.0.beta4"
6
+ gem "rails", "5.0.1"
7
7
  gem "nokogiri"
8
8
 
9
9
  gemspec :path => "../"
@@ -0,0 +1,215 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ progressive_render (0.6.0)
5
+ coffee-rails
6
+ jquery-rails
7
+ nokogiri
8
+ rails (>= 4.1)
9
+ railties
10
+ sass
11
+ sass-rails
12
+ uglifier
13
+
14
+ GEM
15
+ remote: https://rubygems.org/
16
+ specs:
17
+ actioncable (5.0.1)
18
+ actionpack (= 5.0.1)
19
+ nio4r (~> 1.2)
20
+ websocket-driver (~> 0.6.1)
21
+ actionmailer (5.0.1)
22
+ actionpack (= 5.0.1)
23
+ actionview (= 5.0.1)
24
+ activejob (= 5.0.1)
25
+ mail (~> 2.5, >= 2.5.4)
26
+ rails-dom-testing (~> 2.0)
27
+ actionpack (5.0.1)
28
+ actionview (= 5.0.1)
29
+ activesupport (= 5.0.1)
30
+ rack (~> 2.0)
31
+ rack-test (~> 0.6.3)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
+ actionview (5.0.1)
35
+ activesupport (= 5.0.1)
36
+ builder (~> 3.1)
37
+ erubis (~> 2.7.0)
38
+ rails-dom-testing (~> 2.0)
39
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
40
+ activejob (5.0.1)
41
+ activesupport (= 5.0.1)
42
+ globalid (>= 0.3.6)
43
+ activemodel (5.0.1)
44
+ activesupport (= 5.0.1)
45
+ activerecord (5.0.1)
46
+ activemodel (= 5.0.1)
47
+ activesupport (= 5.0.1)
48
+ arel (~> 7.0)
49
+ activesupport (5.0.1)
50
+ concurrent-ruby (~> 1.0, >= 1.0.2)
51
+ i18n (~> 0.7)
52
+ minitest (~> 5.1)
53
+ tzinfo (~> 1.1)
54
+ appraisal (2.1.0)
55
+ bundler
56
+ rake
57
+ thor (>= 0.14.0)
58
+ arel (7.1.4)
59
+ ast (2.3.0)
60
+ builder (3.2.3)
61
+ byebug (9.0.6)
62
+ codeclimate-test-reporter (1.0.8)
63
+ simplecov (<= 0.13)
64
+ coderay (1.1.1)
65
+ coffee-rails (4.2.1)
66
+ coffee-script (>= 2.2.0)
67
+ railties (>= 4.0.0, < 5.2.x)
68
+ coffee-script (2.4.1)
69
+ coffee-script-source
70
+ execjs
71
+ coffee-script-source (1.12.2)
72
+ concurrent-ruby (1.0.5)
73
+ diff-lcs (1.3)
74
+ docile (1.1.5)
75
+ erubis (2.7.0)
76
+ execjs (2.7.0)
77
+ globalid (0.3.7)
78
+ activesupport (>= 4.1.0)
79
+ i18n (0.8.1)
80
+ jquery-rails (4.3.1)
81
+ rails-dom-testing (>= 1, < 3)
82
+ railties (>= 4.2.0)
83
+ thor (>= 0.14, < 2.0)
84
+ json (2.0.4)
85
+ loofah (2.0.3)
86
+ nokogiri (>= 1.5.9)
87
+ mail (2.6.4)
88
+ mime-types (>= 1.16, < 4)
89
+ method_source (0.8.2)
90
+ mime-types (3.1)
91
+ mime-types-data (~> 3.2015)
92
+ mime-types-data (3.2016.0521)
93
+ mini_portile2 (2.1.0)
94
+ minitest (5.10.1)
95
+ nio4r (1.2.1)
96
+ nokogiri (1.7.1)
97
+ mini_portile2 (~> 2.1.0)
98
+ parser (2.4.0.0)
99
+ ast (~> 2.2)
100
+ powerpack (0.1.1)
101
+ pry (0.10.4)
102
+ coderay (~> 1.1.0)
103
+ method_source (~> 0.8.1)
104
+ slop (~> 3.4)
105
+ pry-byebug (3.4.2)
106
+ byebug (~> 9.0)
107
+ pry (~> 0.10)
108
+ rack (2.0.1)
109
+ rack-test (0.6.3)
110
+ rack (>= 1.0)
111
+ rails (5.0.1)
112
+ actioncable (= 5.0.1)
113
+ actionmailer (= 5.0.1)
114
+ actionpack (= 5.0.1)
115
+ actionview (= 5.0.1)
116
+ activejob (= 5.0.1)
117
+ activemodel (= 5.0.1)
118
+ activerecord (= 5.0.1)
119
+ activesupport (= 5.0.1)
120
+ bundler (>= 1.3.0, < 2.0)
121
+ railties (= 5.0.1)
122
+ sprockets-rails (>= 2.0.0)
123
+ rails-dom-testing (2.0.2)
124
+ activesupport (>= 4.2.0, < 6.0)
125
+ nokogiri (~> 1.6)
126
+ rails-html-sanitizer (1.0.3)
127
+ loofah (~> 2.0)
128
+ railties (5.0.1)
129
+ actionpack (= 5.0.1)
130
+ activesupport (= 5.0.1)
131
+ method_source
132
+ rake (>= 0.8.7)
133
+ thor (>= 0.18.1, < 2.0)
134
+ rainbow (2.2.1)
135
+ rake (10.5.0)
136
+ rspec (3.5.0)
137
+ rspec-core (~> 3.5.0)
138
+ rspec-expectations (~> 3.5.0)
139
+ rspec-mocks (~> 3.5.0)
140
+ rspec-core (3.5.4)
141
+ rspec-support (~> 3.5.0)
142
+ rspec-expectations (3.5.0)
143
+ diff-lcs (>= 1.2.0, < 2.0)
144
+ rspec-support (~> 3.5.0)
145
+ rspec-mocks (3.5.0)
146
+ diff-lcs (>= 1.2.0, < 2.0)
147
+ rspec-support (~> 3.5.0)
148
+ rspec-rails (3.5.2)
149
+ actionpack (>= 3.0)
150
+ activesupport (>= 3.0)
151
+ railties (>= 3.0)
152
+ rspec-core (~> 3.5.0)
153
+ rspec-expectations (~> 3.5.0)
154
+ rspec-mocks (~> 3.5.0)
155
+ rspec-support (~> 3.5.0)
156
+ rspec-support (3.5.0)
157
+ rubocop (0.48.1)
158
+ parser (>= 2.3.3.1, < 3.0)
159
+ powerpack (~> 0.1)
160
+ rainbow (>= 1.99.1, < 3.0)
161
+ ruby-progressbar (~> 1.7)
162
+ unicode-display_width (~> 1.0, >= 1.0.1)
163
+ ruby-progressbar (1.8.1)
164
+ sass (3.4.23)
165
+ sass-rails (5.0.6)
166
+ railties (>= 4.0.0, < 6)
167
+ sass (~> 3.1)
168
+ sprockets (>= 2.8, < 4.0)
169
+ sprockets-rails (>= 2.0, < 4.0)
170
+ tilt (>= 1.1, < 3)
171
+ simplecov (0.13.0)
172
+ docile (~> 1.1.0)
173
+ json (>= 1.8, < 3)
174
+ simplecov-html (~> 0.10.0)
175
+ simplecov-html (0.10.0)
176
+ slop (3.6.0)
177
+ sprockets (3.7.1)
178
+ concurrent-ruby (~> 1.0)
179
+ rack (> 1, < 3)
180
+ sprockets-rails (3.2.0)
181
+ actionpack (>= 4.0)
182
+ activesupport (>= 4.0)
183
+ sprockets (>= 3.0.0)
184
+ sqlite3 (1.3.13)
185
+ thor (0.19.4)
186
+ thread_safe (0.3.6)
187
+ tilt (2.0.7)
188
+ tzinfo (1.2.3)
189
+ thread_safe (~> 0.1)
190
+ uglifier (3.2.0)
191
+ execjs (>= 0.3.0, < 3)
192
+ unicode-display_width (1.2.1)
193
+ websocket-driver (0.6.5)
194
+ websocket-extensions (>= 0.1.0)
195
+ websocket-extensions (0.1.2)
196
+
197
+ PLATFORMS
198
+ ruby
199
+
200
+ DEPENDENCIES
201
+ appraisal
202
+ bundler (~> 1.10)
203
+ codeclimate-test-reporter
204
+ nokogiri
205
+ progressive_render!
206
+ pry-byebug
207
+ rails (= 5.0.1)
208
+ rake (~> 10.0)
209
+ rspec
210
+ rspec-rails
211
+ rubocop
212
+ sqlite3
213
+
214
+ BUNDLED WITH
215
+ 1.13.6
@@ -0,0 +1,9 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "rails", "5.0.2"
7
+ gem "nokogiri"
8
+
9
+ gemspec :path => "../"
@@ -0,0 +1,215 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ progressive_render (0.6.0)
5
+ coffee-rails
6
+ jquery-rails
7
+ nokogiri
8
+ rails (>= 4.1)
9
+ railties
10
+ sass
11
+ sass-rails
12
+ uglifier
13
+
14
+ GEM
15
+ remote: https://rubygems.org/
16
+ specs:
17
+ actioncable (5.0.2)
18
+ actionpack (= 5.0.2)
19
+ nio4r (>= 1.2, < 3.0)
20
+ websocket-driver (~> 0.6.1)
21
+ actionmailer (5.0.2)
22
+ actionpack (= 5.0.2)
23
+ actionview (= 5.0.2)
24
+ activejob (= 5.0.2)
25
+ mail (~> 2.5, >= 2.5.4)
26
+ rails-dom-testing (~> 2.0)
27
+ actionpack (5.0.2)
28
+ actionview (= 5.0.2)
29
+ activesupport (= 5.0.2)
30
+ rack (~> 2.0)
31
+ rack-test (~> 0.6.3)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
+ actionview (5.0.2)
35
+ activesupport (= 5.0.2)
36
+ builder (~> 3.1)
37
+ erubis (~> 2.7.0)
38
+ rails-dom-testing (~> 2.0)
39
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
40
+ activejob (5.0.2)
41
+ activesupport (= 5.0.2)
42
+ globalid (>= 0.3.6)
43
+ activemodel (5.0.2)
44
+ activesupport (= 5.0.2)
45
+ activerecord (5.0.2)
46
+ activemodel (= 5.0.2)
47
+ activesupport (= 5.0.2)
48
+ arel (~> 7.0)
49
+ activesupport (5.0.2)
50
+ concurrent-ruby (~> 1.0, >= 1.0.2)
51
+ i18n (~> 0.7)
52
+ minitest (~> 5.1)
53
+ tzinfo (~> 1.1)
54
+ appraisal (2.1.0)
55
+ bundler
56
+ rake
57
+ thor (>= 0.14.0)
58
+ arel (7.1.4)
59
+ ast (2.3.0)
60
+ builder (3.2.3)
61
+ byebug (9.0.6)
62
+ codeclimate-test-reporter (1.0.8)
63
+ simplecov (<= 0.13)
64
+ coderay (1.1.1)
65
+ coffee-rails (4.2.1)
66
+ coffee-script (>= 2.2.0)
67
+ railties (>= 4.0.0, < 5.2.x)
68
+ coffee-script (2.4.1)
69
+ coffee-script-source
70
+ execjs
71
+ coffee-script-source (1.12.2)
72
+ concurrent-ruby (1.0.5)
73
+ diff-lcs (1.3)
74
+ docile (1.1.5)
75
+ erubis (2.7.0)
76
+ execjs (2.7.0)
77
+ globalid (0.3.7)
78
+ activesupport (>= 4.1.0)
79
+ i18n (0.8.1)
80
+ jquery-rails (4.3.1)
81
+ rails-dom-testing (>= 1, < 3)
82
+ railties (>= 4.2.0)
83
+ thor (>= 0.14, < 2.0)
84
+ json (2.0.4)
85
+ loofah (2.0.3)
86
+ nokogiri (>= 1.5.9)
87
+ mail (2.6.4)
88
+ mime-types (>= 1.16, < 4)
89
+ method_source (0.8.2)
90
+ mime-types (3.1)
91
+ mime-types-data (~> 3.2015)
92
+ mime-types-data (3.2016.0521)
93
+ mini_portile2 (2.1.0)
94
+ minitest (5.10.1)
95
+ nio4r (2.0.0)
96
+ nokogiri (1.7.1)
97
+ mini_portile2 (~> 2.1.0)
98
+ parser (2.4.0.0)
99
+ ast (~> 2.2)
100
+ powerpack (0.1.1)
101
+ pry (0.10.4)
102
+ coderay (~> 1.1.0)
103
+ method_source (~> 0.8.1)
104
+ slop (~> 3.4)
105
+ pry-byebug (3.4.2)
106
+ byebug (~> 9.0)
107
+ pry (~> 0.10)
108
+ rack (2.0.1)
109
+ rack-test (0.6.3)
110
+ rack (>= 1.0)
111
+ rails (5.0.2)
112
+ actioncable (= 5.0.2)
113
+ actionmailer (= 5.0.2)
114
+ actionpack (= 5.0.2)
115
+ actionview (= 5.0.2)
116
+ activejob (= 5.0.2)
117
+ activemodel (= 5.0.2)
118
+ activerecord (= 5.0.2)
119
+ activesupport (= 5.0.2)
120
+ bundler (>= 1.3.0, < 2.0)
121
+ railties (= 5.0.2)
122
+ sprockets-rails (>= 2.0.0)
123
+ rails-dom-testing (2.0.2)
124
+ activesupport (>= 4.2.0, < 6.0)
125
+ nokogiri (~> 1.6)
126
+ rails-html-sanitizer (1.0.3)
127
+ loofah (~> 2.0)
128
+ railties (5.0.2)
129
+ actionpack (= 5.0.2)
130
+ activesupport (= 5.0.2)
131
+ method_source
132
+ rake (>= 0.8.7)
133
+ thor (>= 0.18.1, < 2.0)
134
+ rainbow (2.2.1)
135
+ rake (10.5.0)
136
+ rspec (3.5.0)
137
+ rspec-core (~> 3.5.0)
138
+ rspec-expectations (~> 3.5.0)
139
+ rspec-mocks (~> 3.5.0)
140
+ rspec-core (3.5.4)
141
+ rspec-support (~> 3.5.0)
142
+ rspec-expectations (3.5.0)
143
+ diff-lcs (>= 1.2.0, < 2.0)
144
+ rspec-support (~> 3.5.0)
145
+ rspec-mocks (3.5.0)
146
+ diff-lcs (>= 1.2.0, < 2.0)
147
+ rspec-support (~> 3.5.0)
148
+ rspec-rails (3.5.2)
149
+ actionpack (>= 3.0)
150
+ activesupport (>= 3.0)
151
+ railties (>= 3.0)
152
+ rspec-core (~> 3.5.0)
153
+ rspec-expectations (~> 3.5.0)
154
+ rspec-mocks (~> 3.5.0)
155
+ rspec-support (~> 3.5.0)
156
+ rspec-support (3.5.0)
157
+ rubocop (0.48.1)
158
+ parser (>= 2.3.3.1, < 3.0)
159
+ powerpack (~> 0.1)
160
+ rainbow (>= 1.99.1, < 3.0)
161
+ ruby-progressbar (~> 1.7)
162
+ unicode-display_width (~> 1.0, >= 1.0.1)
163
+ ruby-progressbar (1.8.1)
164
+ sass (3.4.23)
165
+ sass-rails (5.0.6)
166
+ railties (>= 4.0.0, < 6)
167
+ sass (~> 3.1)
168
+ sprockets (>= 2.8, < 4.0)
169
+ sprockets-rails (>= 2.0, < 4.0)
170
+ tilt (>= 1.1, < 3)
171
+ simplecov (0.13.0)
172
+ docile (~> 1.1.0)
173
+ json (>= 1.8, < 3)
174
+ simplecov-html (~> 0.10.0)
175
+ simplecov-html (0.10.0)
176
+ slop (3.6.0)
177
+ sprockets (3.7.1)
178
+ concurrent-ruby (~> 1.0)
179
+ rack (> 1, < 3)
180
+ sprockets-rails (3.2.0)
181
+ actionpack (>= 4.0)
182
+ activesupport (>= 4.0)
183
+ sprockets (>= 3.0.0)
184
+ sqlite3 (1.3.13)
185
+ thor (0.19.4)
186
+ thread_safe (0.3.6)
187
+ tilt (2.0.7)
188
+ tzinfo (1.2.3)
189
+ thread_safe (~> 0.1)
190
+ uglifier (3.2.0)
191
+ execjs (>= 0.3.0, < 3)
192
+ unicode-display_width (1.2.1)
193
+ websocket-driver (0.6.5)
194
+ websocket-extensions (>= 0.1.0)
195
+ websocket-extensions (0.1.2)
196
+
197
+ PLATFORMS
198
+ ruby
199
+
200
+ DEPENDENCIES
201
+ appraisal
202
+ bundler (~> 1.10)
203
+ codeclimate-test-reporter
204
+ nokogiri
205
+ progressive_render!
206
+ pry-byebug
207
+ rails (= 5.0.2)
208
+ rake (~> 10.0)
209
+ rspec
210
+ rspec-rails
211
+ rubocop
212
+ sqlite3
213
+
214
+ BUNDLED WITH
215
+ 1.13.6
@@ -1,4 +1,5 @@
1
1
  require 'uri'
2
+ require 'rack/utils'
2
3
 
3
4
  module ProgressiveRender
4
5
  module Rack
@@ -30,7 +31,7 @@ module ProgressiveRender
30
31
  query = @request.GET.clone
31
32
  query[FRAGMENT_KEY] = fragment_name
32
33
 
33
- URI::HTTP.build(path: @request.path, query: URI.encode_www_form(query)).request_uri
34
+ URI::HTTP.build(path: @request.path, query: ::Rack::Utils.build_nested_query(query)).request_uri
34
35
  end
35
36
  end
36
37
  end
@@ -1,3 +1,3 @@
1
1
  module ProgressiveRender
2
- VERSION = '0.4.3'.freeze
2
+ VERSION = '0.6.0'.freeze
3
3
  end
@@ -2,4 +2,4 @@
2
2
  height: 40px;
3
3
  width: 40px;
4
4
  background-image: asset-data-url('progressive_render.gif');
5
- }
5
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: progressive_render
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Johnson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-07-31 00:00:00.000000000 Z
11
+ date: 2017-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -263,8 +263,10 @@ files:
263
263
  - gemfiles/rails_4_1.gemfile.lock
264
264
  - gemfiles/rails_4_2.gemfile
265
265
  - gemfiles/rails_4_2.gemfile.lock
266
- - gemfiles/rails_5_0_0_beta4.gemfile
267
- - gemfiles/rails_5_0_0_beta4.gemfile.lock
266
+ - gemfiles/rails_5_0_1.gemfile
267
+ - gemfiles/rails_5_0_1.gemfile.lock
268
+ - gemfiles/rails_5_0_2.gemfile
269
+ - gemfiles/rails_5_0_2.gemfile.lock
268
270
  - lib/progressive_render.rb
269
271
  - lib/progressive_render/fragment_name_iterator.rb
270
272
  - lib/progressive_render/rack.rb
@@ -280,7 +282,7 @@ files:
280
282
  - progressive_load.gemspec
281
283
  - vendor/assets/images/progressive_render.gif
282
284
  - vendor/assets/javascripts/progressive_render.js.coffee
283
- - vendor/assets/stylesheets/progressive_render.css.scss
285
+ - vendor/assets/stylesheets/progressive_render.scss
284
286
  homepage: https://github.com/johnsonj/progressive_render
285
287
  licenses:
286
288
  - MIT
@@ -1,220 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- progressive_render (0.4.3)
5
- coffee-rails
6
- jquery-rails
7
- nokogiri
8
- rails (>= 4.1)
9
- railties
10
- sass
11
- sass-rails
12
- uglifier
13
-
14
- GEM
15
- remote: https://rubygems.org/
16
- specs:
17
- actioncable (5.0.0.beta4)
18
- actionpack (= 5.0.0.beta4)
19
- nio4r (~> 1.2)
20
- websocket-driver (~> 0.6.1)
21
- actionmailer (5.0.0.beta4)
22
- actionpack (= 5.0.0.beta4)
23
- actionview (= 5.0.0.beta4)
24
- activejob (= 5.0.0.beta4)
25
- mail (~> 2.5, >= 2.5.4)
26
- rails-dom-testing (~> 1.0, >= 1.0.5)
27
- actionpack (5.0.0.beta4)
28
- actionview (= 5.0.0.beta4)
29
- activesupport (= 5.0.0.beta4)
30
- rack (~> 2.x)
31
- rack-test (~> 0.6.3)
32
- rails-dom-testing (~> 1.0, >= 1.0.5)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
- actionview (5.0.0.beta4)
35
- activesupport (= 5.0.0.beta4)
36
- builder (~> 3.1)
37
- erubis (~> 2.7.0)
38
- rails-dom-testing (~> 1.0, >= 1.0.5)
39
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
40
- activejob (5.0.0.beta4)
41
- activesupport (= 5.0.0.beta4)
42
- globalid (>= 0.3.6)
43
- activemodel (5.0.0.beta4)
44
- activesupport (= 5.0.0.beta4)
45
- activerecord (5.0.0.beta4)
46
- activemodel (= 5.0.0.beta4)
47
- activesupport (= 5.0.0.beta4)
48
- arel (~> 7.0)
49
- activesupport (5.0.0.beta4)
50
- concurrent-ruby (~> 1.0)
51
- i18n (~> 0.7)
52
- minitest (~> 5.1)
53
- tzinfo (~> 1.1)
54
- appraisal (2.1.0)
55
- bundler
56
- rake
57
- thor (>= 0.14.0)
58
- arel (7.0.0)
59
- ast (2.3.0)
60
- builder (3.2.2)
61
- byebug (9.0.5)
62
- codeclimate-test-reporter (0.5.1)
63
- simplecov (>= 0.7.1, < 1.0.0)
64
- coderay (1.1.1)
65
- coffee-rails (4.2.1)
66
- coffee-script (>= 2.2.0)
67
- railties (>= 4.0.0, < 5.2.x)
68
- coffee-script (2.4.1)
69
- coffee-script-source
70
- execjs
71
- coffee-script-source (1.10.0)
72
- concurrent-ruby (1.0.2)
73
- diff-lcs (1.2.5)
74
- docile (1.1.5)
75
- erubis (2.7.0)
76
- execjs (2.7.0)
77
- globalid (0.3.6)
78
- activesupport (>= 4.1.0)
79
- i18n (0.7.0)
80
- jquery-rails (4.1.1)
81
- rails-dom-testing (>= 1, < 3)
82
- railties (>= 4.2.0)
83
- thor (>= 0.14, < 2.0)
84
- json (1.8.3)
85
- loofah (2.0.3)
86
- nokogiri (>= 1.5.9)
87
- mail (2.6.4)
88
- mime-types (>= 1.16, < 4)
89
- method_source (0.8.2)
90
- mime-types (3.1)
91
- mime-types-data (~> 3.2015)
92
- mime-types-data (3.2016.0521)
93
- mini_portile2 (2.1.0)
94
- minitest (5.9.0)
95
- nio4r (1.2.1)
96
- nokogiri (1.6.8)
97
- mini_portile2 (~> 2.1.0)
98
- pkg-config (~> 1.1.7)
99
- parser (2.3.1.2)
100
- ast (~> 2.2)
101
- pkg-config (1.1.7)
102
- powerpack (0.1.1)
103
- pry (0.10.3)
104
- coderay (~> 1.1.0)
105
- method_source (~> 0.8.1)
106
- slop (~> 3.4)
107
- pry-byebug (3.4.0)
108
- byebug (~> 9.0)
109
- pry (~> 0.10)
110
- rack (2.0.0.rc1)
111
- json
112
- rack-test (0.6.3)
113
- rack (>= 1.0)
114
- rails (5.0.0.beta4)
115
- actioncable (= 5.0.0.beta4)
116
- actionmailer (= 5.0.0.beta4)
117
- actionpack (= 5.0.0.beta4)
118
- actionview (= 5.0.0.beta4)
119
- activejob (= 5.0.0.beta4)
120
- activemodel (= 5.0.0.beta4)
121
- activerecord (= 5.0.0.beta4)
122
- activesupport (= 5.0.0.beta4)
123
- bundler (>= 1.3.0, < 2.0)
124
- railties (= 5.0.0.beta4)
125
- sprockets-rails (>= 2.0.0)
126
- rails-deprecated_sanitizer (1.0.3)
127
- activesupport (>= 4.2.0.alpha)
128
- rails-dom-testing (1.0.7)
129
- activesupport (>= 4.2.0.beta, < 5.0)
130
- nokogiri (~> 1.6.0)
131
- rails-deprecated_sanitizer (>= 1.0.1)
132
- rails-html-sanitizer (1.0.3)
133
- loofah (~> 2.0)
134
- railties (5.0.0.beta4)
135
- actionpack (= 5.0.0.beta4)
136
- activesupport (= 5.0.0.beta4)
137
- method_source
138
- rake (>= 0.8.7)
139
- thor (>= 0.18.1, < 2.0)
140
- rainbow (2.1.0)
141
- rake (10.5.0)
142
- rspec (3.1.0)
143
- rspec-core (~> 3.1.0)
144
- rspec-expectations (~> 3.1.0)
145
- rspec-mocks (~> 3.1.0)
146
- rspec-core (3.1.7)
147
- rspec-support (~> 3.1.0)
148
- rspec-expectations (3.1.2)
149
- diff-lcs (>= 1.2.0, < 2.0)
150
- rspec-support (~> 3.1.0)
151
- rspec-mocks (3.1.3)
152
- rspec-support (~> 3.1.0)
153
- rspec-rails (3.1.0)
154
- actionpack (>= 3.0)
155
- activesupport (>= 3.0)
156
- railties (>= 3.0)
157
- rspec-core (~> 3.1.0)
158
- rspec-expectations (~> 3.1.0)
159
- rspec-mocks (~> 3.1.0)
160
- rspec-support (~> 3.1.0)
161
- rspec-support (3.1.2)
162
- rubocop (0.42.0)
163
- parser (>= 2.3.1.1, < 3.0)
164
- powerpack (~> 0.1)
165
- rainbow (>= 1.99.1, < 3.0)
166
- ruby-progressbar (~> 1.7)
167
- unicode-display_width (~> 1.0, >= 1.0.1)
168
- ruby-progressbar (1.8.1)
169
- sass (3.4.22)
170
- sass-rails (5.0.5)
171
- railties (>= 4.0.0, < 6)
172
- sass (~> 3.1)
173
- sprockets (>= 2.8, < 4.0)
174
- sprockets-rails (>= 2.0, < 4.0)
175
- tilt (>= 1.1, < 3)
176
- simplecov (0.11.2)
177
- docile (~> 1.1.0)
178
- json (~> 1.8)
179
- simplecov-html (~> 0.10.0)
180
- simplecov-html (0.10.0)
181
- slop (3.6.0)
182
- sprockets (3.6.0)
183
- concurrent-ruby (~> 1.0)
184
- rack (> 1, < 3)
185
- sprockets-rails (3.0.4)
186
- actionpack (>= 4.0)
187
- activesupport (>= 4.0)
188
- sprockets (>= 3.0.0)
189
- sqlite3 (1.3.11)
190
- thor (0.19.1)
191
- thread_safe (0.3.5)
192
- tilt (2.0.5)
193
- tzinfo (1.2.2)
194
- thread_safe (~> 0.1)
195
- uglifier (3.0.0)
196
- execjs (>= 0.3.0, < 3)
197
- unicode-display_width (1.1.0)
198
- websocket-driver (0.6.4)
199
- websocket-extensions (>= 0.1.0)
200
- websocket-extensions (0.1.2)
201
-
202
- PLATFORMS
203
- ruby
204
-
205
- DEPENDENCIES
206
- appraisal
207
- bundler (~> 1.10)
208
- codeclimate-test-reporter
209
- nokogiri
210
- progressive_render!
211
- pry-byebug
212
- rails (= 5.0.0.beta4)
213
- rake (~> 10.0)
214
- rspec
215
- rspec-rails
216
- rubocop
217
- sqlite3
218
-
219
- BUNDLED WITH
220
- 1.12.5