phcscriptcdn 1.2.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +3 -3
  4. data/Rakefile +18 -12
  5. data/app/assets/config/phcscriptcdn_manifest.js +2 -0
  6. data/app/assets/javascripts/phcscriptcdn/application.js +1 -4
  7. data/app/assets/javascripts/phcscriptcdn/scriptcdn/{scripts.js → authors.js} +0 -0
  8. data/app/assets/javascripts/phcscriptcdn/scriptcdn/{scripturls.js → information.js} +0 -0
  9. data/app/assets/javascripts/phcscriptcdn/scriptcdn/{scriptversions.js → mains.js} +0 -0
  10. data/app/assets/javascripts/phcscriptcdn/scriptcdn/urls.js +2 -0
  11. data/app/assets/javascripts/phcscriptcdn/scriptcdn/versions.js +2 -0
  12. data/app/assets/stylesheets/phcscriptcdn/application.css +15 -0
  13. data/app/assets/stylesheets/phcscriptcdn/scriptcdn/authors.scss +3 -0
  14. data/app/assets/stylesheets/phcscriptcdn/scriptcdn/information.scss +3 -0
  15. data/app/assets/stylesheets/phcscriptcdn/scriptcdn/mains.scss +3 -0
  16. data/app/assets/stylesheets/phcscriptcdn/scriptcdn/urls.scss +3 -0
  17. data/app/assets/stylesheets/phcscriptcdn/scriptcdn/versions.scss +3 -0
  18. data/app/assets/stylesheets/scaffolds.scss +89 -0
  19. data/app/controllers/phcscriptcdn/application_controller.rb +4 -1
  20. data/app/controllers/phcscriptcdn/scriptcdn/authors_controller.rb +69 -0
  21. data/app/controllers/phcscriptcdn/scriptcdn/informations_controller.rb +69 -0
  22. data/app/controllers/phcscriptcdn/scriptcdn/mains_controller.rb +62 -0
  23. data/app/controllers/phcscriptcdn/scriptcdn/urls_controller.rb +84 -0
  24. data/app/controllers/phcscriptcdn/scriptcdn/versions_controller.rb +69 -0
  25. data/app/jobs/phcscriptcdn/application_job.rb +4 -0
  26. data/app/models/phcscriptcdn/application_record.rb +5 -0
  27. data/app/models/phcscriptcdn/scriptcdn/author.rb +8 -0
  28. data/app/models/phcscriptcdn/scriptcdn/information.rb +8 -0
  29. data/app/models/phcscriptcdn/scriptcdn/main.rb +11 -0
  30. data/app/models/phcscriptcdn/scriptcdn/url.rb +8 -0
  31. data/app/models/phcscriptcdn/scriptcdn/version.rb +8 -0
  32. data/app/models/phcscriptcdn/scriptcdn.rb +5 -5
  33. data/app/views/layouts/phcscriptcdn/application.html.erb +2 -2
  34. data/app/views/layouts/phcscriptcdn/frontend.html.erb +21 -0
  35. data/app/views/phcscriptcdn/scriptcdn/authors/_form.html.erb +29 -0
  36. data/app/views/phcscriptcdn/scriptcdn/authors/_formpatch.html.erb +29 -0
  37. data/app/views/phcscriptcdn/scriptcdn/authors/edit.html.erb +3 -0
  38. data/app/views/phcscriptcdn/scriptcdn/authors/index.html.erb +23 -0
  39. data/app/views/phcscriptcdn/scriptcdn/authors/new.html.erb +3 -0
  40. data/app/views/phcscriptcdn/scriptcdn/information/_form.html.erb +49 -0
  41. data/app/views/phcscriptcdn/scriptcdn/information/_formpatch.html.erb +49 -0
  42. data/app/views/phcscriptcdn/scriptcdn/information/edit.html.erb +3 -0
  43. data/app/views/phcscriptcdn/scriptcdn/information/index.html.erb +26 -0
  44. data/app/views/phcscriptcdn/scriptcdn/information/new.html.erb +3 -0
  45. data/app/views/phcscriptcdn/scriptcdn/information/show.html.erb +58 -0
  46. data/app/views/phcscriptcdn/scriptcdn/mains/_form.html.erb +13 -0
  47. data/app/views/phcscriptcdn/scriptcdn/mains/edit.html.erb +3 -0
  48. data/app/views/phcscriptcdn/scriptcdn/mains/index.html.erb +19 -0
  49. data/app/views/phcscriptcdn/scriptcdn/mains/new.html.erb +3 -0
  50. data/app/views/phcscriptcdn/scriptcdn/urls/_form.html.erb +17 -0
  51. data/app/views/phcscriptcdn/scriptcdn/urls/_formpatch.html.erb +17 -0
  52. data/app/views/phcscriptcdn/scriptcdn/urls/edit.html.erb +3 -0
  53. data/app/views/phcscriptcdn/scriptcdn/urls/index.html.erb +21 -0
  54. data/app/views/phcscriptcdn/scriptcdn/urls/new.html.erb +3 -0
  55. data/app/views/phcscriptcdn/scriptcdn/versions/_form.html.erb +13 -0
  56. data/app/views/phcscriptcdn/scriptcdn/versions/_formpatch.html.erb +13 -0
  57. data/app/views/phcscriptcdn/scriptcdn/versions/edit.html.erb +3 -0
  58. data/app/views/phcscriptcdn/scriptcdn/versions/index.html.erb +20 -0
  59. data/app/views/phcscriptcdn/scriptcdn/versions/new.html.erb +3 -0
  60. data/config/routes.rb +1 -2
  61. data/db/migrate/20160704004828_create_phcscriptcdn_scriptcdn_authors.rb +20 -0
  62. data/db/migrate/20160704005455_create_phcscriptcdn_scriptcdn_information.rb +27 -0
  63. data/db/migrate/20160704011123_create_phcscriptcdn_scriptcdn_urls.rb +19 -0
  64. data/db/migrate/20160704011452_create_phcscriptcdn_scriptcdn_versions.rb +15 -0
  65. data/db/migrate/20160704011727_create_phcscriptcdn_scriptcdn_mains.rb +11 -0
  66. data/lib/phcscriptcdn/engine.rb +3 -3
  67. data/lib/phcscriptcdn/version.rb +2 -2
  68. metadata +116 -166
  69. data/LICENSE +0 -238
  70. data/app/assets/stylesheets/phcscriptcdn/application.css.scss +0 -10
  71. data/app/assets/stylesheets/phcscriptcdn/custom.scss +0 -4
  72. data/app/assets/stylesheets/phcscriptcdn/scriptcdn/scripts.css +0 -4
  73. data/app/assets/stylesheets/phcscriptcdn/scriptcdn/scripturls.css +0 -4
  74. data/app/assets/stylesheets/phcscriptcdn/scriptcdn/scriptversions.css +0 -4
  75. data/app/controllers/phcscriptcdn/scriptcdn/scripts_controller.rb +0 -66
  76. data/app/controllers/phcscriptcdn/scriptcdn/scripturls_controller.rb +0 -88
  77. data/app/controllers/phcscriptcdn/scriptcdn/scriptversions_controller.rb +0 -62
  78. data/app/helpers/phcscriptcdn/scriptcdn/scripts_helper.rb +0 -4
  79. data/app/helpers/phcscriptcdn/scriptcdn/scripturls_helper.rb +0 -4
  80. data/app/helpers/phcscriptcdn/scriptcdn/scriptversions_helper.rb +0 -4
  81. data/app/models/phcscriptcdn/scriptcdn/script.rb +0 -15
  82. data/app/models/phcscriptcdn/scriptcdn/scripturl.rb +0 -14
  83. data/app/models/phcscriptcdn/scriptcdn/scriptversion.rb +0 -15
  84. data/app/views/phcscriptcdn/scriptcdn/scripts/_form.html.erb +0 -22
  85. data/app/views/phcscriptcdn/scriptcdn/scripts/edit.html.erb +0 -12
  86. data/app/views/phcscriptcdn/scriptcdn/scripts/index.html.erb +0 -36
  87. data/app/views/phcscriptcdn/scriptcdn/scripts/index_scriptlist.html.erb +0 -8
  88. data/app/views/phcscriptcdn/scriptcdn/scripts/new.html.erb +0 -11
  89. data/app/views/phcscriptcdn/scriptcdn/scripts/show.html.erb +0 -19
  90. data/app/views/phcscriptcdn/scriptcdn/scripts/show_scriptlisting.html.erb +0 -16
  91. data/app/views/phcscriptcdn/scriptcdn/scripturls/_form.html.erb +0 -22
  92. data/app/views/phcscriptcdn/scriptcdn/scripturls/_formpatch.html.erb +0 -22
  93. data/app/views/phcscriptcdn/scriptcdn/scripturls/edit.html.erb +0 -12
  94. data/app/views/phcscriptcdn/scriptcdn/scripturls/index.html.erb +0 -37
  95. data/app/views/phcscriptcdn/scriptcdn/scripturls/new.html.erb +0 -12
  96. data/app/views/phcscriptcdn/scriptcdn/scripturls/show.html.erb +0 -11
  97. data/app/views/phcscriptcdn/scriptcdn/scriptversions/_form.html.erb +0 -19
  98. data/app/views/phcscriptcdn/scriptcdn/scriptversions/edit.html.erb +0 -12
  99. data/app/views/phcscriptcdn/scriptcdn/scriptversions/index.html.erb +0 -37
  100. data/app/views/phcscriptcdn/scriptcdn/scriptversions/new.html.erb +0 -12
  101. data/db/migrate/20160222025658_create_phcscriptcdn_scriptcdn_scripts.rb +0 -12
  102. data/db/migrate/20160222030223_create_phcscriptcdn_scriptcdn_scriptversions.rb +0 -12
  103. data/db/migrate/20160222030446_create_phcscriptcdn_scriptcdn_scripturls.rb +0 -13
  104. data/lib/generators/phcscriptcdn/views_generator.rb +0 -59
@@ -0,0 +1,11 @@
1
+ class CreatePhcscriptcdnScriptcdnMains < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :phcscriptcdn_scriptcdn_mains do |t|
4
+
5
+ t.string :scriptname
6
+
7
+ t.timestamps null: false
8
+
9
+ end
10
+ end
11
+ end
@@ -8,7 +8,7 @@ module Phcscriptcdn
8
8
  require 'font-awesome-rails'
9
9
 
10
10
  # PHCEngines
11
- require 'phcnotifi'
11
+ # require 'phcnotifi'
12
12
  require 'phctitleseo'
13
13
 
14
14
  # Give PHCScriptCDN Own Namespace
@@ -29,9 +29,9 @@ module Phcscriptcdn
29
29
  # Load Helper Files
30
30
  config.to_prepare do
31
31
  ApplicationController.helper(ApplicationHelper)
32
- Phcnotifi::ApplicationController.helper(ApplicationHelper)
32
+ #Phcnotifi::ApplicationController.helper(ApplicationHelper)
33
33
  Phctitleseo::ApplicationController.helper(ApplicationHelper)
34
34
  end
35
35
 
36
36
  end
37
- end
37
+ end
@@ -1,3 +1,3 @@
1
1
  module Phcscriptcdn
2
- VERSION = "1.2.0"
3
- end
2
+ VERSION = "2.0.0"
3
+ 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: 1.2.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-01 00:00:00.000000000 Z
11
+ date: 2016-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -16,34 +16,34 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '4.2'
19
+ version: '5.0'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 4.2.6
22
+ version: 5.0.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: '4.2'
29
+ version: '5.0'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 4.2.6
32
+ version: 5.0.0
33
33
  - !ruby/object:Gem::Dependency
34
- name: responders
34
+ name: phctitleseo
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '2.2'
39
+ version: '3.0'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '2.2'
46
+ version: '3.0'
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: multi_json
49
49
  requirement: !ruby/object:Gem::Requirement
@@ -64,66 +64,6 @@ dependencies:
64
64
  - - ">="
65
65
  - !ruby/object:Gem::Version
66
66
  version: 1.12.1
67
- - !ruby/object:Gem::Dependency
68
- name: phcnotifi
69
- requirement: !ruby/object:Gem::Requirement
70
- requirements:
71
- - - "~>"
72
- - !ruby/object:Gem::Version
73
- version: '2.7'
74
- - - ">="
75
- - !ruby/object:Gem::Version
76
- version: 2.7.1
77
- type: :runtime
78
- prerelease: false
79
- version_requirements: !ruby/object:Gem::Requirement
80
- requirements:
81
- - - "~>"
82
- - !ruby/object:Gem::Version
83
- version: '2.7'
84
- - - ">="
85
- - !ruby/object:Gem::Version
86
- version: 2.7.1
87
- - !ruby/object:Gem::Dependency
88
- name: phctitleseo
89
- requirement: !ruby/object:Gem::Requirement
90
- requirements:
91
- - - "~>"
92
- - !ruby/object:Gem::Version
93
- version: '2.5'
94
- - - ">="
95
- - !ruby/object:Gem::Version
96
- version: 2.5.1
97
- type: :runtime
98
- prerelease: false
99
- version_requirements: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - "~>"
102
- - !ruby/object:Gem::Version
103
- version: '2.5'
104
- - - ">="
105
- - !ruby/object:Gem::Version
106
- version: 2.5.1
107
- - !ruby/object:Gem::Dependency
108
- name: authrocket
109
- requirement: !ruby/object:Gem::Requirement
110
- requirements:
111
- - - "~>"
112
- - !ruby/object:Gem::Version
113
- version: '2.0'
114
- - - ">="
115
- - !ruby/object:Gem::Version
116
- version: 2.0.1
117
- type: :runtime
118
- prerelease: false
119
- version_requirements: !ruby/object:Gem::Requirement
120
- requirements:
121
- - - "~>"
122
- - !ruby/object:Gem::Version
123
- version: '2.0'
124
- - - ">="
125
- - !ruby/object:Gem::Version
126
- version: 2.0.1
127
67
  - !ruby/object:Gem::Dependency
128
68
  name: pg
129
69
  requirement: !ruby/object:Gem::Requirement
@@ -239,181 +179,173 @@ dependencies:
239
179
  - !ruby/object:Gem::Version
240
180
  version: 5.0.5
241
181
  - !ruby/object:Gem::Dependency
242
- name: oj
182
+ name: country_select
243
183
  requirement: !ruby/object:Gem::Requirement
244
184
  requirements:
245
185
  - - "~>"
246
186
  - !ruby/object:Gem::Version
247
- version: '2.16'
187
+ version: '2.5'
248
188
  - - ">="
249
189
  - !ruby/object:Gem::Version
250
- version: 2.16.1
190
+ version: 2.5.2
251
191
  type: :runtime
252
192
  prerelease: false
253
193
  version_requirements: !ruby/object:Gem::Requirement
254
194
  requirements:
255
195
  - - "~>"
256
196
  - !ruby/object:Gem::Version
257
- version: '2.16'
197
+ version: '2.5'
258
198
  - - ">="
259
199
  - !ruby/object:Gem::Version
260
- version: 2.16.1
200
+ version: 2.5.2
261
201
  - !ruby/object:Gem::Dependency
262
- name: rabl
202
+ name: rspec-rails
263
203
  requirement: !ruby/object:Gem::Requirement
264
204
  requirements:
265
205
  - - "~>"
266
206
  - !ruby/object:Gem::Version
267
- version: 0.12.0
268
- type: :runtime
207
+ version: '3.5'
208
+ type: :development
269
209
  prerelease: false
270
210
  version_requirements: !ruby/object:Gem::Requirement
271
211
  requirements:
272
212
  - - "~>"
273
213
  - !ruby/object:Gem::Version
274
- version: 0.12.0
214
+ version: '3.5'
275
215
  - !ruby/object:Gem::Dependency
276
- name: sqlite3
216
+ name: factory_girl_rails
277
217
  requirement: !ruby/object:Gem::Requirement
278
218
  requirements:
279
219
  - - "~>"
280
220
  - !ruby/object:Gem::Version
281
- version: '1.3'
282
- - - ">="
283
- - !ruby/object:Gem::Version
284
- version: 1.3.11
221
+ version: '4.7'
285
222
  type: :development
286
223
  prerelease: false
287
224
  version_requirements: !ruby/object:Gem::Requirement
288
225
  requirements:
289
226
  - - "~>"
290
227
  - !ruby/object:Gem::Version
291
- version: '1.3'
292
- - - ">="
293
- - !ruby/object:Gem::Version
294
- version: 1.3.11
228
+ version: '4.7'
295
229
  - !ruby/object:Gem::Dependency
296
- name: database_cleaner
230
+ name: capybara
297
231
  requirement: !ruby/object:Gem::Requirement
298
232
  requirements:
299
233
  - - "~>"
300
234
  - !ruby/object:Gem::Version
301
- version: '1.5'
235
+ version: '2.7'
302
236
  - - ">="
303
237
  - !ruby/object:Gem::Version
304
- version: 1.5.3
238
+ version: 2.7.1
305
239
  type: :development
306
240
  prerelease: false
307
241
  version_requirements: !ruby/object:Gem::Requirement
308
242
  requirements:
309
243
  - - "~>"
310
244
  - !ruby/object:Gem::Version
311
- version: '1.5'
245
+ version: '2.7'
312
246
  - - ">="
313
247
  - !ruby/object:Gem::Version
314
- version: 1.5.3
248
+ version: 2.7.1
315
249
  - !ruby/object:Gem::Dependency
316
- name: factory_girl_rails
250
+ name: byebug
317
251
  requirement: !ruby/object:Gem::Requirement
318
252
  requirements:
319
253
  - - "~>"
320
254
  - !ruby/object:Gem::Version
321
- version: '4.7'
322
- type: :development
323
- prerelease: false
324
- version_requirements: !ruby/object:Gem::Requirement
325
- requirements:
326
- - - "~>"
327
- - !ruby/object:Gem::Version
328
- version: '4.7'
329
- - !ruby/object:Gem::Dependency
330
- name: rspec-rails
331
- requirement: !ruby/object:Gem::Requirement
332
- requirements:
333
- - - "~>"
255
+ version: '9.0'
256
+ - - ">="
334
257
  - !ruby/object:Gem::Version
335
- version: '3.5'
258
+ version: 9.0.5
336
259
  type: :development
337
260
  prerelease: false
338
261
  version_requirements: !ruby/object:Gem::Requirement
339
262
  requirements:
340
263
  - - "~>"
341
264
  - !ruby/object:Gem::Version
342
- version: '3.5'
265
+ version: '9.0'
266
+ - - ">="
267
+ - !ruby/object:Gem::Version
268
+ version: 9.0.5
343
269
  - !ruby/object:Gem::Dependency
344
- name: capybara
270
+ name: sqlite3
345
271
  requirement: !ruby/object:Gem::Requirement
346
272
  requirements:
347
273
  - - "~>"
348
274
  - !ruby/object:Gem::Version
349
- version: '2.7'
275
+ version: '1.3'
350
276
  - - ">="
351
277
  - !ruby/object:Gem::Version
352
- version: 2.7.1
278
+ version: 1.3.11
353
279
  type: :development
354
280
  prerelease: false
355
281
  version_requirements: !ruby/object:Gem::Requirement
356
282
  requirements:
357
283
  - - "~>"
358
284
  - !ruby/object:Gem::Version
359
- version: '2.7'
285
+ version: '1.3'
360
286
  - - ">="
361
287
  - !ruby/object:Gem::Version
362
- version: 2.7.1
288
+ version: 1.3.11
363
289
  - !ruby/object:Gem::Dependency
364
- name: better_errors
290
+ name: database_cleaner
365
291
  requirement: !ruby/object:Gem::Requirement
366
292
  requirements:
367
293
  - - "~>"
368
294
  - !ruby/object:Gem::Version
369
- version: '2.1'
295
+ version: '1.5'
370
296
  - - ">="
371
297
  - !ruby/object:Gem::Version
372
- version: 2.1.1
298
+ version: 1.5.3
373
299
  type: :development
374
300
  prerelease: false
375
301
  version_requirements: !ruby/object:Gem::Requirement
376
302
  requirements:
377
303
  - - "~>"
378
304
  - !ruby/object:Gem::Version
379
- version: '2.1'
305
+ version: '1.5'
380
306
  - - ">="
381
307
  - !ruby/object:Gem::Version
382
- version: 2.1.1
308
+ version: 1.5.3
383
309
  - !ruby/object:Gem::Dependency
384
- name: binding_of_caller
310
+ name: faker
385
311
  requirement: !ruby/object:Gem::Requirement
386
312
  requirements:
387
313
  - - "~>"
388
314
  - !ruby/object:Gem::Version
389
- version: 0.7.2
315
+ version: '1.6'
316
+ - - ">="
317
+ - !ruby/object:Gem::Version
318
+ version: 1.6.3
390
319
  type: :development
391
320
  prerelease: false
392
321
  version_requirements: !ruby/object:Gem::Requirement
393
322
  requirements:
394
323
  - - "~>"
395
324
  - !ruby/object:Gem::Version
396
- version: 0.7.2
325
+ version: '1.6'
326
+ - - ">="
327
+ - !ruby/object:Gem::Version
328
+ version: 1.6.3
397
329
  - !ruby/object:Gem::Dependency
398
- name: faker
330
+ name: launchy
399
331
  requirement: !ruby/object:Gem::Requirement
400
332
  requirements:
401
333
  - - "~>"
402
334
  - !ruby/object:Gem::Version
403
- version: '1.6'
335
+ version: '2.4'
404
336
  - - ">="
405
337
  - !ruby/object:Gem::Version
406
- version: 1.6.3
338
+ version: 2.4.3
407
339
  type: :development
408
340
  prerelease: false
409
341
  version_requirements: !ruby/object:Gem::Requirement
410
342
  requirements:
411
343
  - - "~>"
412
344
  - !ruby/object:Gem::Version
413
- version: '1.6'
345
+ version: '2.4'
414
346
  - - ">="
415
347
  - !ruby/object:Gem::Version
416
- version: 1.6.3
348
+ version: 2.4.3
417
349
  - !ruby/object:Gem::Dependency
418
350
  name: selenium-webdriver
419
351
  requirement: !ruby/object:Gem::Requirement
@@ -442,60 +374,78 @@ executables: []
442
374
  extensions: []
443
375
  extra_rdoc_files: []
444
376
  files:
445
- - LICENSE
377
+ - MIT-LICENSE
446
378
  - README.md
447
379
  - Rakefile
380
+ - app/assets/config/phcscriptcdn_manifest.js
448
381
  - app/assets/javascripts/phcscriptcdn/application.js
449
- - app/assets/javascripts/phcscriptcdn/scriptcdn/scripts.js
450
- - app/assets/javascripts/phcscriptcdn/scriptcdn/scripturls.js
451
- - app/assets/javascripts/phcscriptcdn/scriptcdn/scriptversions.js
452
- - app/assets/stylesheets/phcscriptcdn/application.css.scss
453
- - app/assets/stylesheets/phcscriptcdn/custom.scss
454
- - app/assets/stylesheets/phcscriptcdn/scriptcdn/scripts.css
455
- - app/assets/stylesheets/phcscriptcdn/scriptcdn/scripturls.css
456
- - app/assets/stylesheets/phcscriptcdn/scriptcdn/scriptversions.css
382
+ - app/assets/javascripts/phcscriptcdn/scriptcdn/authors.js
383
+ - app/assets/javascripts/phcscriptcdn/scriptcdn/information.js
384
+ - app/assets/javascripts/phcscriptcdn/scriptcdn/mains.js
385
+ - app/assets/javascripts/phcscriptcdn/scriptcdn/urls.js
386
+ - app/assets/javascripts/phcscriptcdn/scriptcdn/versions.js
387
+ - app/assets/stylesheets/phcscriptcdn/application.css
388
+ - app/assets/stylesheets/phcscriptcdn/scriptcdn/authors.scss
389
+ - app/assets/stylesheets/phcscriptcdn/scriptcdn/information.scss
390
+ - app/assets/stylesheets/phcscriptcdn/scriptcdn/mains.scss
391
+ - app/assets/stylesheets/phcscriptcdn/scriptcdn/urls.scss
392
+ - app/assets/stylesheets/phcscriptcdn/scriptcdn/versions.scss
393
+ - app/assets/stylesheets/scaffolds.scss
457
394
  - app/controllers/phcscriptcdn/application_controller.rb
458
- - app/controllers/phcscriptcdn/scriptcdn/scripts_controller.rb
459
- - app/controllers/phcscriptcdn/scriptcdn/scripturls_controller.rb
460
- - app/controllers/phcscriptcdn/scriptcdn/scriptversions_controller.rb
395
+ - app/controllers/phcscriptcdn/scriptcdn/authors_controller.rb
396
+ - app/controllers/phcscriptcdn/scriptcdn/informations_controller.rb
397
+ - app/controllers/phcscriptcdn/scriptcdn/mains_controller.rb
398
+ - app/controllers/phcscriptcdn/scriptcdn/urls_controller.rb
399
+ - app/controllers/phcscriptcdn/scriptcdn/versions_controller.rb
461
400
  - app/helpers/phcscriptcdn/application_helper.rb
462
- - app/helpers/phcscriptcdn/scriptcdn/scripts_helper.rb
463
- - app/helpers/phcscriptcdn/scriptcdn/scripturls_helper.rb
464
- - app/helpers/phcscriptcdn/scriptcdn/scriptversions_helper.rb
401
+ - app/jobs/phcscriptcdn/application_job.rb
402
+ - app/models/phcscriptcdn/application_record.rb
465
403
  - app/models/phcscriptcdn/scriptcdn.rb
466
- - app/models/phcscriptcdn/scriptcdn/script.rb
467
- - app/models/phcscriptcdn/scriptcdn/scripturl.rb
468
- - app/models/phcscriptcdn/scriptcdn/scriptversion.rb
404
+ - app/models/phcscriptcdn/scriptcdn/author.rb
405
+ - app/models/phcscriptcdn/scriptcdn/information.rb
406
+ - app/models/phcscriptcdn/scriptcdn/main.rb
407
+ - app/models/phcscriptcdn/scriptcdn/url.rb
408
+ - app/models/phcscriptcdn/scriptcdn/version.rb
469
409
  - app/views/layouts/phcscriptcdn/application.html.erb
470
- - app/views/phcscriptcdn/scriptcdn/scripts/_form.html.erb
471
- - app/views/phcscriptcdn/scriptcdn/scripts/edit.html.erb
472
- - app/views/phcscriptcdn/scriptcdn/scripts/index.html.erb
473
- - app/views/phcscriptcdn/scriptcdn/scripts/index_scriptlist.html.erb
474
- - app/views/phcscriptcdn/scriptcdn/scripts/new.html.erb
475
- - app/views/phcscriptcdn/scriptcdn/scripts/show.html.erb
476
- - app/views/phcscriptcdn/scriptcdn/scripts/show_scriptlisting.html.erb
477
- - app/views/phcscriptcdn/scriptcdn/scripturls/_form.html.erb
478
- - app/views/phcscriptcdn/scriptcdn/scripturls/_formpatch.html.erb
479
- - app/views/phcscriptcdn/scriptcdn/scripturls/edit.html.erb
480
- - app/views/phcscriptcdn/scriptcdn/scripturls/index.html.erb
481
- - app/views/phcscriptcdn/scriptcdn/scripturls/new.html.erb
482
- - app/views/phcscriptcdn/scriptcdn/scripturls/show.html.erb
483
- - app/views/phcscriptcdn/scriptcdn/scriptversions/_form.html.erb
484
- - app/views/phcscriptcdn/scriptcdn/scriptversions/edit.html.erb
485
- - app/views/phcscriptcdn/scriptcdn/scriptversions/index.html.erb
486
- - app/views/phcscriptcdn/scriptcdn/scriptversions/new.html.erb
410
+ - app/views/layouts/phcscriptcdn/frontend.html.erb
411
+ - app/views/phcscriptcdn/scriptcdn/authors/_form.html.erb
412
+ - app/views/phcscriptcdn/scriptcdn/authors/_formpatch.html.erb
413
+ - app/views/phcscriptcdn/scriptcdn/authors/edit.html.erb
414
+ - app/views/phcscriptcdn/scriptcdn/authors/index.html.erb
415
+ - app/views/phcscriptcdn/scriptcdn/authors/new.html.erb
416
+ - app/views/phcscriptcdn/scriptcdn/information/_form.html.erb
417
+ - app/views/phcscriptcdn/scriptcdn/information/_formpatch.html.erb
418
+ - app/views/phcscriptcdn/scriptcdn/information/edit.html.erb
419
+ - app/views/phcscriptcdn/scriptcdn/information/index.html.erb
420
+ - app/views/phcscriptcdn/scriptcdn/information/new.html.erb
421
+ - app/views/phcscriptcdn/scriptcdn/information/show.html.erb
422
+ - app/views/phcscriptcdn/scriptcdn/mains/_form.html.erb
423
+ - app/views/phcscriptcdn/scriptcdn/mains/edit.html.erb
424
+ - app/views/phcscriptcdn/scriptcdn/mains/index.html.erb
425
+ - app/views/phcscriptcdn/scriptcdn/mains/new.html.erb
426
+ - app/views/phcscriptcdn/scriptcdn/urls/_form.html.erb
427
+ - app/views/phcscriptcdn/scriptcdn/urls/_formpatch.html.erb
428
+ - app/views/phcscriptcdn/scriptcdn/urls/edit.html.erb
429
+ - app/views/phcscriptcdn/scriptcdn/urls/index.html.erb
430
+ - app/views/phcscriptcdn/scriptcdn/urls/new.html.erb
431
+ - app/views/phcscriptcdn/scriptcdn/versions/_form.html.erb
432
+ - app/views/phcscriptcdn/scriptcdn/versions/_formpatch.html.erb
433
+ - app/views/phcscriptcdn/scriptcdn/versions/edit.html.erb
434
+ - app/views/phcscriptcdn/scriptcdn/versions/index.html.erb
435
+ - app/views/phcscriptcdn/scriptcdn/versions/new.html.erb
487
436
  - config/routes.rb
488
- - db/migrate/20160222025658_create_phcscriptcdn_scriptcdn_scripts.rb
489
- - db/migrate/20160222030223_create_phcscriptcdn_scriptcdn_scriptversions.rb
490
- - db/migrate/20160222030446_create_phcscriptcdn_scriptcdn_scripturls.rb
491
- - lib/generators/phcscriptcdn/views_generator.rb
437
+ - db/migrate/20160704004828_create_phcscriptcdn_scriptcdn_authors.rb
438
+ - db/migrate/20160704005455_create_phcscriptcdn_scriptcdn_information.rb
439
+ - db/migrate/20160704011123_create_phcscriptcdn_scriptcdn_urls.rb
440
+ - db/migrate/20160704011452_create_phcscriptcdn_scriptcdn_versions.rb
441
+ - db/migrate/20160704011727_create_phcscriptcdn_scriptcdn_mains.rb
492
442
  - lib/phcscriptcdn.rb
493
443
  - lib/phcscriptcdn/engine.rb
494
444
  - lib/phcscriptcdn/version.rb
495
445
  - lib/tasks/phcscriptcdn_tasks.rake
496
446
  homepage: https://www.phcnetworks.net/
497
447
  licenses:
498
- - GPL-3.0
448
+ - MIT
499
449
  metadata: {}
500
450
  post_install_message:
501
451
  rdoc_options: []