phcscriptcdnpro 1.8.9 → 1.8.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3c73352cf470a09c6cf6481de7932518f1ff8753
4
- data.tar.gz: a2a010a29f250cb57c607827b8dd3dbe3af54629
3
+ metadata.gz: 749d29945fb0d44e194721f3c3e794dd99280bee
4
+ data.tar.gz: ff12ec39a5afae0561a03485ac92bc1d1cb7d2f9
5
5
  SHA512:
6
- metadata.gz: 0e2794b275f4cf432f1385f67abf6de501a84a0fd93e4ae67d183e6efe4331e86ad20b47854c441dabca5c5773f05f29794109739578a2729348d1d86297f1b6
7
- data.tar.gz: 180d86744cab363b0479b548f1f9ed33a83017947516d4a2371b78ebc4784b8788adebaf1c80a0845c642ae6ddc934cea29ed679c3f0a39ecdf29901a4bb1c98
6
+ metadata.gz: dc136df72446a9c38c0937a3ee41ae1e8bf7592bd197024b160b81bab152c115bf1fb61c3711a5cbcefcc7f632ac359c61d70f421df250e24795dc47f1f728fe
7
+ data.tar.gz: 6258943bc42b5c7c948f8b69b3cef1667b5e389d214d7fc562a72431c00eee8a36487645cf947eb21a827544b0f0e30a393cee6cb81ea1930600692c11ee70db
@@ -3,40 +3,44 @@
3
3
  <%= render 'phcnotifi/validations', :object => @scriptcdn_information %>
4
4
 
5
5
  <div class="form-group field_with_error">
6
- <%= f.label :scripttitle %>
6
+ <%= f.label :scripttitle, "Script Title" %>
7
7
  <%= f.text_field :scripttitle, placeholder: "Script Information Title", class: "form-control" %>
8
8
  </div>
9
9
  <div class="form-group field_with_error">
10
- <%= f.label :scriptdescription %>
10
+ <%= f.label :scriptdescription, "Script Description" %>
11
11
  <%= f.text_field :scriptdescription, placeholder: "Script Information Description", class: "form-control" %>
12
12
  </div>
13
13
  <div class="form-group field_with_error">
14
- <%= f.label :scriptcategory %>
15
- <%= f.text_field :scriptcategory, placeholder: "Script Information Category", class: "form-control" %>
16
- </div>
14
+ <%= f.label :scriptcategory, "Script Category" %>
15
+ <%= f.select( :scriptcategory, [['HTML','html'],['CSS','css']], {}, {class: "form-control form-control-sm"}),:multiple => true, :size =>10 %>
16
+ </div>
17
17
  <div class="form-group field_with_error">
18
- <%= f.label :scriptwebsite %>
18
+ <%= f.label :scriptwebsite, "Script Website" %>
19
19
  <%= f.text_field :scriptwebsite, placeholder: "Script Information Website", class: "form-control" %>
20
20
  </div>
21
21
  <div class="form-group field_with_error">
22
- <%= f.label :scripttwitter %>
22
+ <%= f.label :scripttwitter, "Script Twitter" %>
23
23
  <%= f.text_field :scripttwitter, placeholder: "Script Information Twitter Address", class: "form-control" %>
24
24
  </div>
25
25
  <div class="form-group field_with_error">
26
- <%= f.label :scriptgithub %>
26
+ <%= f.label :scriptgithub, "Script Github" %>
27
27
  <%= f.text_field :scriptgithub, placeholder: "Script Information Github Address", class: "form-control" %>
28
28
  </div>
29
29
  <div class="form-group field_with_error">
30
- <%= f.label :scriptinitialrelease %>
30
+ <%= f.label :scriptinitialrelease, "Initial Release" %>
31
31
  <%= f.text_field :scriptinitialrelease, placeholder: "Script Information Initial Release", class: "form-control" %>
32
32
  </div>
33
33
  <div class="form-group field_with_error">
34
- <%= f.label :scriptlicence %>
35
- <%= f.text_field :scriptlicence, placeholder: "Script Information Licence", class: "form-control" %>
34
+ <%= f.label :scriptlicence, "Script Licence" %>
35
+ <%= f.select( :scriptlicence, [['MIT','MIT'],['Apache 2.0','Apache v2']], {}, {class: "form-control form-control-sm"}) %>
36
+ </div>
37
+ <div class="form-group field_with_error">
38
+ <%= f.label :scriptplatform, "Script Platform" %>
39
+ <%= f.select( :scriptplatform, [['Web Engine','Web Engine']], {}, {class: "form-control form-control-sm"}) %>
36
40
  </div>
37
41
  <div class="form-group field_with_error">
38
- <%= f.label :scriptplatform %>
39
- <%= f.text_field :scriptplatform, placeholder: "Script Information Platform", class: "form-control" %>
42
+ <%= f.label :scriptstatus, "Script Status" %>
43
+ <%= f.select( :scriptstatus, [['Active','Active'],['Outdated','Out Dated'],['Deactivated','Not Active']], {}, {class: "form-control form-control-sm"}) %>
40
44
  </div>
41
45
  <div class="form-group field_with_error">
42
46
  <%= f.submit class: "btn blue-hoki" %>
@@ -11,6 +11,7 @@ class CreatePhcscriptcdnproScriptcdnInformation < ActiveRecord::Migration
11
11
  t.string :scriptinitialrelease
12
12
  t.string :scriptlicence
13
13
  t.string :scriptplatform
14
+ t.string :scriptstatus
14
15
 
15
16
  t.references :version, index: true
16
17
  t.references :main, index: true
@@ -1,3 +1,3 @@
1
1
  module Phcscriptcdnpro
2
- VERSION = "1.8.9"
2
+ VERSION = "1.8.10"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcscriptcdnpro
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.9
4
+ version: 1.8.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts