phcscriptcdn 7.0.1 → 7.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/MIT-LICENSE +20 -20
- data/README.md +43 -43
- data/Rakefile +33 -33
- data/app/assets/config/phcscriptcdn_manifest.js +2 -2
- data/app/assets/javascripts/phcscriptcdn/application.js +2 -2
- data/app/assets/stylesheets/phcscriptcdn/application.scss +2 -2
- data/app/controllers/phcscriptcdn/application_controller.rb +12 -12
- data/app/controllers/phcscriptcdn/script/authors_controller.rb +65 -65
- data/app/controllers/phcscriptcdn/script/extensions_controller.rb +65 -65
- data/app/controllers/phcscriptcdn/script/licences_controller.rb +65 -65
- data/app/controllers/phcscriptcdn/script/listings_controller.rb +65 -65
- data/app/controllers/phcscriptcdn/script/urls_controller.rb +74 -74
- data/app/controllers/phcscriptcdn/script/versions_controller.rb +65 -65
- data/app/helpers/phcscriptcdn/application_helper.rb +14 -14
- data/app/jobs/phcscriptcdn/application_job.rb +4 -4
- data/app/models/phcscriptcdn/application_record.rb +4 -4
- data/app/models/phcscriptcdn/script.rb +6 -6
- data/app/models/phcscriptcdn/script/author.rb +20 -20
- data/app/models/phcscriptcdn/script/extension.rb +24 -24
- data/app/models/phcscriptcdn/script/licence.rb +23 -23
- data/app/models/phcscriptcdn/script/listing.rb +32 -32
- data/app/models/phcscriptcdn/script/url.rb +26 -26
- data/app/models/phcscriptcdn/script/version.rb +20 -20
- data/app/views/layouts/phcscriptcdn/application.html.erb +56 -56
- data/app/views/layouts/phcscriptcdn/components/backend/footer/_footer.html.erb +4 -4
- data/app/views/layouts/phcscriptcdn/components/backend/navigation/_navigation.html.erb +56 -56
- data/app/views/layouts/phcscriptcdn/components/backend/topbar/_topbar.html.erb +5 -5
- data/app/views/layouts/phcscriptcdn/frontend.html.erb +22 -22
- data/app/views/phcscriptcdn/script/authors/_form.html.erb +36 -36
- data/app/views/phcscriptcdn/script/authors/edit.html.erb +39 -39
- data/app/views/phcscriptcdn/script/authors/index.html.erb +67 -67
- data/app/views/phcscriptcdn/script/authors/new.html.erb +39 -39
- data/app/views/phcscriptcdn/script/authors/show.html.erb +42 -42
- data/app/views/phcscriptcdn/script/extensions/_form.html.erb +28 -28
- data/app/views/phcscriptcdn/script/extensions/edit.html.erb +39 -39
- data/app/views/phcscriptcdn/script/extensions/index.html.erb +61 -61
- data/app/views/phcscriptcdn/script/extensions/new.html.erb +38 -38
- data/app/views/phcscriptcdn/script/extensions/show.html.erb +42 -42
- data/app/views/phcscriptcdn/script/licences/_form.html.erb +47 -47
- data/app/views/phcscriptcdn/script/licences/edit.html.erb +39 -39
- data/app/views/phcscriptcdn/script/licences/index.html.erb +71 -71
- data/app/views/phcscriptcdn/script/licences/new.html.erb +39 -39
- data/app/views/phcscriptcdn/script/licences/show.html.erb +42 -42
- data/app/views/phcscriptcdn/script/listings/_form.html.erb +68 -68
- data/app/views/phcscriptcdn/script/listings/edit.html.erb +39 -39
- data/app/views/phcscriptcdn/script/listings/index.html.erb +65 -65
- data/app/views/phcscriptcdn/script/listings/new.html.erb +39 -39
- data/app/views/phcscriptcdn/script/listings/show.html.erb +40 -40
- data/app/views/phcscriptcdn/script/urls/_form.html.erb +36 -36
- data/app/views/phcscriptcdn/script/urls/edit.html.erb +39 -39
- data/app/views/phcscriptcdn/script/urls/index.html.erb +63 -63
- data/app/views/phcscriptcdn/script/urls/new.html.erb +39 -39
- data/app/views/phcscriptcdn/script/urls/show.html.erb +41 -41
- data/app/views/phcscriptcdn/script/versions/_form.html.erb +20 -20
- data/app/views/phcscriptcdn/script/versions/edit.html.erb +39 -39
- data/app/views/phcscriptcdn/script/versions/index.html.erb +59 -59
- data/app/views/phcscriptcdn/script/versions/new.html.erb +39 -39
- data/app/views/phcscriptcdn/script/versions/show.html.erb +42 -42
- data/config/initializers/friendly_id.rb +92 -92
- data/config/routes.rb +30 -30
- data/db/migrate/20160731205205_create_phcscriptcdn_script_extensions.rb +20 -20
- data/db/migrate/20160731205917_create_phcscriptcdn_script_listings.rb +35 -35
- data/db/migrate/20160731205954_create_phcscriptcdn_script_versions.rb +18 -18
- data/db/migrate/20160731210626_create_phcscriptcdn_script_urls.rb +24 -24
- data/db/migrate/20160731210723_create_phcscriptcdn_script_authors.rb +23 -23
- data/db/migrate/20160801032225_create_phcscriptcdn_script_licences.rb +27 -27
- data/db/migrate/20170423022446_create_friendly_id_slugs.rb +15 -15
- data/lib/phcscriptcdn.rb +4 -4
- data/lib/phcscriptcdn/engine.rb +68 -68
- data/lib/phcscriptcdn/version.rb +3 -3
- data/lib/tasks/phcscriptcdn_tasks.rake +4 -4
- metadata +19 -49
data/lib/phcscriptcdn/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
module Phcscriptcdn
|
2
|
-
VERSION = "7.0
|
3
|
-
end
|
1
|
+
module Phcscriptcdn
|
2
|
+
VERSION = "7.1.0"
|
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
|
4
|
+
version: 7.1.0
|
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-
|
11
|
+
date: 2017-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -204,14 +204,14 @@ dependencies:
|
|
204
204
|
requirements:
|
205
205
|
- - "~>"
|
206
206
|
- !ruby/object:Gem::Version
|
207
|
-
version: '
|
207
|
+
version: '2.0'
|
208
208
|
type: :runtime
|
209
209
|
prerelease: false
|
210
210
|
version_requirements: !ruby/object:Gem::Requirement
|
211
211
|
requirements:
|
212
212
|
- - "~>"
|
213
213
|
- !ruby/object:Gem::Version
|
214
|
-
version: '
|
214
|
+
version: '2.0'
|
215
215
|
- !ruby/object:Gem::Dependency
|
216
216
|
name: tinymce-rails
|
217
217
|
requirement: !ruby/object:Gem::Requirement
|
@@ -221,7 +221,7 @@ dependencies:
|
|
221
221
|
version: '4.6'
|
222
222
|
- - ">="
|
223
223
|
- !ruby/object:Gem::Version
|
224
|
-
version: 4.6.
|
224
|
+
version: 4.6.2
|
225
225
|
type: :runtime
|
226
226
|
prerelease: false
|
227
227
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -231,7 +231,7 @@ dependencies:
|
|
231
231
|
version: '4.6'
|
232
232
|
- - ">="
|
233
233
|
- !ruby/object:Gem::Version
|
234
|
-
version: 4.6.
|
234
|
+
version: 4.6.2
|
235
235
|
- !ruby/object:Gem::Dependency
|
236
236
|
name: oj
|
237
237
|
requirement: !ruby/object:Gem::Requirement
|
@@ -241,7 +241,7 @@ dependencies:
|
|
241
241
|
version: '3.0'
|
242
242
|
- - ">="
|
243
243
|
- !ruby/object:Gem::Version
|
244
|
-
version: 3.0.
|
244
|
+
version: 3.0.10
|
245
245
|
type: :runtime
|
246
246
|
prerelease: false
|
247
247
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -251,7 +251,7 @@ dependencies:
|
|
251
251
|
version: '3.0'
|
252
252
|
- - ">="
|
253
253
|
- !ruby/object:Gem::Version
|
254
|
-
version: 3.0.
|
254
|
+
version: 3.0.10
|
255
255
|
- !ruby/object:Gem::Dependency
|
256
256
|
name: rabl
|
257
257
|
requirement: !ruby/object:Gem::Requirement
|
@@ -388,100 +388,70 @@ dependencies:
|
|
388
388
|
requirements:
|
389
389
|
- - "~>"
|
390
390
|
- !ruby/object:Gem::Version
|
391
|
-
version: '14.
|
392
|
-
- - ">="
|
393
|
-
- !ruby/object:Gem::Version
|
394
|
-
version: 14.0.1
|
391
|
+
version: '14.2'
|
395
392
|
type: :runtime
|
396
393
|
prerelease: false
|
397
394
|
version_requirements: !ruby/object:Gem::Requirement
|
398
395
|
requirements:
|
399
396
|
- - "~>"
|
400
397
|
- !ruby/object:Gem::Version
|
401
|
-
version: '14.
|
402
|
-
- - ">="
|
403
|
-
- !ruby/object:Gem::Version
|
404
|
-
version: 14.0.1
|
398
|
+
version: '14.2'
|
405
399
|
- !ruby/object:Gem::Dependency
|
406
400
|
name: phctheme2
|
407
401
|
requirement: !ruby/object:Gem::Requirement
|
408
402
|
requirements:
|
409
403
|
- - "~>"
|
410
404
|
- !ruby/object:Gem::Version
|
411
|
-
version: '5.
|
412
|
-
- - ">="
|
413
|
-
- !ruby/object:Gem::Version
|
414
|
-
version: 5.0.1
|
405
|
+
version: '5.2'
|
415
406
|
type: :runtime
|
416
407
|
prerelease: false
|
417
408
|
version_requirements: !ruby/object:Gem::Requirement
|
418
409
|
requirements:
|
419
410
|
- - "~>"
|
420
411
|
- !ruby/object:Gem::Version
|
421
|
-
version: '5.
|
422
|
-
- - ">="
|
423
|
-
- !ruby/object:Gem::Version
|
424
|
-
version: 5.0.1
|
412
|
+
version: '5.2'
|
425
413
|
- !ruby/object:Gem::Dependency
|
426
414
|
name: phcadmin1
|
427
415
|
requirement: !ruby/object:Gem::Requirement
|
428
416
|
requirements:
|
429
417
|
- - "~>"
|
430
418
|
- !ruby/object:Gem::Version
|
431
|
-
version: '10.
|
432
|
-
- - ">="
|
433
|
-
- !ruby/object:Gem::Version
|
434
|
-
version: 10.0.1
|
419
|
+
version: '10.2'
|
435
420
|
type: :runtime
|
436
421
|
prerelease: false
|
437
422
|
version_requirements: !ruby/object:Gem::Requirement
|
438
423
|
requirements:
|
439
424
|
- - "~>"
|
440
425
|
- !ruby/object:Gem::Version
|
441
|
-
version: '10.
|
442
|
-
- - ">="
|
443
|
-
- !ruby/object:Gem::Version
|
444
|
-
version: 10.0.1
|
426
|
+
version: '10.2'
|
445
427
|
- !ruby/object:Gem::Dependency
|
446
428
|
name: phcadmin2
|
447
429
|
requirement: !ruby/object:Gem::Requirement
|
448
430
|
requirements:
|
449
431
|
- - "~>"
|
450
432
|
- !ruby/object:Gem::Version
|
451
|
-
version: '8.
|
452
|
-
- - ">="
|
453
|
-
- !ruby/object:Gem::Version
|
454
|
-
version: 8.0.1
|
433
|
+
version: '8.2'
|
455
434
|
type: :runtime
|
456
435
|
prerelease: false
|
457
436
|
version_requirements: !ruby/object:Gem::Requirement
|
458
437
|
requirements:
|
459
438
|
- - "~>"
|
460
439
|
- !ruby/object:Gem::Version
|
461
|
-
version: '8.
|
462
|
-
- - ">="
|
463
|
-
- !ruby/object:Gem::Version
|
464
|
-
version: 8.0.1
|
440
|
+
version: '8.2'
|
465
441
|
- !ruby/object:Gem::Dependency
|
466
442
|
name: phcadmin3
|
467
443
|
requirement: !ruby/object:Gem::Requirement
|
468
444
|
requirements:
|
469
445
|
- - "~>"
|
470
446
|
- !ruby/object:Gem::Version
|
471
|
-
version: '5.
|
472
|
-
- - ">="
|
473
|
-
- !ruby/object:Gem::Version
|
474
|
-
version: 5.0.1
|
447
|
+
version: '5.2'
|
475
448
|
type: :runtime
|
476
449
|
prerelease: false
|
477
450
|
version_requirements: !ruby/object:Gem::Requirement
|
478
451
|
requirements:
|
479
452
|
- - "~>"
|
480
453
|
- !ruby/object:Gem::Version
|
481
|
-
version: '5.
|
482
|
-
- - ">="
|
483
|
-
- !ruby/object:Gem::Version
|
484
|
-
version: 5.0.1
|
454
|
+
version: '5.2'
|
485
455
|
- !ruby/object:Gem::Dependency
|
486
456
|
name: rspec-rails
|
487
457
|
requirement: !ruby/object:Gem::Requirement
|
@@ -772,7 +742,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
772
742
|
version: '0'
|
773
743
|
requirements: []
|
774
744
|
rubyforge_project:
|
775
|
-
rubygems_version: 2.6.
|
745
|
+
rubygems_version: 2.6.8
|
776
746
|
signing_key:
|
777
747
|
specification_version: 4
|
778
748
|
summary: Rails 5.1 Engine - PHCScriptCDN(5)
|