type_station 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (24) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/type_station/editables/admin_bar.js.coffee +6 -4
  3. data/app/assets/javascripts/type_station/editables/entity_editor.js.coffee +37 -16
  4. data/app/assets/stylesheets/type_station/admin_bar.css.scss +5 -1
  5. data/lib/type_station/blocks/base.rb +5 -1
  6. data/lib/type_station/version.rb +1 -1
  7. data/spec/dummy/log/development.log +269 -0
  8. data/spec/dummy/tmp/cache/assets/development/sass/631a1227c978d11ae414a23c82459b12296c5574/admin_bar.css.scssc +0 -0
  9. data/spec/dummy/tmp/cache/assets/development/sprockets/1e7d8fa3d4680fd1b85b0881f495525f +0 -0
  10. data/spec/dummy/tmp/cache/assets/development/sprockets/2e14a727c7ff43dcd32c2d15c7d4e49c +0 -0
  11. data/spec/dummy/tmp/cache/assets/development/sprockets/412cf59ab3b41a364279e5d53ad68152 +0 -0
  12. data/spec/dummy/tmp/cache/assets/development/sprockets/48d06b052d87bd96e9e9b8a50a69b18a +0 -0
  13. data/spec/dummy/tmp/cache/assets/development/sprockets/4c48023968030daffd8c05e4e1ea78bf +0 -0
  14. data/spec/dummy/tmp/cache/assets/development/sprockets/6527d2ff5eb008ef2a32f7796a6490d6 +0 -0
  15. data/spec/dummy/tmp/cache/assets/development/sprockets/722eee3ce416c20905dda68eab3d517e +0 -0
  16. data/spec/dummy/tmp/cache/assets/development/sprockets/83c193129690d0c85c5370d822c4da82 +0 -0
  17. data/spec/dummy/tmp/cache/assets/development/sprockets/8db596b50a3235e0956dfbc06ac6c990 +0 -0
  18. data/spec/dummy/tmp/cache/assets/development/sprockets/9eafacb2fca5506e20523d97e92f5251 +0 -0
  19. data/spec/dummy/tmp/cache/assets/development/sprockets/afa9de4377b9615980b737000fc68a2a +0 -0
  20. data/spec/dummy/tmp/cache/assets/development/sprockets/ccc931022e80caf6ac008099f2589e7d +0 -0
  21. data/spec/dummy/tmp/cache/assets/development/sprockets/d5de77884a5b0a88b13f76a0d8d2075e +0 -0
  22. data/spec/dummy/tmp/cache/assets/development/sprockets/e1bc9024b810c879e24aa1de0f013358 +0 -0
  23. data/spec/dummy/tmp/cache/assets/development/sprockets/f8a56681cc92b0dba2c2fdb753933a8b +0 -0
  24. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83a1aea997696a5c444c4669d221ed0c5e54e266
4
- data.tar.gz: ed7299702f600406319a6d368e0e464fe39d4d2e
3
+ metadata.gz: bf0afe038640ac241736a9c278c42dad9c6d76c8
4
+ data.tar.gz: 42283e95c75b4043dc8cd245ce25ebcf8057c45f
5
5
  SHA512:
6
- metadata.gz: eccdbb35e360044462d62551cd51f4bf3fb619c8f099f234e6e411598ed9be8c348172ca7bc9ec45b66e1e1857d073ff971d3b901f8caa77e9e88d684ce79de2
7
- data.tar.gz: bb321176b0d96bcfb4b25c3cb34aa0382f78bcd4aee7f4165f42dbe462954d00248db58bdd522446b3591db0074791d30bbdd79ccd12d4e20266f477a05dc21a
6
+ metadata.gz: bb2360836d86d48d9710046978f21e828d7ddeb20c9d1de914e42670723c096ea64b61aaea58e20d1f26444514879360d4f42cd9ac8f97d2038ff51df2065d12
7
+ data.tar.gz: cce63f9a3faa334d98175e097f721ae3ee9a550c687230b2f06be8e494c580f013a753885467b51aa8506e4ed428d8c1a9a5820be3c219b011c15cdf09ba3ba8
@@ -28,12 +28,14 @@ class @TypeStation.AdminBarEditor
28
28
 
29
29
 
30
30
  $titleEditor = $('#ts-admin-bar-title')
31
- editor = new TypeStation.TextHtmlEditor(@ts, $titleEditor, $titleEditor.data('ts'))
32
- @ts.editors.set $titleEditor.attr('id'), editor
31
+ if $titleEditor.length > 0
32
+ editor = new TypeStation.TextHtmlEditor(@ts, $titleEditor, $titleEditor.data('ts'))
33
+ @ts.editors.set $titleEditor.attr('id'), editor
33
34
 
34
35
  $editEditor = $('#ts-admin-bar-settings')
35
- editor = new TypeStation.EntityEditor(@ts, $editEditor, $editEditor.data('ts'))
36
- @ts.editors.set $editEditor.attr('id'), editor
36
+ if $editEditor.length > 0
37
+ editor = new TypeStation.EntityEditor(@ts, $editEditor, $editEditor.data('ts'))
38
+ @ts.editors.set $editEditor.attr('id'), editor
37
39
 
38
40
  enable: ->
39
41
  $('#ts-admin-bar').removeClass('ts-hidden')
@@ -1,3 +1,5 @@
1
+ isArray = Array.isArray || ( arr ) -> return {}.toString.call( arr ) is '[object Array]'
2
+
1
3
  moveEntityCall = (url, direction) ->
2
4
  $.ajax
3
5
  type: "PATCH"
@@ -52,7 +54,9 @@ buildFields = (editor) ->
52
54
  select += "</select>"
53
55
  select
54
56
  when "multiple_select"
55
- select = "<select name='#{field.name}' id='#{field.name}' class='multiple_select' multiple #{if field.required then 'required' else ''}>"
57
+ # Add a hidden field so we can submit the field when it's empty
58
+ select = "<input type='hidden' value='' name='#{field.name}' />"
59
+ select += "<select name='#{field.name}' id='#{field.name}' class='multiple_select' multiple #{if field.required then 'required' else ''}>"
56
60
  for o in field.options
57
61
  select += "<option value='#{o[1]}' #{if modelValues[field.name] && modelValues[field.name].indexOf(o[1]) > -1 then 'selected' else ''}>#{o[0]}</option>"
58
62
  select += "</select>"
@@ -97,13 +101,15 @@ handleCreateEditEntity = (editor) ->
97
101
  when 'html'
98
102
  valid = true
99
103
  else
100
- check_value = v.replace(/[\'\"\=\|\@\{\}\.\,\:\;\/\&\?\!\(\)]/g, '')
101
- if check_value.length > 0
102
- if check_value.length > 1 # seems to be an issue when the text length is around 1 ? :confused:
103
- try
104
- valid = !$(check_value).is('*')
105
- catch
106
- valid = false
104
+ # Check if its an array of values (for multiple_select)
105
+ if isArray v
106
+ for val in v
107
+ check_value = val.replace(/[\'\"\=\|\@\{\}\.\,\:\;\/\&\?\!\(\)]/g, '')
108
+ valid = valid && checkValue check_value, field
109
+ else
110
+ check_value = v.replace(/[\'\"\=\|\@\{\}\.\,\:\;\/\&\?\!\(\)]/g, '')
111
+ valid = checkValue check_value, field
112
+
107
113
  else
108
114
  break
109
115
 
@@ -135,13 +141,14 @@ handleCreateEditEntity = (editor) ->
135
141
  when 'html'
136
142
  valid = true
137
143
  else
138
- check_value = v.replace(/[\'\"\=\|\@\{\}\.\,\:\;\/\&\?\!\(\)]/g, '')
139
- if check_value.length > 0
140
- if check_value.length > 1 # seems to be an issue when the text length is around 1 ? :confused:
141
- try
142
- valid = !$(check_value).is('*')
143
- catch
144
- valid = false
144
+ # Check if its an array of values (for multiple_select)
145
+ if isArray v
146
+ for val in v
147
+ check_value = val.replace(/[\'\"\=\|\@\{\}\.\,\:\;\/\&\?\!\(\)]/g, '')
148
+ valid = valid && checkValue check_value
149
+ else
150
+ check_value = v.replace(/[\'\"\=\|\@\{\}\.\,\:\;\/\&\?\!\(\)]/g, '')
151
+ valid = checkValue check_value
145
152
  else
146
153
  break
147
154
  contents.push({ field: k, value: v, type: field.type })
@@ -167,7 +174,21 @@ handleCreateEditEntity = (editor) ->
167
174
  callback: ->
168
175
  self.$el.click()
169
176
 
170
-
177
+ checkValue = (value, field) ->
178
+ # If the field is a multiple select, we want to allow for an empty string so the field can be "cleared"
179
+ if field.type == 'multiple_select'
180
+ testValue value
181
+ else
182
+ if value.length > 0
183
+ if value.length > 1 # seems to be an issue when the text length is around 1 ? :confused:
184
+ testValue value
185
+
186
+ testValue = (value) ->
187
+ try
188
+ # Check if there is html (valid jquery selector) in the value? I think.
189
+ !$(value).is('*')
190
+ catch
191
+ false
171
192
 
172
193
  class @TypeStation.EntityEditor
173
194
  constructor: (@ts, @$el, @data) ->
@@ -55,6 +55,8 @@ $admin-bar-icon-size: 26.5pt;
55
55
  text-transform: uppercase;
56
56
  cursor: pointer;
57
57
  font-size: $admin-bar-icon-size;
58
+ width: 8%;
59
+ min-width: 80px;
58
60
  .smaller { font-size: 0.5em; margin-left: -10px; }
59
61
  }
60
62
 
@@ -73,6 +75,7 @@ $admin-bar-icon-size: 26.5pt;
73
75
 
74
76
  &.ts-actions {
75
77
  width: 15%;
78
+ min-width: 204px;
76
79
 
77
80
  .ts-button-group {
78
81
  width: 100%;
@@ -80,6 +83,7 @@ $admin-bar-icon-size: 26.5pt;
80
83
 
81
84
  button {
82
85
  width: 30%;
86
+ min-width: 68px;
83
87
  cursor: pointer;
84
88
  line-height: 1.5em;
85
89
  i {
@@ -88,7 +92,7 @@ $admin-bar-icon-size: 26.5pt;
88
92
  }
89
93
 
90
94
  .ts-button-primary {
91
- width: 40%;
95
+ // width: 40%;
92
96
  }
93
97
  }
94
98
  }
@@ -42,7 +42,11 @@ module TypeStation
42
42
  end
43
43
 
44
44
  def showifblock
45
- options[:if] || authorise
45
+ if options.has_key? :if
46
+ options[:if]
47
+ else
48
+ authorise
49
+ end
46
50
  end
47
51
 
48
52
  def tag_id
@@ -2,7 +2,7 @@ module TypeStation
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 4
5
- TINY = 1
5
+ TINY = 2
6
6
  PRE = nil
7
7
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
8
8
  end
@@ -17927,3 +17927,272 @@ Started GET "/assets/type_station/init.js?body=1" for 172.17.0.1 at 2016-05-27 1
17927
17927
 
17928
17928
 
17929
17929
  Started GET "/assets/type_station/application.js?body=1" for 172.17.0.1 at 2016-05-27 10:50:04 +0000
17930
+
17931
+
17932
+ Started GET "/" for 172.17.0.1 at 2016-06-27 13:33:32 +0000
17933
+ Processing by Rails::WelcomeController#index as HTML
17934
+ Rendered /usr/local/bundle/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (12.7ms)
17935
+ Completed 200 OK in 57ms (Views: 56.8ms)
17936
+
17937
+
17938
+ Started GET "/" for 172.17.0.1 at 2016-06-27 13:33:33 +0000
17939
+ Processing by Rails::WelcomeController#index as HTML
17940
+ Rendered /usr/local/bundle/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
17941
+ Completed 200 OK in 2ms (Views: 1.7ms)
17942
+
17943
+
17944
+ Started GET "/type_station" for 172.17.0.1 at 2016-06-27 13:33:36 +0000
17945
+ Processing by TypeStation::PagesController#index as HTML
17946
+ MONGODB | Adding db:27017 to the cluster.
17947
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>nil, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}, "limit"=>1, "singleBatch"=>true}
17948
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.002045578s
17949
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}}
17950
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000632475s
17951
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"Team"}, "sort"=>{"position"=>1}}
17952
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000730646s
17953
+ Rendered /workspace/app/views/type_station/toolbars/_admin_bar.html.haml (28.2ms)
17954
+ Rendered pages/index_other.html.erb within layouts/application (517.8ms)
17955
+ Completed 200 OK in 2952ms (Views: 2852.4ms)
17956
+
17957
+
17958
+ Started GET "/assets/application.css?body=1" for 172.17.0.1 at 2016-06-27 13:33:39 +0000
17959
+
17960
+
17961
+ Started GET "/assets/application.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:39 +0000
17962
+
17963
+
17964
+ Started GET "/assets/medium-editor/themes/bootstrap.css?body=1" for 172.17.0.1 at 2016-06-27 13:33:40 +0000
17965
+
17966
+
17967
+ Started GET "/assets/jquery.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:40 +0000
17968
+
17969
+
17970
+ Started GET "/assets/medium-editor/medium-editor.css?body=1" for 172.17.0.1 at 2016-06-27 13:33:40 +0000
17971
+
17972
+
17973
+ Started GET "/assets/jquery.textcomplete.css?body=1" for 172.17.0.1 at 2016-06-27 13:33:40 +0000
17974
+
17975
+
17976
+ Started GET "/assets/chosen.css?body=1" for 172.17.0.1 at 2016-06-27 13:33:40 +0000
17977
+
17978
+
17979
+ Started GET "/assets/drop-theme-arrows-bounce-dark.css?body=1" for 172.17.0.1 at 2016-06-27 13:33:40 +0000
17980
+
17981
+
17982
+ Started GET "/assets/vex.css?body=1" for 172.17.0.1 at 2016-06-27 13:33:40 +0000
17983
+
17984
+
17985
+ Started GET "/assets/vex-theme-os.css?body=1" for 172.17.0.1 at 2016-06-27 13:33:40 +0000
17986
+
17987
+
17988
+ Started GET "/assets/ionicons.css?body=1" for 172.17.0.1 at 2016-06-27 13:33:40 +0000
17989
+
17990
+
17991
+ Started GET "/assets/type_station/admin_bar.css?body=1" for 172.17.0.1 at 2016-06-27 13:33:41 +0000
17992
+
17993
+
17994
+ Started GET "/assets/type_station/base.css?body=1" for 172.17.0.1 at 2016-06-27 13:33:41 +0000
17995
+
17996
+
17997
+ Started GET "/assets/type_station/application.css?body=1" for 172.17.0.1 at 2016-06-27 13:33:41 +0000
17998
+
17999
+
18000
+ Started GET "/assets/jquery-fileupload/vendor/jquery.ui.widget.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:41 +0000
18001
+
18002
+
18003
+ Started GET "/assets/jquery-fileupload/jquery.iframe-transport.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:41 +0000
18004
+
18005
+
18006
+ Started GET "/assets/jquery-fileupload/jquery.fileupload.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:41 +0000
18007
+
18008
+
18009
+ Started GET "/assets/jquery-fileupload/basic.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:41 +0000
18010
+
18011
+
18012
+ Started GET "/assets/jquery.cloudinary.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:41 +0000
18013
+
18014
+
18015
+ Started GET "/assets/jquery.textcomplete.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:41 +0000
18016
+
18017
+
18018
+ Started GET "/assets/classList.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:42 +0000
18019
+
18020
+
18021
+ Started GET "/assets/medium-editor.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:42 +0000
18022
+
18023
+
18024
+ Started GET "/assets/chosen.jquery.min.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:42 +0000
18025
+
18026
+
18027
+ Started GET "/assets/drop.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:42 +0000
18028
+
18029
+
18030
+ Started GET "/assets/vex.combined.min.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:42 +0000
18031
+
18032
+
18033
+ Started GET "/assets/type_station/lib/ts.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:42 +0000
18034
+
18035
+
18036
+ Started GET "/assets/type_station/lib/models.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:42 +0000
18037
+
18038
+
18039
+ Started GET "/assets/type_station/lib/helpers.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:42 +0000
18040
+
18041
+
18042
+ Started GET "/assets/type_station/editables/admin_bar.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:42 +0000
18043
+
18044
+
18045
+ Started GET "/assets/type_station/editables/entity_editor.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:42 +0000
18046
+
18047
+
18048
+ Started GET "/assets/type_station/editables/file_editor.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:43 +0000
18049
+
18050
+
18051
+ Started GET "/assets/type_station/editables/link_finder.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:43 +0000
18052
+
18053
+
18054
+ Started GET "/assets/type_station/editables/text_html_editor.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:43 +0000
18055
+
18056
+
18057
+ Started GET "/assets/type_station/init.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:43 +0000
18058
+
18059
+
18060
+ Started GET "/assets/type_station/application.js?body=1" for 172.17.0.1 at 2016-06-27 13:33:43 +0000
18061
+
18062
+
18063
+ Started GET "/assets/ionicons.ttf?v=2.0.0" for 172.17.0.1 at 2016-06-27 13:33:43 +0000
18064
+
18065
+
18066
+ Started PATCH "/type_station/_admin/entities/573f10870e34570009e3cc2d" for 172.17.0.1 at 2016-06-27 13:34:02 +0000
18067
+ Processing by TypeStation::Admin::EntitiesController#update as JSON
18068
+ Parameters: {"contents"=>[{"field"=>"body", "value"=>"\n <h4>Test</h4>\n <p>Lorem ipsum dolor sit amet, consectetur <b>adipisicing</b> elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>\n", "type"=>"html"}], "id"=>"573f10870e34570009e3cc2d", "entity"=>{}}
18069
+ Can't verify CSRF token authenticity
18070
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"_id"=>BSON::ObjectId('573f10870e34570009e3cc2d')}, "sort"=>{"position"=>1}}
18071
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.00509775s
18072
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>nil, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}, "limit"=>1, "singleBatch"=>true}
18073
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.001140654s
18074
+ MONGODB | db:27017 | type_station_development.update | STARTED | {"update"=>"type_station_entities", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('573f10870e34570009e3cc2d')}, "u"=>{"$set"=>{"old_paths"=>["/", "/", "/", "/", "/", "/"]}, "$pushAll"=>{"contents"=>[{"_id"=>BSON::ObjectId('57712b4a0c00300007e684b8'), "type...
18075
+ MONGODB | db:27017 | type_station_development.update | SUCCEEDED | 0.0008806609999999999s
18076
+ MONGODB | db:27017 | type_station_development.count | STARTED | {"count"=>"type_station_entities", "query"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d')}}
18077
+ MONGODB | db:27017 | type_station_development.count | SUCCEEDED | 0.0005737229999999999s
18078
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d')}, "sort"=>{"position"=>1}}
18079
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.00074188s
18080
+ Completed 200 OK in 74ms (Views: 0.5ms)
18081
+
18082
+
18083
+ Started GET "/type_station" for 172.17.0.1 at 2016-06-27 13:34:03 +0000
18084
+ Processing by TypeStation::PagesController#index as HTML
18085
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>nil, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}, "limit"=>1, "singleBatch"=>true}
18086
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000637435s
18087
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}}
18088
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0006393449999999999s
18089
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"Team"}, "sort"=>{"position"=>1}}
18090
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0006487579999999999s
18091
+ Rendered /workspace/app/views/type_station/toolbars/_admin_bar.html.haml (10.9ms)
18092
+ Rendered pages/index_other.html.erb within layouts/application (148.9ms)
18093
+ Completed 200 OK in 945ms (Views: 941.0ms)
18094
+
18095
+
18096
+ Started GET "/assets/application.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:04 +0000
18097
+
18098
+
18099
+ Started GET "/assets/jquery.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:05 +0000
18100
+
18101
+
18102
+ Started GET "/assets/jquery.textcomplete.css?body=1" for 172.17.0.1 at 2016-06-27 13:34:05 +0000
18103
+
18104
+
18105
+ Started GET "/assets/application.css?body=1" for 172.17.0.1 at 2016-06-27 13:34:05 +0000
18106
+
18107
+
18108
+ Started GET "/assets/medium-editor/themes/bootstrap.css?body=1" for 172.17.0.1 at 2016-06-27 13:34:05 +0000
18109
+
18110
+
18111
+ Started GET "/assets/medium-editor/medium-editor.css?body=1" for 172.17.0.1 at 2016-06-27 13:34:05 +0000
18112
+
18113
+
18114
+ Started GET "/assets/chosen.css?body=1" for 172.17.0.1 at 2016-06-27 13:34:05 +0000
18115
+
18116
+
18117
+ Started GET "/assets/drop-theme-arrows-bounce-dark.css?body=1" for 172.17.0.1 at 2016-06-27 13:34:05 +0000
18118
+
18119
+
18120
+ Started GET "/assets/vex.css?body=1" for 172.17.0.1 at 2016-06-27 13:34:05 +0000
18121
+
18122
+
18123
+ Started GET "/assets/vex-theme-os.css?body=1" for 172.17.0.1 at 2016-06-27 13:34:05 +0000
18124
+
18125
+
18126
+ Started GET "/assets/ionicons.css?body=1" for 172.17.0.1 at 2016-06-27 13:34:05 +0000
18127
+
18128
+
18129
+ Started GET "/assets/type_station/admin_bar.css?body=1" for 172.17.0.1 at 2016-06-27 13:34:06 +0000
18130
+
18131
+
18132
+ Started GET "/assets/type_station/base.css?body=1" for 172.17.0.1 at 2016-06-27 13:34:06 +0000
18133
+
18134
+
18135
+ Started GET "/assets/type_station/application.css?body=1" for 172.17.0.1 at 2016-06-27 13:34:06 +0000
18136
+
18137
+
18138
+ Started GET "/assets/jquery-fileupload/vendor/jquery.ui.widget.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:06 +0000
18139
+
18140
+
18141
+ Started GET "/assets/jquery-fileupload/jquery.iframe-transport.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:06 +0000
18142
+
18143
+
18144
+ Started GET "/assets/jquery-fileupload/jquery.fileupload.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:06 +0000
18145
+
18146
+
18147
+ Started GET "/assets/jquery-fileupload/basic.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:06 +0000
18148
+
18149
+
18150
+ Started GET "/assets/jquery.cloudinary.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:06 +0000
18151
+
18152
+
18153
+ Started GET "/assets/jquery.textcomplete.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:06 +0000
18154
+
18155
+
18156
+ Started GET "/assets/classList.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:06 +0000
18157
+
18158
+
18159
+ Started GET "/assets/chosen.jquery.min.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:07 +0000
18160
+
18161
+
18162
+ Started GET "/assets/drop.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:07 +0000
18163
+
18164
+
18165
+ Started GET "/assets/vex.combined.min.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:07 +0000
18166
+
18167
+
18168
+ Started GET "/assets/type_station/lib/ts.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:07 +0000
18169
+
18170
+
18171
+ Started GET "/assets/type_station/lib/models.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:07 +0000
18172
+
18173
+
18174
+ Started GET "/assets/type_station/lib/helpers.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:07 +0000
18175
+
18176
+
18177
+ Started GET "/assets/type_station/editables/admin_bar.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:07 +0000
18178
+
18179
+
18180
+ Started GET "/assets/type_station/editables/entity_editor.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:07 +0000
18181
+
18182
+
18183
+ Started GET "/assets/type_station/editables/file_editor.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:07 +0000
18184
+
18185
+
18186
+ Started GET "/assets/type_station/editables/link_finder.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:07 +0000
18187
+
18188
+
18189
+ Started GET "/assets/type_station/editables/text_html_editor.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:07 +0000
18190
+
18191
+
18192
+ Started GET "/assets/type_station/init.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:08 +0000
18193
+
18194
+
18195
+ Started GET "/assets/type_station/application.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:08 +0000
18196
+
18197
+
18198
+ Started GET "/assets/medium-editor.js?body=1" for 172.17.0.1 at 2016-06-27 13:34:08 +0000
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: type_station
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Adams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-27 00:00:00.000000000 Z
11
+ date: 2016-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails