phcscriptcdnpro 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +238 -0
  3. data/README.md +10 -0
  4. data/Rakefile +21 -0
  5. data/app/assets/javascripts/phcscriptcdnpro/application.js +16 -0
  6. data/app/assets/stylesheets/phcscriptcdnpro/application.css.scss +10 -0
  7. data/app/assets/stylesheets/phcscriptcdnpro/custom.scss +4 -0
  8. data/app/controllers/phcscriptcdnpro/application_controller.rb +9 -0
  9. data/app/controllers/phcscriptcdnpro/scriptcdn/scripts_controller.rb +82 -0
  10. data/app/controllers/phcscriptcdnpro/scriptcdn/scripturls_controller.rb +89 -0
  11. data/app/controllers/phcscriptcdnpro/scriptcdn/scriptversions_controller.rb +63 -0
  12. data/app/helpers/phcscriptcdnpro/application_helper.rb +4 -0
  13. data/app/helpers/phcscriptcdnpro/scriptcdn/scripts_helper.rb +4 -0
  14. data/app/helpers/phcscriptcdnpro/scriptcdn/scripturls_helper.rb +4 -0
  15. data/app/helpers/phcscriptcdnpro/scriptcdn/scriptversions_helper.rb +4 -0
  16. data/app/models/phcscriptcdnpro/scriptcdn.rb +7 -0
  17. data/app/models/phcscriptcdnpro/scriptcdn/script.rb +15 -0
  18. data/app/models/phcscriptcdnpro/scriptcdn/scripturl.rb +14 -0
  19. data/app/models/phcscriptcdnpro/scriptcdn/scriptversion.rb +15 -0
  20. data/app/views/layouts/phcscriptcdnpro/application.html.erb +21 -0
  21. data/app/views/phcscriptcdnpro/scriptcdn/scripts/_form.html.erb +22 -0
  22. data/app/views/phcscriptcdnpro/scriptcdn/scripts/edit.html.erb +12 -0
  23. data/app/views/phcscriptcdnpro/scriptcdn/scripts/index.html.erb +36 -0
  24. data/app/views/phcscriptcdnpro/scriptcdn/scripts/index_scriptlist.html.erb +8 -0
  25. data/app/views/phcscriptcdnpro/scriptcdn/scripts/new.html.erb +11 -0
  26. data/app/views/phcscriptcdnpro/scriptcdn/scripts/show.html.erb +19 -0
  27. data/app/views/phcscriptcdnpro/scriptcdn/scripts/show_scriptlisting.html.erb +16 -0
  28. data/app/views/phcscriptcdnpro/scriptcdn/scripturls/_form.html.erb +22 -0
  29. data/app/views/phcscriptcdnpro/scriptcdn/scripturls/_formpatch.html.erb +22 -0
  30. data/app/views/phcscriptcdnpro/scriptcdn/scripturls/edit.html.erb +12 -0
  31. data/app/views/phcscriptcdnpro/scriptcdn/scripturls/index.html.erb +37 -0
  32. data/app/views/phcscriptcdnpro/scriptcdn/scripturls/new.html.erb +12 -0
  33. data/app/views/phcscriptcdnpro/scriptcdn/scripturls/show.html.erb +11 -0
  34. data/app/views/phcscriptcdnpro/scriptcdn/scriptversions/_form.html.erb +19 -0
  35. data/app/views/phcscriptcdnpro/scriptcdn/scriptversions/edit.html.erb +12 -0
  36. data/app/views/phcscriptcdnpro/scriptcdn/scriptversions/index.html.erb +37 -0
  37. data/app/views/phcscriptcdnpro/scriptcdn/scriptversions/new.html.erb +12 -0
  38. data/config/routes.rb +11 -0
  39. data/db/migrate/20160222025658_create_phcscriptcdnpro_scriptcdn_scripts.rb +12 -0
  40. data/db/migrate/20160222030223_create_phcscriptcdnpro_scriptcdn_scriptversions.rb +12 -0
  41. data/db/migrate/20160222030446_create_phcscriptcdnpro_scriptcdn_scripturls.rb +13 -0
  42. data/lib/phcscriptcdnpro.rb +4 -0
  43. data/lib/phcscriptcdnpro/engine.rb +37 -0
  44. data/lib/phcscriptcdnpro/version.rb +3 -0
  45. data/lib/tasks/phcscriptcdnpro_tasks.rake +4 -0
  46. metadata +455 -0
@@ -0,0 +1,12 @@
1
+ <%= render 'phcnotifi/notifications' %>
2
+
3
+ <div class="wrapper wrapper-content">
4
+ <div class="panel panel-default">
5
+ <div class="panel-heading">
6
+ <i class="fa fa-code"></i> Edit Script Version Pak Information
7
+ </div>
8
+ <div class="panel-body">
9
+ <%= render 'form' %>
10
+ </div>
11
+ </div>
12
+ </div>
@@ -0,0 +1,37 @@
1
+ <%= render 'phcnotifi/notifications' %>
2
+
3
+ <!-- Main Content -->
4
+ <div class="wrapper wrapper-content">
5
+ <div class="panel panel-default">
6
+ <div class="panel-heading">
7
+ <i class="fa fa-code"></i> Script Version List
8
+ </div>
9
+ <div class="panel-body">
10
+ <table class="table table-bordered table-striped table-hover">
11
+
12
+ <thead>
13
+ <tr>
14
+ <th>Script Version Packages</th>
15
+ <th></th>
16
+ <th></th>
17
+ </tr>
18
+ </thead>
19
+
20
+ <tbody>
21
+ <% @scriptcdn_scriptversions.each do |scriptcdn_scriptversion| %>
22
+ <tr>
23
+ <td><%= scriptcdn_scriptversion.scrptversionpakname %></td>
24
+ <td><%= scriptcdn_scriptversion.scrptversion %></td>
25
+ <td>
26
+ <%= link_to 'Edit', edit_scriptcdn_scriptversion_path(scriptcdn_scriptversion), class: "btn btn-w-m btn-primary btn-xs btn-phc-custom" %>
27
+ <%= link_to 'Destroy', scriptcdn_scriptversion, class: "btn btn-w-m btn-primary btn-phc-custom btn-xs btn-phc-custom", method: :delete, data: { confirm: 'Are you sure?' } %>
28
+ </td>
29
+ </tr>
30
+ <% end %>
31
+ </tbody>
32
+
33
+ </table>
34
+ <%= link_to 'Add a New Version Option', new_scriptcdn_scriptversion_path, class: "btn btn-w-m btn-primary btn-phc-custom" %>
35
+ </div>
36
+ </div>
37
+ </div>
@@ -0,0 +1,12 @@
1
+ <%= render 'phcnotifi/notifications' %>
2
+
3
+ <div class="wrapper wrapper-content">
4
+ <div class="panel panel-default">
5
+ <div class="panel-heading">
6
+ <i class="fa fa-code"></i> Create a New Script Version Pak
7
+ </div>
8
+ <div class="panel-body">
9
+ <%= render 'form' %>
10
+ </div>
11
+ </div>
12
+ </div>
data/config/routes.rb ADDED
@@ -0,0 +1,11 @@
1
+ Phcscriptcdnpro::Engine.routes.draw do
2
+
3
+ # Script CDN Listing System
4
+ namespace :scriptcdn do
5
+ resources :scripts
6
+ resources :scriptversions do
7
+ resources :scripturls
8
+ end
9
+ end
10
+
11
+ end
@@ -0,0 +1,12 @@
1
+ class CreatePhcscriptcdnproScriptcdnScripts < ActiveRecord::Migration
2
+ def change
3
+ create_table :phcscriptcdnpro_scriptcdn_scripts do |t|
4
+
5
+ t.string :scrptname
6
+ t.text :scrptdescription
7
+
8
+ t.timestamps null: false
9
+
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ class CreatePhcscriptcdnproScriptcdnScriptversions < ActiveRecord::Migration
2
+ def change
3
+ create_table :phcscriptcdnpro_scriptcdn_scriptversions do |t|
4
+
5
+ t.string :scrptversionpakname
6
+ t.string :scrptversion
7
+
8
+ t.timestamps null: false
9
+
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ class CreatePhcscriptcdnproScriptcdnScripturls < ActiveRecord::Migration
2
+ def change
3
+ create_table :phcscriptcdnpro_scriptcdn_scripturls do |t|
4
+
5
+ t.string :scrpturlphc
6
+ t.string :scrpturltype
7
+ t.references :scriptversion, index: true
8
+
9
+ t.timestamps null: false
10
+
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,4 @@
1
+ require "phcscriptcdnpro/engine"
2
+
3
+ module Phcscriptcdnpro
4
+ end
@@ -0,0 +1,37 @@
1
+ module Phcscriptcdnpro
2
+ class Engine < ::Rails::Engine
3
+
4
+ # Load UI Dependecies
5
+ require 'jquery-rails'
6
+ require 'sass-rails'
7
+ require 'bootstrap-sass'
8
+ require 'font-awesome-rails'
9
+
10
+ # PHCEngines
11
+ require 'phcnotifi'
12
+ require 'phctitleseo'
13
+
14
+ # Give PHCScriptCDN(Pro) Own Namespace
15
+ isolate_namespace Phcscriptcdnpro
16
+
17
+ # Testing Generator
18
+ config.generators do |g|
19
+ g.test_framework :rspec,
20
+ fixtures: true,
21
+ view_specs: false,
22
+ helper_specs: false,
23
+ routing_specs: false,
24
+ controller_specs: true,
25
+ request_specs: false
26
+ g.fixture_replacement :factory_girl, dir: "spec/factories"
27
+ end
28
+
29
+ # Load Helper Files
30
+ config.to_prepare do
31
+ ApplicationController.helper(ApplicationHelper)
32
+ Phcnotifi::ApplicationController.helper(ApplicationHelper)
33
+ Phctitleseo::ApplicationController.helper(ApplicationHelper)
34
+ end
35
+
36
+ end
37
+ end
@@ -0,0 +1,3 @@
1
+ module Phcscriptcdnpro
2
+ VERSION = "1.2.0"
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :phcscriptcdnpro do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,455 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: phcscriptcdnpro
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.0
5
+ platform: ruby
6
+ authors:
7
+ - BradPotts
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-06-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.2'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 4.2.6
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '4.2'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 4.2.6
33
+ - !ruby/object:Gem::Dependency
34
+ name: phcnotifi
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '2.6'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 2.6.5
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '2.6'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 2.6.5
53
+ - !ruby/object:Gem::Dependency
54
+ name: phctitleseo
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '2.0'
60
+ type: :runtime
61
+ prerelease: false
62
+ version_requirements: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - "~>"
65
+ - !ruby/object:Gem::Version
66
+ version: '2.0'
67
+ - !ruby/object:Gem::Dependency
68
+ name: authrocket
69
+ requirement: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - "~>"
72
+ - !ruby/object:Gem::Version
73
+ version: '1.5'
74
+ type: :runtime
75
+ prerelease: false
76
+ version_requirements: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - "~>"
79
+ - !ruby/object:Gem::Version
80
+ version: '1.5'
81
+ - !ruby/object:Gem::Dependency
82
+ name: pg
83
+ requirement: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - "~>"
86
+ - !ruby/object:Gem::Version
87
+ version: 0.18.4
88
+ type: :runtime
89
+ prerelease: false
90
+ version_requirements: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - "~>"
93
+ - !ruby/object:Gem::Version
94
+ version: 0.18.4
95
+ - !ruby/object:Gem::Dependency
96
+ name: jquery-rails
97
+ requirement: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - "~>"
100
+ - !ruby/object:Gem::Version
101
+ version: '4.1'
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: 4.1.1
105
+ type: :runtime
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: '4.1'
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: 4.1.1
115
+ - !ruby/object:Gem::Dependency
116
+ name: jquery-ui-rails
117
+ requirement: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - "~>"
120
+ - !ruby/object:Gem::Version
121
+ version: '5.0'
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: 5.0.5
125
+ type: :runtime
126
+ prerelease: false
127
+ version_requirements: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '5.0'
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: 5.0.5
135
+ - !ruby/object:Gem::Dependency
136
+ name: bootstrap-sass
137
+ requirement: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - "~>"
140
+ - !ruby/object:Gem::Version
141
+ version: '3.3'
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: 3.3.6
145
+ type: :runtime
146
+ prerelease: false
147
+ version_requirements: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
150
+ - !ruby/object:Gem::Version
151
+ version: '3.3'
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: 3.3.6
155
+ - !ruby/object:Gem::Dependency
156
+ name: font-awesome-rails
157
+ requirement: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - "~>"
160
+ - !ruby/object:Gem::Version
161
+ version: '4.6'
162
+ - - ">="
163
+ - !ruby/object:Gem::Version
164
+ version: 4.6.1.0
165
+ type: :runtime
166
+ prerelease: false
167
+ version_requirements: !ruby/object:Gem::Requirement
168
+ requirements:
169
+ - - "~>"
170
+ - !ruby/object:Gem::Version
171
+ version: '4.6'
172
+ - - ">="
173
+ - !ruby/object:Gem::Version
174
+ version: 4.6.1.0
175
+ - !ruby/object:Gem::Dependency
176
+ name: sass-rails
177
+ requirement: !ruby/object:Gem::Requirement
178
+ requirements:
179
+ - - "~>"
180
+ - !ruby/object:Gem::Version
181
+ version: '5.0'
182
+ - - ">="
183
+ - !ruby/object:Gem::Version
184
+ version: 5.0.4
185
+ type: :runtime
186
+ prerelease: false
187
+ version_requirements: !ruby/object:Gem::Requirement
188
+ requirements:
189
+ - - "~>"
190
+ - !ruby/object:Gem::Version
191
+ version: '5.0'
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: 5.0.4
195
+ - !ruby/object:Gem::Dependency
196
+ name: oj
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - "~>"
200
+ - !ruby/object:Gem::Version
201
+ version: '2.15'
202
+ type: :runtime
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - "~>"
207
+ - !ruby/object:Gem::Version
208
+ version: '2.15'
209
+ - !ruby/object:Gem::Dependency
210
+ name: rabl
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - "~>"
214
+ - !ruby/object:Gem::Version
215
+ version: 0.12.0
216
+ type: :runtime
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - "~>"
221
+ - !ruby/object:Gem::Version
222
+ version: 0.12.0
223
+ - !ruby/object:Gem::Dependency
224
+ name: sqlite3
225
+ requirement: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - "~>"
228
+ - !ruby/object:Gem::Version
229
+ version: '1.3'
230
+ - - ">="
231
+ - !ruby/object:Gem::Version
232
+ version: 1.3.11
233
+ type: :development
234
+ prerelease: false
235
+ version_requirements: !ruby/object:Gem::Requirement
236
+ requirements:
237
+ - - "~>"
238
+ - !ruby/object:Gem::Version
239
+ version: '1.3'
240
+ - - ">="
241
+ - !ruby/object:Gem::Version
242
+ version: 1.3.11
243
+ - !ruby/object:Gem::Dependency
244
+ name: database_cleaner
245
+ requirement: !ruby/object:Gem::Requirement
246
+ requirements:
247
+ - - "~>"
248
+ - !ruby/object:Gem::Version
249
+ version: '1.5'
250
+ - - ">="
251
+ - !ruby/object:Gem::Version
252
+ version: 1.5.3
253
+ type: :development
254
+ prerelease: false
255
+ version_requirements: !ruby/object:Gem::Requirement
256
+ requirements:
257
+ - - "~>"
258
+ - !ruby/object:Gem::Version
259
+ version: '1.5'
260
+ - - ">="
261
+ - !ruby/object:Gem::Version
262
+ version: 1.5.3
263
+ - !ruby/object:Gem::Dependency
264
+ name: factory_girl_rails
265
+ requirement: !ruby/object:Gem::Requirement
266
+ requirements:
267
+ - - "~>"
268
+ - !ruby/object:Gem::Version
269
+ version: '4.7'
270
+ type: :development
271
+ prerelease: false
272
+ version_requirements: !ruby/object:Gem::Requirement
273
+ requirements:
274
+ - - "~>"
275
+ - !ruby/object:Gem::Version
276
+ version: '4.7'
277
+ - !ruby/object:Gem::Dependency
278
+ name: rspec-rails
279
+ requirement: !ruby/object:Gem::Requirement
280
+ requirements:
281
+ - - "~>"
282
+ - !ruby/object:Gem::Version
283
+ version: '3.4'
284
+ - - ">="
285
+ - !ruby/object:Gem::Version
286
+ version: 3.4.2
287
+ type: :development
288
+ prerelease: false
289
+ version_requirements: !ruby/object:Gem::Requirement
290
+ requirements:
291
+ - - "~>"
292
+ - !ruby/object:Gem::Version
293
+ version: '3.4'
294
+ - - ">="
295
+ - !ruby/object:Gem::Version
296
+ version: 3.4.2
297
+ - !ruby/object:Gem::Dependency
298
+ name: capybara
299
+ requirement: !ruby/object:Gem::Requirement
300
+ requirements:
301
+ - - "~>"
302
+ - !ruby/object:Gem::Version
303
+ version: '2.7'
304
+ type: :development
305
+ prerelease: false
306
+ version_requirements: !ruby/object:Gem::Requirement
307
+ requirements:
308
+ - - "~>"
309
+ - !ruby/object:Gem::Version
310
+ version: '2.7'
311
+ - !ruby/object:Gem::Dependency
312
+ name: better_errors
313
+ requirement: !ruby/object:Gem::Requirement
314
+ requirements:
315
+ - - "~>"
316
+ - !ruby/object:Gem::Version
317
+ version: '2.1'
318
+ - - ">="
319
+ - !ruby/object:Gem::Version
320
+ version: 2.1.1
321
+ type: :development
322
+ prerelease: false
323
+ version_requirements: !ruby/object:Gem::Requirement
324
+ requirements:
325
+ - - "~>"
326
+ - !ruby/object:Gem::Version
327
+ version: '2.1'
328
+ - - ">="
329
+ - !ruby/object:Gem::Version
330
+ version: 2.1.1
331
+ - !ruby/object:Gem::Dependency
332
+ name: binding_of_caller
333
+ requirement: !ruby/object:Gem::Requirement
334
+ requirements:
335
+ - - "~>"
336
+ - !ruby/object:Gem::Version
337
+ version: 0.7.2
338
+ type: :development
339
+ prerelease: false
340
+ version_requirements: !ruby/object:Gem::Requirement
341
+ requirements:
342
+ - - "~>"
343
+ - !ruby/object:Gem::Version
344
+ version: 0.7.2
345
+ - !ruby/object:Gem::Dependency
346
+ name: faker
347
+ requirement: !ruby/object:Gem::Requirement
348
+ requirements:
349
+ - - "~>"
350
+ - !ruby/object:Gem::Version
351
+ version: '1.6'
352
+ - - ">="
353
+ - !ruby/object:Gem::Version
354
+ version: 1.6.3
355
+ type: :development
356
+ prerelease: false
357
+ version_requirements: !ruby/object:Gem::Requirement
358
+ requirements:
359
+ - - "~>"
360
+ - !ruby/object:Gem::Version
361
+ version: '1.6'
362
+ - - ">="
363
+ - !ruby/object:Gem::Version
364
+ version: 1.6.3
365
+ - !ruby/object:Gem::Dependency
366
+ name: selenium-webdriver
367
+ requirement: !ruby/object:Gem::Requirement
368
+ requirements:
369
+ - - "~>"
370
+ - !ruby/object:Gem::Version
371
+ version: '2.53'
372
+ type: :development
373
+ prerelease: false
374
+ version_requirements: !ruby/object:Gem::Requirement
375
+ requirements:
376
+ - - "~>"
377
+ - !ruby/object:Gem::Version
378
+ version: '2.53'
379
+ description: PHCScriptCDN(Pro) script listing engine purpose built for PHCNetworks
380
+ Enterprise use.
381
+ email:
382
+ - developers@phcnetworks.net
383
+ executables: []
384
+ extensions: []
385
+ extra_rdoc_files: []
386
+ files:
387
+ - LICENSE
388
+ - README.md
389
+ - Rakefile
390
+ - app/assets/javascripts/phcscriptcdnpro/application.js
391
+ - app/assets/stylesheets/phcscriptcdnpro/application.css.scss
392
+ - app/assets/stylesheets/phcscriptcdnpro/custom.scss
393
+ - app/controllers/phcscriptcdnpro/application_controller.rb
394
+ - app/controllers/phcscriptcdnpro/scriptcdn/scripts_controller.rb
395
+ - app/controllers/phcscriptcdnpro/scriptcdn/scripturls_controller.rb
396
+ - app/controllers/phcscriptcdnpro/scriptcdn/scriptversions_controller.rb
397
+ - app/helpers/phcscriptcdnpro/application_helper.rb
398
+ - app/helpers/phcscriptcdnpro/scriptcdn/scripts_helper.rb
399
+ - app/helpers/phcscriptcdnpro/scriptcdn/scripturls_helper.rb
400
+ - app/helpers/phcscriptcdnpro/scriptcdn/scriptversions_helper.rb
401
+ - app/models/phcscriptcdnpro/scriptcdn.rb
402
+ - app/models/phcscriptcdnpro/scriptcdn/script.rb
403
+ - app/models/phcscriptcdnpro/scriptcdn/scripturl.rb
404
+ - app/models/phcscriptcdnpro/scriptcdn/scriptversion.rb
405
+ - app/views/layouts/phcscriptcdnpro/application.html.erb
406
+ - app/views/phcscriptcdnpro/scriptcdn/scripts/_form.html.erb
407
+ - app/views/phcscriptcdnpro/scriptcdn/scripts/edit.html.erb
408
+ - app/views/phcscriptcdnpro/scriptcdn/scripts/index.html.erb
409
+ - app/views/phcscriptcdnpro/scriptcdn/scripts/index_scriptlist.html.erb
410
+ - app/views/phcscriptcdnpro/scriptcdn/scripts/new.html.erb
411
+ - app/views/phcscriptcdnpro/scriptcdn/scripts/show.html.erb
412
+ - app/views/phcscriptcdnpro/scriptcdn/scripts/show_scriptlisting.html.erb
413
+ - app/views/phcscriptcdnpro/scriptcdn/scripturls/_form.html.erb
414
+ - app/views/phcscriptcdnpro/scriptcdn/scripturls/_formpatch.html.erb
415
+ - app/views/phcscriptcdnpro/scriptcdn/scripturls/edit.html.erb
416
+ - app/views/phcscriptcdnpro/scriptcdn/scripturls/index.html.erb
417
+ - app/views/phcscriptcdnpro/scriptcdn/scripturls/new.html.erb
418
+ - app/views/phcscriptcdnpro/scriptcdn/scripturls/show.html.erb
419
+ - app/views/phcscriptcdnpro/scriptcdn/scriptversions/_form.html.erb
420
+ - app/views/phcscriptcdnpro/scriptcdn/scriptversions/edit.html.erb
421
+ - app/views/phcscriptcdnpro/scriptcdn/scriptversions/index.html.erb
422
+ - app/views/phcscriptcdnpro/scriptcdn/scriptversions/new.html.erb
423
+ - config/routes.rb
424
+ - db/migrate/20160222025658_create_phcscriptcdnpro_scriptcdn_scripts.rb
425
+ - db/migrate/20160222030223_create_phcscriptcdnpro_scriptcdn_scriptversions.rb
426
+ - db/migrate/20160222030446_create_phcscriptcdnpro_scriptcdn_scripturls.rb
427
+ - lib/phcscriptcdnpro.rb
428
+ - lib/phcscriptcdnpro/engine.rb
429
+ - lib/phcscriptcdnpro/version.rb
430
+ - lib/tasks/phcscriptcdnpro_tasks.rake
431
+ homepage: https://www.phcnetworks.net/enterprise
432
+ licenses:
433
+ - GPL-3.0
434
+ metadata: {}
435
+ post_install_message:
436
+ rdoc_options: []
437
+ require_paths:
438
+ - lib
439
+ required_ruby_version: !ruby/object:Gem::Requirement
440
+ requirements:
441
+ - - ">="
442
+ - !ruby/object:Gem::Version
443
+ version: '0'
444
+ required_rubygems_version: !ruby/object:Gem::Requirement
445
+ requirements:
446
+ - - ">="
447
+ - !ruby/object:Gem::Version
448
+ version: '0'
449
+ requirements: []
450
+ rubyforge_project:
451
+ rubygems_version: 2.5.1
452
+ signing_key:
453
+ specification_version: 4
454
+ summary: ScriptCDN(Pro) Script Listing Engine
455
+ test_files: []