axlsx_rails 0.2.0 → 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.
@@ -23,7 +23,7 @@ require 'pry'
23
23
  Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
24
24
 
25
25
  RSpec.configure do |config|
26
- config.color_enabled = true
26
+ config.color = true
27
27
  config.formatter = 'documentation'
28
28
  config.use_transactional_fixtures = false
29
29
  config.infer_base_class_for_anonymous_controllers = false
@@ -0,0 +1,16 @@
1
+ export RAILS_ENV=test
2
+
3
+ for version in 4.1
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_4/db/test.sqlite3
13
+ export RAILS_VERSION=$version
14
+ spec/ci.rb
15
+ cp Gemfile.lock Gemfile.lock.$version
16
+ done
@@ -0,0 +1,16 @@
1
+ export RAILS_ENV=test
2
+
3
+ for version in 4.2
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_4/db/test.sqlite3
13
+ export RAILS_VERSION=$version
14
+ spec/ci.rb
15
+ cp Gemfile.lock Gemfile.lock.$version
16
+ done
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: axlsx_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Noel Peden
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-14 00:00:00.000000000 Z
11
+ date: 2014-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -245,25 +245,29 @@ executables: []
245
245
  extensions: []
246
246
  extra_rdoc_files: []
247
247
  files:
248
- - lib/axlsx_rails/action_controller.rb
249
- - lib/axlsx_rails/template_handler.rb
250
- - lib/axlsx_rails/version.rb
251
- - lib/axlsx_rails.rb
252
- - lib/tasks/axlsx_rails_tasks.rake
253
248
  - CHANGELOG.md
254
249
  - Gemfile
255
250
  - Gemfile.lock
256
251
  - Gemfile.lock.3.1
257
252
  - Gemfile.lock.3.2
258
- - Gemfile.lock.4.0
253
+ - Gemfile.lock.4.1
254
+ - Gemfile.lock.4.2
255
+ - Guardfile
259
256
  - MIT-LICENSE
260
- - Rakefile
261
257
  - README.md
258
+ - Rakefile
259
+ - lib/axlsx_rails.rb
260
+ - lib/axlsx_rails/action_controller.rb
261
+ - lib/axlsx_rails/template_handler.rb
262
+ - lib/axlsx_rails/version.rb
263
+ - lib/tasks/axlsx_rails_tasks.rake
262
264
  - spec/axlsx_builder_spec.rb
263
265
  - spec/axlsx_mailer_spec.rb
264
266
  - spec/axlsx_renderer_spec.rb
265
267
  - spec/axlsx_request_spec.rb
266
268
  - spec/ci.rb
269
+ - spec/dummy/README.rdoc
270
+ - spec/dummy/Rakefile
267
271
  - spec/dummy/app/assets/javascripts/application.js
268
272
  - spec/dummy/app/assets/stylesheets/application.css
269
273
  - spec/dummy/app/controllers/application_controller.rb
@@ -287,6 +291,7 @@ files:
287
291
  - spec/dummy/app/views/users/index.xlsx.axlsx
288
292
  - spec/dummy/app/views/users/mailers/instructions.xlsx.axlsx
289
293
  - spec/dummy/app/views/users/respond_with.xlsx.axlsx
294
+ - spec/dummy/config.ru
290
295
  - spec/dummy/config/application.rb
291
296
  - spec/dummy/config/boot.rb
292
297
  - spec/dummy/config/database.yml
@@ -302,7 +307,6 @@ files:
302
307
  - spec/dummy/config/initializers/wrap_parameters.rb
303
308
  - spec/dummy/config/locales/en.yml
304
309
  - spec/dummy/config/routes.rb
305
- - spec/dummy/config.ru
306
310
  - spec/dummy/db/development.sqlite3
307
311
  - spec/dummy/db/migrate/20120717192452_create_users.rb
308
312
  - spec/dummy/db/migrate/20121206210955_create_likes.rb
@@ -314,8 +318,6 @@ files:
314
318
  - spec/dummy/public/422.html
315
319
  - spec/dummy/public/500.html
316
320
  - spec/dummy/public/favicon.ico
317
- - spec/dummy/Rakefile
318
- - spec/dummy/README.rdoc
319
321
  - spec/dummy/script/rails
320
322
  - spec/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212
321
323
  - spec/dummy/tmp/cache/assets/CAC/7D0/sprockets%2F7810ea6f766208553a05d1056cd74f1e
@@ -329,6 +331,8 @@ files:
329
331
  - spec/dummy/tmp/cache/assets/DC1/E00/sprockets%2F20fddc9f3fca3616a6c5ea413a464a4e
330
332
  - spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
331
333
  - spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
334
+ - spec/dummy_4/README.rdoc
335
+ - spec/dummy_4/Rakefile
332
336
  - spec/dummy_4/app/assets/javascripts/application.js
333
337
  - spec/dummy_4/app/assets/stylesheets/application.css
334
338
  - spec/dummy_4/app/controllers/application_controller.rb
@@ -356,6 +360,7 @@ files:
356
360
  - spec/dummy_4/bin/bundle
357
361
  - spec/dummy_4/bin/rails
358
362
  - spec/dummy_4/bin/rake
363
+ - spec/dummy_4/config.ru
359
364
  - spec/dummy_4/config/application.rb
360
365
  - spec/dummy_4/config/boot.rb
361
366
  - spec/dummy_4/config/database.yml
@@ -368,30 +373,31 @@ files:
368
373
  - spec/dummy_4/config/initializers/filter_parameter_logging.rb
369
374
  - spec/dummy_4/config/initializers/inflections.rb
370
375
  - spec/dummy_4/config/initializers/mime_types.rb
376
+ - spec/dummy_4/config/initializers/secret_token.rb
371
377
  - spec/dummy_4/config/initializers/session_store.rb
372
378
  - spec/dummy_4/config/initializers/wrap_parameters.rb
373
379
  - spec/dummy_4/config/locales/en.yml
374
380
  - spec/dummy_4/config/routes.rb
375
381
  - spec/dummy_4/config/secrets.yml
376
- - spec/dummy_4/config.ru
382
+ - spec/dummy_4/db/development.sqlite3
377
383
  - spec/dummy_4/db/migrate/20120717192452_create_users.rb
378
384
  - spec/dummy_4/db/migrate/20121206210955_create_likes.rb
379
385
  - spec/dummy_4/db/schema.rb
380
386
  - spec/dummy_4/db/test.sqlite3
387
+ - spec/dummy_4/log/development.log
381
388
  - spec/dummy_4/log/test.log
382
389
  - spec/dummy_4/public/404.html
383
390
  - spec/dummy_4/public/422.html
384
391
  - spec/dummy_4/public/500.html
385
392
  - spec/dummy_4/public/favicon.ico
386
- - spec/dummy_4/Rakefile
387
- - spec/dummy_4/README.rdoc
388
393
  - spec/spec_helper.rb
389
394
  - spec/test_3.1.sh
390
395
  - spec/test_3.2.sh
391
396
  - spec/test_4.0.sh
397
+ - spec/test_4.1.sh
398
+ - spec/test_4.2.sh
392
399
  - spec/test_all_rails.sh
393
400
  - spec/test_revert.sh
394
- - Guardfile
395
401
  homepage: https://github.com/straydogstudio/axlsx_rails
396
402
  licenses: []
397
403
  metadata: {}
@@ -411,7 +417,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
411
417
  version: '0'
412
418
  requirements: []
413
419
  rubyforge_project:
414
- rubygems_version: 2.0.14
420
+ rubygems_version: 2.2.2
415
421
  signing_key:
416
422
  specification_version: 4
417
423
  summary: A simple rails plugin to provide an xlsx renderer using the axlsx gem.
@@ -525,16 +531,19 @@ test_files:
525
531
  - spec/dummy_4/config/initializers/filter_parameter_logging.rb
526
532
  - spec/dummy_4/config/initializers/inflections.rb
527
533
  - spec/dummy_4/config/initializers/mime_types.rb
534
+ - spec/dummy_4/config/initializers/secret_token.rb
528
535
  - spec/dummy_4/config/initializers/session_store.rb
529
536
  - spec/dummy_4/config/initializers/wrap_parameters.rb
530
537
  - spec/dummy_4/config/locales/en.yml
531
538
  - spec/dummy_4/config/routes.rb
532
539
  - spec/dummy_4/config/secrets.yml
533
540
  - spec/dummy_4/config.ru
541
+ - spec/dummy_4/db/development.sqlite3
534
542
  - spec/dummy_4/db/migrate/20120717192452_create_users.rb
535
543
  - spec/dummy_4/db/migrate/20121206210955_create_likes.rb
536
544
  - spec/dummy_4/db/schema.rb
537
545
  - spec/dummy_4/db/test.sqlite3
546
+ - spec/dummy_4/log/development.log
538
547
  - spec/dummy_4/log/test.log
539
548
  - spec/dummy_4/public/404.html
540
549
  - spec/dummy_4/public/422.html
@@ -546,6 +555,8 @@ test_files:
546
555
  - spec/test_3.1.sh
547
556
  - spec/test_3.2.sh
548
557
  - spec/test_4.0.sh
558
+ - spec/test_4.1.sh
559
+ - spec/test_4.2.sh
549
560
  - spec/test_all_rails.sh
550
561
  - spec/test_revert.sh
551
562
  - Guardfile