csv_rb 5.2.3.2 → 6.0.3.1

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.
@@ -0,0 +1,16 @@
1
+ export RAILS_ENV=test
2
+
3
+ for version in 6.0
4
+ do
5
+ echo "Testing Rails version " $version
6
+ rm Gemfile.lock
7
+ if [ -f Gemfile.lock.$version ];
8
+ then
9
+ echo Reusing Gemfile.lock.$version
10
+ cp Gemfile.lock.$version Gemfile.lock
11
+ fi
12
+ rm spec/dummy/db/test.sqlite3
13
+ export RAILS_VERSION=$version
14
+ spec/ci.rb
15
+ cp Gemfile.lock Gemfile.lock.$version
16
+ done
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: csv_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.3.2
4
+ version: 6.0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sampson Crowley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-02 00:00:00.000000000 Z
11
+ date: 2020-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '5.2'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '5.2'
27
27
  - !ruby/object:Gem::Dependency
@@ -239,6 +239,7 @@ files:
239
239
  - lib/csv_rb/action_controller.rb
240
240
  - lib/csv_rb/plain_builder.rb
241
241
  - lib/csv_rb/railtie.rb
242
+ - lib/csv_rb/stream_builder.rb
242
243
  - lib/csv_rb/stream_csv_deflator.rb
243
244
  - lib/csv_rb/template_handler.rb
244
245
  - lib/csv_rb/version.rb
@@ -249,6 +250,7 @@ files:
249
250
  - spec/csv_rb_renderer_spec.rb
250
251
  - spec/csv_rb_request_spec.rb
251
252
  - spec/dummy/Rakefile
253
+ - spec/dummy/app/assets/config/manifest.js
252
254
  - spec/dummy/app/assets/javascripts/application.js
253
255
  - spec/dummy/app/assets/stylesheets/application.css
254
256
  - spec/dummy/app/controllers/application_controller.rb
@@ -313,6 +315,7 @@ files:
313
315
  - spec/reset_gems.sh
314
316
  - spec/spec_helper.rb
315
317
  - spec/test_5.2.sh
318
+ - spec/test_6.0.sh
316
319
  - spec/test_all_rails.sh
317
320
  - spec/test_revert.sh
318
321
  homepage: https://github.com/SampsonCrowley/csv_rb
@@ -333,11 +336,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
333
336
  - !ruby/object:Gem::Version
334
337
  version: '0'
335
338
  requirements: []
336
- rubygems_version: 3.0.4
339
+ rubygems_version: 3.1.3
337
340
  signing_key:
338
341
  specification_version: 4
339
342
  summary: A simple rails plugin to provide a streaming csv renderer using the csv gem.
340
343
  test_files:
344
+ - spec/test_6.0.sh
341
345
  - spec/test_all_rails.sh
342
346
  - spec/reset_gems.sh
343
347
  - spec/ci.rb
@@ -389,6 +393,7 @@ test_files:
389
393
  - spec/dummy/app/mailers/notifier.rb
390
394
  - spec/dummy/app/helpers/application_helper.rb
391
395
  - spec/dummy/app/assets/javascripts/application.js
396
+ - spec/dummy/app/assets/config/manifest.js
392
397
  - spec/dummy/app/assets/stylesheets/application.css
393
398
  - spec/dummy/app/views/likes/index.csv.csvrb
394
399
  - spec/dummy/app/views/likes/index.html.erb