csv_rb 5.2.3.2 → 6.0.2.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.2.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-02-26 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
@@ -249,6 +249,7 @@ files:
249
249
  - spec/csv_rb_renderer_spec.rb
250
250
  - spec/csv_rb_request_spec.rb
251
251
  - spec/dummy/Rakefile
252
+ - spec/dummy/app/assets/config/manifest.js
252
253
  - spec/dummy/app/assets/javascripts/application.js
253
254
  - spec/dummy/app/assets/stylesheets/application.css
254
255
  - spec/dummy/app/controllers/application_controller.rb
@@ -313,6 +314,7 @@ files:
313
314
  - spec/reset_gems.sh
314
315
  - spec/spec_helper.rb
315
316
  - spec/test_5.2.sh
317
+ - spec/test_6.0.sh
316
318
  - spec/test_all_rails.sh
317
319
  - spec/test_revert.sh
318
320
  homepage: https://github.com/SampsonCrowley/csv_rb
@@ -333,11 +335,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
333
335
  - !ruby/object:Gem::Version
334
336
  version: '0'
335
337
  requirements: []
336
- rubygems_version: 3.0.4
338
+ rubygems_version: 3.0.3
337
339
  signing_key:
338
340
  specification_version: 4
339
341
  summary: A simple rails plugin to provide a streaming csv renderer using the csv gem.
340
342
  test_files:
343
+ - spec/test_6.0.sh
341
344
  - spec/test_all_rails.sh
342
345
  - spec/reset_gems.sh
343
346
  - spec/ci.rb
@@ -389,6 +392,7 @@ test_files:
389
392
  - spec/dummy/app/mailers/notifier.rb
390
393
  - spec/dummy/app/helpers/application_helper.rb
391
394
  - spec/dummy/app/assets/javascripts/application.js
395
+ - spec/dummy/app/assets/config/manifest.js
392
396
  - spec/dummy/app/assets/stylesheets/application.css
393
397
  - spec/dummy/app/views/likes/index.csv.csvrb
394
398
  - spec/dummy/app/views/likes/index.html.erb