phcscriptcdn 7.0.0 → 7.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -20
  3. data/README.md +43 -43
  4. data/Rakefile +33 -33
  5. data/app/assets/config/phcscriptcdn_manifest.js +2 -2
  6. data/app/assets/javascripts/phcscriptcdn/application.js +2 -2
  7. data/app/assets/stylesheets/phcscriptcdn/application.scss +2 -2
  8. data/app/controllers/phcscriptcdn/application_controller.rb +12 -12
  9. data/app/controllers/phcscriptcdn/script/authors_controller.rb +65 -65
  10. data/app/controllers/phcscriptcdn/script/extensions_controller.rb +65 -65
  11. data/app/controllers/phcscriptcdn/script/licences_controller.rb +65 -65
  12. data/app/controllers/phcscriptcdn/script/listings_controller.rb +65 -65
  13. data/app/controllers/phcscriptcdn/script/urls_controller.rb +74 -74
  14. data/app/controllers/phcscriptcdn/script/versions_controller.rb +65 -65
  15. data/app/helpers/phcscriptcdn/application_helper.rb +14 -14
  16. data/app/jobs/phcscriptcdn/application_job.rb +4 -4
  17. data/app/models/phcscriptcdn/application_record.rb +4 -4
  18. data/app/models/phcscriptcdn/script.rb +6 -6
  19. data/app/models/phcscriptcdn/script/author.rb +20 -20
  20. data/app/models/phcscriptcdn/script/extension.rb +24 -24
  21. data/app/models/phcscriptcdn/script/licence.rb +23 -23
  22. data/app/models/phcscriptcdn/script/listing.rb +32 -32
  23. data/app/models/phcscriptcdn/script/url.rb +26 -26
  24. data/app/models/phcscriptcdn/script/version.rb +20 -20
  25. data/app/views/layouts/phcscriptcdn/application.html.erb +56 -56
  26. data/app/views/layouts/phcscriptcdn/components/backend/footer/_footer.html.erb +4 -4
  27. data/app/views/layouts/phcscriptcdn/components/backend/navigation/_navigation.html.erb +56 -56
  28. data/app/views/layouts/phcscriptcdn/components/backend/topbar/_topbar.html.erb +5 -5
  29. data/app/views/layouts/phcscriptcdn/components/backend/topbar/_topbar_links.html.erb +0 -0
  30. data/app/views/layouts/phcscriptcdn/frontend.html.erb +22 -22
  31. data/app/views/phcscriptcdn/script/authors/_form.html.erb +36 -36
  32. data/app/views/phcscriptcdn/script/authors/edit.html.erb +39 -39
  33. data/app/views/phcscriptcdn/script/authors/index.html.erb +67 -67
  34. data/app/views/phcscriptcdn/script/authors/new.html.erb +39 -39
  35. data/app/views/phcscriptcdn/script/authors/show.html.erb +42 -42
  36. data/app/views/phcscriptcdn/script/extensions/_form.html.erb +28 -28
  37. data/app/views/phcscriptcdn/script/extensions/edit.html.erb +39 -39
  38. data/app/views/phcscriptcdn/script/extensions/index.html.erb +61 -61
  39. data/app/views/phcscriptcdn/script/extensions/new.html.erb +38 -38
  40. data/app/views/phcscriptcdn/script/extensions/show.html.erb +42 -42
  41. data/app/views/phcscriptcdn/script/licences/_form.html.erb +47 -47
  42. data/app/views/phcscriptcdn/script/licences/edit.html.erb +39 -39
  43. data/app/views/phcscriptcdn/script/licences/index.html.erb +71 -71
  44. data/app/views/phcscriptcdn/script/licences/new.html.erb +39 -39
  45. data/app/views/phcscriptcdn/script/licences/show.html.erb +42 -42
  46. data/app/views/phcscriptcdn/script/listings/_form.html.erb +68 -68
  47. data/app/views/phcscriptcdn/script/listings/edit.html.erb +39 -39
  48. data/app/views/phcscriptcdn/script/listings/index.html.erb +65 -65
  49. data/app/views/phcscriptcdn/script/listings/new.html.erb +39 -39
  50. data/app/views/phcscriptcdn/script/listings/show.html.erb +40 -40
  51. data/app/views/phcscriptcdn/script/urls/_form.html.erb +36 -36
  52. data/app/views/phcscriptcdn/script/urls/edit.html.erb +39 -39
  53. data/app/views/phcscriptcdn/script/urls/index.html.erb +63 -63
  54. data/app/views/phcscriptcdn/script/urls/new.html.erb +39 -39
  55. data/app/views/phcscriptcdn/script/urls/show.html.erb +41 -41
  56. data/app/views/phcscriptcdn/script/versions/_form.html.erb +20 -20
  57. data/app/views/phcscriptcdn/script/versions/edit.html.erb +39 -39
  58. data/app/views/phcscriptcdn/script/versions/index.html.erb +59 -59
  59. data/app/views/phcscriptcdn/script/versions/new.html.erb +39 -39
  60. data/app/views/phcscriptcdn/script/versions/show.html.erb +42 -42
  61. data/config/initializers/friendly_id.rb +92 -92
  62. data/config/routes.rb +30 -30
  63. data/db/migrate/20160731205205_create_phcscriptcdn_script_extensions.rb +20 -20
  64. data/db/migrate/20160731205917_create_phcscriptcdn_script_listings.rb +35 -35
  65. data/db/migrate/20160731205954_create_phcscriptcdn_script_versions.rb +18 -18
  66. data/db/migrate/20160731210626_create_phcscriptcdn_script_urls.rb +24 -24
  67. data/db/migrate/20160731210723_create_phcscriptcdn_script_authors.rb +23 -23
  68. data/db/migrate/20160801032225_create_phcscriptcdn_script_licences.rb +27 -27
  69. data/db/migrate/20170423022446_create_friendly_id_slugs.rb +15 -15
  70. data/lib/phcscriptcdn.rb +4 -4
  71. data/lib/phcscriptcdn/engine.rb +68 -68
  72. data/lib/phcscriptcdn/version.rb +3 -3
  73. data/lib/tasks/phcscriptcdn_tasks.rake +4 -4
  74. metadata +47 -5
@@ -1,3 +1,3 @@
1
- module Phcscriptcdn
2
- VERSION = "7.0.0"
3
- end
1
+ module Phcscriptcdn
2
+ VERSION = "7.0.1"
3
+ end
@@ -1,4 +1,4 @@
1
- # desc "Explaining what the task does"
2
- # task :phcscriptcdn do
3
- # # Task goes here
4
- # end
1
+ # desc "Explaining what the task does"
2
+ # task :phcscriptcdn do
3
+ # # Task goes here
4
+ # end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcscriptcdn
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.0
4
+ version: 7.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-15 00:00:00.000000000 Z
11
+ date: 2017-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -219,6 +219,9 @@ dependencies:
219
219
  - - "~>"
220
220
  - !ruby/object:Gem::Version
221
221
  version: '4.6'
222
+ - - ">="
223
+ - !ruby/object:Gem::Version
224
+ version: 4.6.1
222
225
  type: :runtime
223
226
  prerelease: false
224
227
  version_requirements: !ruby/object:Gem::Requirement
@@ -226,6 +229,9 @@ dependencies:
226
229
  - - "~>"
227
230
  - !ruby/object:Gem::Version
228
231
  version: '4.6'
232
+ - - ">="
233
+ - !ruby/object:Gem::Version
234
+ version: 4.6.1
229
235
  - !ruby/object:Gem::Dependency
230
236
  name: oj
231
237
  requirement: !ruby/object:Gem::Requirement
@@ -235,7 +241,7 @@ dependencies:
235
241
  version: '3.0'
236
242
  - - ">="
237
243
  - !ruby/object:Gem::Version
238
- version: 3.0.7
244
+ version: 3.0.9
239
245
  type: :runtime
240
246
  prerelease: false
241
247
  version_requirements: !ruby/object:Gem::Requirement
@@ -245,7 +251,7 @@ dependencies:
245
251
  version: '3.0'
246
252
  - - ">="
247
253
  - !ruby/object:Gem::Version
248
- version: 3.0.7
254
+ version: 3.0.9
249
255
  - !ruby/object:Gem::Dependency
250
256
  name: rabl
251
257
  requirement: !ruby/object:Gem::Requirement
@@ -315,6 +321,9 @@ dependencies:
315
321
  - - "~>"
316
322
  - !ruby/object:Gem::Version
317
323
  version: '1.8'
324
+ - - ">="
325
+ - !ruby/object:Gem::Version
326
+ version: 1.8.1
318
327
  type: :runtime
319
328
  prerelease: false
320
329
  version_requirements: !ruby/object:Gem::Requirement
@@ -322,6 +331,9 @@ dependencies:
322
331
  - - "~>"
323
332
  - !ruby/object:Gem::Version
324
333
  version: '1.8'
334
+ - - ">="
335
+ - !ruby/object:Gem::Version
336
+ version: 1.8.1
325
337
  - !ruby/object:Gem::Dependency
326
338
  name: friendly_id
327
339
  requirement: !ruby/object:Gem::Requirement
@@ -377,6 +389,9 @@ dependencies:
377
389
  - - "~>"
378
390
  - !ruby/object:Gem::Version
379
391
  version: '14.0'
392
+ - - ">="
393
+ - !ruby/object:Gem::Version
394
+ version: 14.0.1
380
395
  type: :runtime
381
396
  prerelease: false
382
397
  version_requirements: !ruby/object:Gem::Requirement
@@ -384,6 +399,9 @@ dependencies:
384
399
  - - "~>"
385
400
  - !ruby/object:Gem::Version
386
401
  version: '14.0'
402
+ - - ">="
403
+ - !ruby/object:Gem::Version
404
+ version: 14.0.1
387
405
  - !ruby/object:Gem::Dependency
388
406
  name: phctheme2
389
407
  requirement: !ruby/object:Gem::Requirement
@@ -391,6 +409,9 @@ dependencies:
391
409
  - - "~>"
392
410
  - !ruby/object:Gem::Version
393
411
  version: '5.0'
412
+ - - ">="
413
+ - !ruby/object:Gem::Version
414
+ version: 5.0.1
394
415
  type: :runtime
395
416
  prerelease: false
396
417
  version_requirements: !ruby/object:Gem::Requirement
@@ -398,6 +419,9 @@ dependencies:
398
419
  - - "~>"
399
420
  - !ruby/object:Gem::Version
400
421
  version: '5.0'
422
+ - - ">="
423
+ - !ruby/object:Gem::Version
424
+ version: 5.0.1
401
425
  - !ruby/object:Gem::Dependency
402
426
  name: phcadmin1
403
427
  requirement: !ruby/object:Gem::Requirement
@@ -405,6 +429,9 @@ dependencies:
405
429
  - - "~>"
406
430
  - !ruby/object:Gem::Version
407
431
  version: '10.0'
432
+ - - ">="
433
+ - !ruby/object:Gem::Version
434
+ version: 10.0.1
408
435
  type: :runtime
409
436
  prerelease: false
410
437
  version_requirements: !ruby/object:Gem::Requirement
@@ -412,6 +439,9 @@ dependencies:
412
439
  - - "~>"
413
440
  - !ruby/object:Gem::Version
414
441
  version: '10.0'
442
+ - - ">="
443
+ - !ruby/object:Gem::Version
444
+ version: 10.0.1
415
445
  - !ruby/object:Gem::Dependency
416
446
  name: phcadmin2
417
447
  requirement: !ruby/object:Gem::Requirement
@@ -419,6 +449,9 @@ dependencies:
419
449
  - - "~>"
420
450
  - !ruby/object:Gem::Version
421
451
  version: '8.0'
452
+ - - ">="
453
+ - !ruby/object:Gem::Version
454
+ version: 8.0.1
422
455
  type: :runtime
423
456
  prerelease: false
424
457
  version_requirements: !ruby/object:Gem::Requirement
@@ -426,6 +459,9 @@ dependencies:
426
459
  - - "~>"
427
460
  - !ruby/object:Gem::Version
428
461
  version: '8.0'
462
+ - - ">="
463
+ - !ruby/object:Gem::Version
464
+ version: 8.0.1
429
465
  - !ruby/object:Gem::Dependency
430
466
  name: phcadmin3
431
467
  requirement: !ruby/object:Gem::Requirement
@@ -433,6 +469,9 @@ dependencies:
433
469
  - - "~>"
434
470
  - !ruby/object:Gem::Version
435
471
  version: '5.0'
472
+ - - ">="
473
+ - !ruby/object:Gem::Version
474
+ version: 5.0.1
436
475
  type: :runtime
437
476
  prerelease: false
438
477
  version_requirements: !ruby/object:Gem::Requirement
@@ -440,6 +479,9 @@ dependencies:
440
479
  - - "~>"
441
480
  - !ruby/object:Gem::Version
442
481
  version: '5.0'
482
+ - - ">="
483
+ - !ruby/object:Gem::Version
484
+ version: 5.0.1
443
485
  - !ruby/object:Gem::Dependency
444
486
  name: rspec-rails
445
487
  requirement: !ruby/object:Gem::Requirement
@@ -730,7 +772,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
730
772
  version: '0'
731
773
  requirements: []
732
774
  rubyforge_project:
733
- rubygems_version: 2.6.8
775
+ rubygems_version: 2.6.12
734
776
  signing_key:
735
777
  specification_version: 4
736
778
  summary: Rails 5.1 Engine - PHCScriptCDN(5)