icofont 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/config/routes.rb +4 -0
- data/lib/icofont/font_processor.rb +18 -9
- data/lib/icofont/paths.rb +1 -1
- data/lib/icofont/templates/icofont.css.erb +10 -10
- data/lib/icofont/version.rb +1 -1
- data/test/dummy/app/assets/icofont/icofont.eot +0 -0
- data/test/dummy/app/assets/icofont/icofont.svg +7 -7
- data/test/dummy/app/assets/icofont/icofont.ttf +0 -0
- data/test/dummy/app/assets/icofont/icofont.woff +0 -0
- data/test/dummy/app/assets/stylesheets/icofont.css.erb +1 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +16 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +1345 -0
- data/test/dummy/log/test.log +194 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0d0aff83a39e4b56699824292d221f34 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/24d083ea390a819365fbe17c7ec05d59 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/424b7c8f201f15b2d005a3aa03b1c6aa +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4c0a62e87ce0f4d493ecda1ec95edc86 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/532a1301560c90201d5c45a9280cd6aa +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/634f947263a9dad3630bcb82f993f501 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6fe8009ed3794d8121d8e7aecb4886b2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8ac51387eeb227d3eae66457f70bb432 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a4eee2c16d7225baa3590994501801a1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/af74ee9b36abd748f265a90b6157a050 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c2680b7fe0e23bf6cdb5a11f109aa3ef +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/fixtures/fonts/fontcustom-manifest.yml +43 -9
- data/test/fixtures/fonts/icofont.eot +0 -0
- data/test/fixtures/fonts/icofont.svg +4 -4
- data/test/fixtures/fonts/icofont.ttf +0 -0
- data/test/fixtures/fonts/icofont.woff +0 -0
- data/test/fixtures/stylesheets/icofont.css.erb +30 -0
- metadata +12 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bba1e5113bbe7894845db87cd49b360c4635c6ae
|
4
|
+
data.tar.gz: 3e617bd20ca37ab67c8aa7c875243332536282a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa50dab965a110bbf45f71f52c6cff889e7d58f2549970023949d311932f088faf71abe054e1dc0d781347765299bcd47adcbbc3c70081c886fa0f5ae55b0db1
|
7
|
+
data.tar.gz: 244560836be43eb664f06467b4157bf22d426effa86c0f784bcfbe6485bd1a427e762d16bb3f95b152456f2f461120059acc114ba3667219c9cc84895d8f65bb
|
data/config/routes.rb
CHANGED
@@ -24,25 +24,35 @@ module Icofont
|
|
24
24
|
private
|
25
25
|
|
26
26
|
def generate_vectors(vectors_path)
|
27
|
-
|
27
|
+
input = {
|
28
|
+
vectors: vectors_path,
|
29
|
+
templates: Paths.templates_path
|
30
|
+
}
|
31
|
+
|
32
|
+
raw_options = {
|
28
33
|
# debug: true,
|
29
|
-
input:
|
34
|
+
input: input,
|
30
35
|
output: Paths.output_fonts_path,
|
31
|
-
templates: [
|
36
|
+
templates: ["#{FONT_NAME}.css.erb"],
|
32
37
|
font_name: FONT_NAME,
|
33
|
-
|
38
|
+
css_selector: ".#{FONT_NAME}-{{glyph}}",
|
34
39
|
no_hash: true,
|
35
40
|
verbose: true,
|
36
41
|
manifest: Paths.manifest_path
|
37
42
|
}
|
38
43
|
|
39
|
-
|
40
|
-
Fontcustom::Generator::Font.start [opts]
|
41
|
-
Fontcustom::Generator::Template.start [opts]
|
42
|
-
|
44
|
+
run_generators raw_options
|
43
45
|
move_css_to_output
|
44
46
|
end
|
45
47
|
|
48
|
+
def run_generators(raw_options)
|
49
|
+
options = Fontcustom::Options.new(raw_options).options
|
50
|
+
manifest = Fontcustom::Manifest.new(Paths.manifest_path, options)
|
51
|
+
|
52
|
+
Fontcustom::Generator::Font.new(manifest.manifest).generate
|
53
|
+
Fontcustom::Generator::Template.new(manifest.manifest).generate
|
54
|
+
end
|
55
|
+
|
46
56
|
def move_css_to_output
|
47
57
|
mv File.join(Paths.output_fonts_path, "#{FONT_NAME}.css.erb"), Paths.output_css_file_path
|
48
58
|
end
|
@@ -57,7 +67,6 @@ module Icofont
|
|
57
67
|
|
58
68
|
def clean_dir(folder_path)
|
59
69
|
rm_r(folder_path) if Dir.exists?(folder_path)
|
60
|
-
# Dir.mkdir folder_path
|
61
70
|
mkdir_p folder_path
|
62
71
|
end
|
63
72
|
end
|
data/lib/icofont/paths.rb
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
@font-face {
|
2
|
-
font-family: "<%=
|
3
|
-
src: url(<%%= asset_path "<%=
|
4
|
-
src: url(<%%= asset_path "<%=
|
5
|
-
url(<%%= asset_path "<%=
|
6
|
-
url(<%%= asset_path "<%=
|
7
|
-
url(<%%= asset_path "<%=
|
2
|
+
font-family: "<%= font_name %>";
|
3
|
+
src: url(<%%= asset_path "<%= font_name %>.eot" %>);
|
4
|
+
src: url(<%%= asset_path "<%= font_name %>.eot?#iefix" %>) format("embedded-opentype"),
|
5
|
+
url(<%%= asset_path "<%= font_name %>.woff" %>) format("woff"),
|
6
|
+
url(<%%= asset_path "<%= font_name %>.ttf" %>) format("truetype"),
|
7
|
+
url(<%%= asset_path "<%= font_name %>.svg#<%= font_name %>" %>) format("svg");
|
8
8
|
font-weight: normal;
|
9
9
|
font-style: normal;
|
10
10
|
}
|
@@ -12,9 +12,9 @@
|
|
12
12
|
[data-icon]:before { content: attr(data-icon); }
|
13
13
|
|
14
14
|
[data-icon]:before,
|
15
|
-
<%=
|
15
|
+
<%= glyph_selectors %> {
|
16
16
|
display: inline-block;
|
17
|
-
font-family: "<%=
|
17
|
+
font-family: "<%= font_name %>";
|
18
18
|
font-style: normal;
|
19
19
|
font-weight: normal;
|
20
20
|
font-variant: normal;
|
@@ -24,5 +24,5 @@
|
|
24
24
|
-moz-osx-font-smoothing: grayscale;
|
25
25
|
-webkit-font-smoothing: antialiased;
|
26
26
|
}
|
27
|
-
|
28
|
-
|
27
|
+
|
28
|
+
<%= glyphs %>
|
data/lib/icofont/version.rb
CHANGED
Binary file
|
@@ -1,11 +1,11 @@
|
|
1
1
|
<?xml version="1.0" standalone="no"?>
|
2
2
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3
3
|
<!--
|
4
|
-
2014-1-
|
4
|
+
2014-1-3: Created.
|
5
5
|
-->
|
6
6
|
<svg xmlns="http://www.w3.org/2000/svg">
|
7
7
|
<metadata>
|
8
|
-
Created by FontForge 20120731 at
|
8
|
+
Created by FontForge 20120731 at Fri Jan 3 22:07:36 2014
|
9
9
|
By Artan Sinani
|
10
10
|
Created by Artan Sinani with FontForge 2.0 (http://fontforge.sf.net)
|
11
11
|
</metadata>
|
@@ -25,13 +25,13 @@ Created by Artan Sinani with FontForge 2.0 (http://fontforge.sf.net)
|
|
25
25
|
unicode-range="U+F100-F102"
|
26
26
|
/>
|
27
27
|
<missing-glyph />
|
28
|
-
<glyph glyph-name="uniF100" unicode=""
|
29
|
-
d="M480 352l-160 -64v-128l64 -224h-32l-96 224l-96 -224h-32l64 224v128l-160 64v32l224 -64l224 64v-32zM208 400c0 26.4961 21.5039 48 48 48s48 -21.5039 48 -48s-21.5039 -48 -48 -48s-48 21.5039 -48 48z" />
|
30
|
-
<glyph glyph-name="uniF101" unicode=""
|
31
|
-
d="M480 320h-32v-32h64v-64c0 -17.6729 -14.3271 -32 -32 -32h-32v-32h64v-64c0 -17.6729 -14.3271 -32 -32 -32h-32v-128h-416c-17.6016 0 -32 14.4004 -32 32v448c0 17.6006 14.4004 32 32 32h416v-32h64v-64c0 -17.6729 -14.3271 -32 -32 -32zM288 319.835
|
32
|
-
c-35.2549 0 -63.835 -28.5801 -63.835 -63.835s28.5801 -63.835 63.835 -63.835s63.835 28.5801 63.835 63.835s-28.5801 63.835 -63.835 63.835zM128 -32v448h-32v-448h32zM384 64v32c0 35.3467 -28.6523 64 -64 64h-64v0c-35.3457 0 -64 -28.6533 -64 -64v-32h192z" />
|
33
28
|
<glyph glyph-name="uniF102" unicode=""
|
34
29
|
d="M448 320c35.2002 0 64 -28.7998 64 -64v-256c0 -35.2002 -28.7998 -64 -64 -64h-384c-35.2002 0 -64 28.7998 -64 64v256c0 35.2002 28.7998 64 64 64h96v64c0 17.5996 14.4004 32 32 32h128c17.5996 0 32 -14.4004 32 -32v-64h96zM192 384v-64h128v64h-128zM384 96v64
|
35
30
|
h-96v96h-64v-96h-96v-64h96v-96h64v96h96z" />
|
31
|
+
<glyph glyph-name="uniF101" unicode=""
|
32
|
+
d="M480 320h-32v-32h64v-64c0 -17.6729 -14.3271 -32 -32 -32h-32v-32h64v-64c0 -17.6729 -14.3271 -32 -32 -32h-32v-128h-416c-17.6016 0 -32 14.4004 -32 32v448c0 17.6006 14.4004 32 32 32h416v-32h64v-64c0 -17.6729 -14.3271 -32 -32 -32zM288 319.835
|
33
|
+
c-35.2549 0 -63.835 -28.5801 -63.835 -63.835s28.5801 -63.835 63.835 -63.835s63.835 28.5801 63.835 63.835s-28.5801 63.835 -63.835 63.835zM128 -32v448h-32v-448h32zM384 64v32c0 35.3467 -28.6523 64 -64 64h-64v0c-35.3457 0 -64 -28.6533 -64 -64v-32h192z" />
|
34
|
+
<glyph glyph-name="uniF100" unicode=""
|
35
|
+
d="M480 352l-160 -64v-128l64 -224h-32l-96 224l-96 -224h-32l64 224v128l-160 64v32l224 -64l224 64v-32zM208 400c0 26.4961 21.5039 48 48 48s48 -21.5039 48 -48s-21.5039 -48 -48 -48s-48 21.5039 -48 48z" />
|
36
36
|
</font>
|
37
37
|
</defs></svg>
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 0) do
|
15
|
+
|
16
|
+
end
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -128,3 +128,1348 @@ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
|
128
128
|
|
129
129
|
|
130
130
|
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-02 22:10:53 +0000
|
131
|
+
|
132
|
+
|
133
|
+
Started GET "/" for 127.0.0.1 at 2014-01-03 19:41:09 +0000
|
134
|
+
Processing by HomeController#index as HTML
|
135
|
+
Rendered home/index.html.erb within layouts/application (1.1ms)
|
136
|
+
Completed 200 OK in 41ms (Views: 30.3ms | ActiveRecord: 0.0ms)
|
137
|
+
|
138
|
+
|
139
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-03 19:41:09 +0000
|
140
|
+
|
141
|
+
|
142
|
+
Started GET "/assets/icofont.css?body=1" for 127.0.0.1 at 2014-01-03 19:41:09 +0000
|
143
|
+
|
144
|
+
|
145
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-03 19:41:09 +0000
|
146
|
+
|
147
|
+
|
148
|
+
Started GET "/assets/icofont.woff" for 127.0.0.1 at 2014-01-03 19:41:09 +0000
|
149
|
+
|
150
|
+
|
151
|
+
Started GET "/" for 127.0.0.1 at 2014-01-03 19:41:11 +0000
|
152
|
+
Processing by HomeController#index as HTML
|
153
|
+
Rendered home/index.html.erb within layouts/application (0.1ms)
|
154
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
155
|
+
|
156
|
+
|
157
|
+
Started GET "/assets/icofont.css?body=1" for 127.0.0.1 at 2014-01-03 19:41:11 +0000
|
158
|
+
|
159
|
+
|
160
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-03 19:41:11 +0000
|
161
|
+
|
162
|
+
|
163
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-03 19:41:11 +0000
|
164
|
+
|
165
|
+
|
166
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 19:41:43 +0000
|
167
|
+
Processing by Icofont::HomeController#index as HTML
|
168
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (2.9ms)
|
169
|
+
Completed 200 OK in 39ms (Views: 38.2ms | ActiveRecord: 0.0ms)
|
170
|
+
|
171
|
+
|
172
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 19:41:43 +0000
|
173
|
+
|
174
|
+
|
175
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 19:41:43 +0000
|
176
|
+
|
177
|
+
|
178
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 19:41:43 +0000
|
179
|
+
|
180
|
+
|
181
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 19:41:43 +0000
|
182
|
+
|
183
|
+
|
184
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 19:41:43 +0000
|
185
|
+
Processing by Icofont::GlyphsController#index as */*
|
186
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
187
|
+
|
188
|
+
|
189
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 19:41:44 +0000
|
190
|
+
|
191
|
+
|
192
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 19:41:52 +0000
|
193
|
+
Processing by Icofont::GlyphsController#update as */*
|
194
|
+
Parameters: {"glyphs"=>["accessibility", "address-book"]}
|
195
|
+
Completed 500 Internal Server Error in 26ms
|
196
|
+
|
197
|
+
TypeError (no implicit conversion of nil into String):
|
198
|
+
fontcustom (1.3.1) lib/fontcustom/options.rb:169:in `exists?'
|
199
|
+
fontcustom (1.3.1) lib/fontcustom/options.rb:169:in `block in check_template_paths'
|
200
|
+
fontcustom (1.3.1) lib/fontcustom/options.rb:166:in `each'
|
201
|
+
fontcustom (1.3.1) lib/fontcustom/options.rb:166:in `check_template_paths'
|
202
|
+
fontcustom (1.3.1) lib/fontcustom/options.rb:25:in `parse_options'
|
203
|
+
fontcustom (1.3.1) lib/fontcustom/options.rb:11:in `initialize'
|
204
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:39:in `new'
|
205
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:39:in `generate_vectors'
|
206
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:20:in `block in generate'
|
207
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:54:in `with_glyphs'
|
208
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:19:in `generate'
|
209
|
+
/Users/arti/ror/icofont/icofont/app/controllers/icofont/glyphs_controller.rb:12:in `update'
|
210
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
211
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
212
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
213
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
214
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2526302263931017620__process_action__callbacks'
|
215
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
216
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
217
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
218
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
219
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
220
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
221
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
222
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
223
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
224
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
225
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
226
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
227
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
228
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
229
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
230
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
231
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
232
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
233
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
234
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
235
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
236
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
237
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
238
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
239
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
240
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
241
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
242
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
243
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
244
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
245
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
246
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
247
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
248
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
249
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
250
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
251
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
252
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
253
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
254
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
255
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1373673247659587829__call__callbacks'
|
256
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
257
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
258
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
259
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
260
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
261
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
262
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
263
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
264
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
265
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
266
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
267
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
268
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
269
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
270
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
271
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
272
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
273
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
274
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
275
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
276
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
277
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
278
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
279
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
280
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
281
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
282
|
+
|
283
|
+
|
284
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
285
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
286
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
287
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.0ms)
|
288
|
+
|
289
|
+
|
290
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 19:44:58 +0000
|
291
|
+
Processing by Icofont::HomeController#index as HTML
|
292
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (4.0ms)
|
293
|
+
Completed 200 OK in 55ms (Views: 54.9ms | ActiveRecord: 0.0ms)
|
294
|
+
|
295
|
+
|
296
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 19:44:58 +0000
|
297
|
+
|
298
|
+
|
299
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 19:44:58 +0000
|
300
|
+
|
301
|
+
|
302
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 19:44:58 +0000
|
303
|
+
|
304
|
+
|
305
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 19:44:58 +0000
|
306
|
+
|
307
|
+
|
308
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 19:44:58 +0000
|
309
|
+
Processing by Icofont::GlyphsController#index as */*
|
310
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
311
|
+
|
312
|
+
|
313
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 19:44:58 +0000
|
314
|
+
|
315
|
+
|
316
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 19:45:02 +0000
|
317
|
+
|
318
|
+
ActionController::RoutingError (No route matches [POST] "/icofont/glyphs/update"):
|
319
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
320
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
321
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
322
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
323
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
324
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
325
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
326
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
327
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
328
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
329
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
330
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
331
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
332
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
333
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
334
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
335
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
336
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
337
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
338
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
339
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
340
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
341
|
+
|
342
|
+
|
343
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
344
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
|
345
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
|
346
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms)
|
347
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (18.0ms)
|
348
|
+
|
349
|
+
|
350
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 19:46:10 +0000
|
351
|
+
Processing by Icofont::HomeController#index as HTML
|
352
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (0.2ms)
|
353
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
354
|
+
|
355
|
+
|
356
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 19:46:10 +0000
|
357
|
+
|
358
|
+
|
359
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 19:46:10 +0000
|
360
|
+
|
361
|
+
|
362
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 19:46:10 +0000
|
363
|
+
|
364
|
+
|
365
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 19:46:10 +0000
|
366
|
+
|
367
|
+
|
368
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 19:46:11 +0000
|
369
|
+
|
370
|
+
ActionController::RoutingError (No route matches [GET] "/icofont/glyphs"):
|
371
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
372
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
373
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
374
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
375
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
376
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
377
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
378
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
379
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
380
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
381
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
382
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
383
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
384
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
385
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
386
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
387
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
388
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
389
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
390
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
391
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
392
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
393
|
+
|
394
|
+
|
395
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
396
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
|
397
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
|
398
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
|
399
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (17.5ms)
|
400
|
+
|
401
|
+
|
402
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 19:46:11 +0000
|
403
|
+
|
404
|
+
|
405
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 19:46:17 +0000
|
406
|
+
|
407
|
+
ActionController::RoutingError (No route matches [POST] "/icofont/glyphs/update"):
|
408
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
409
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
410
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
411
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
412
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
413
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
414
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
415
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
416
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
417
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
418
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
419
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
420
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
421
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
422
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
423
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
424
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
425
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
426
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
427
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
428
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
429
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
430
|
+
|
431
|
+
|
432
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
433
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
|
434
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
|
435
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
436
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.7ms)
|
437
|
+
|
438
|
+
|
439
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 19:46:32 +0000
|
440
|
+
Processing by Icofont::HomeController#index as HTML
|
441
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (3.8ms)
|
442
|
+
Completed 200 OK in 55ms (Views: 54.7ms | ActiveRecord: 0.0ms)
|
443
|
+
|
444
|
+
|
445
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 19:46:32 +0000
|
446
|
+
|
447
|
+
|
448
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 19:46:32 +0000
|
449
|
+
|
450
|
+
|
451
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 19:46:32 +0000
|
452
|
+
|
453
|
+
|
454
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 19:46:32 +0000
|
455
|
+
|
456
|
+
|
457
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 19:46:32 +0000
|
458
|
+
|
459
|
+
ActionController::RoutingError (No route matches [GET] "/icofont/glyphs"):
|
460
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
461
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
462
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
463
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
464
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
465
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
466
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
467
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
468
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
469
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
470
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
471
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
472
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
473
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
474
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
475
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
476
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
477
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
478
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
479
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
480
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
481
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
482
|
+
|
483
|
+
|
484
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
485
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
|
486
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
|
487
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms)
|
488
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.0ms)
|
489
|
+
|
490
|
+
|
491
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 19:46:32 +0000
|
492
|
+
|
493
|
+
|
494
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 19:46:37 +0000
|
495
|
+
|
496
|
+
ActionController::RoutingError (No route matches [POST] "/icofont/glyphs/update"):
|
497
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
498
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
499
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
500
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
501
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
502
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
503
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
504
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
505
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
506
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
507
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
508
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
509
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
510
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
511
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
512
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
513
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
514
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
515
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
516
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
517
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
518
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
519
|
+
|
520
|
+
|
521
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
522
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
|
523
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
|
524
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
|
525
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.5ms)
|
526
|
+
|
527
|
+
|
528
|
+
Started GET "/" for 127.0.0.1 at 2014-01-03 19:53:14 +0000
|
529
|
+
Processing by HomeController#index as HTML
|
530
|
+
Rendered home/index.html.erb within layouts/application (1.1ms)
|
531
|
+
Completed 200 OK in 32ms (Views: 31.8ms | ActiveRecord: 0.0ms)
|
532
|
+
|
533
|
+
|
534
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-03 19:53:14 +0000
|
535
|
+
|
536
|
+
|
537
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-03 19:53:14 +0000
|
538
|
+
|
539
|
+
|
540
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 19:53:17 +0000
|
541
|
+
Processing by Icofont::HomeController#index as HTML
|
542
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (3.1ms)
|
543
|
+
Completed 200 OK in 36ms (Views: 36.1ms | ActiveRecord: 0.0ms)
|
544
|
+
|
545
|
+
|
546
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 19:53:18 +0000
|
547
|
+
|
548
|
+
|
549
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 19:53:18 +0000
|
550
|
+
|
551
|
+
|
552
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 19:53:18 +0000
|
553
|
+
|
554
|
+
|
555
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 19:53:18 +0000
|
556
|
+
|
557
|
+
|
558
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 19:53:18 +0000
|
559
|
+
Processing by Icofont::GlyphsController#index as */*
|
560
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
561
|
+
|
562
|
+
|
563
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 19:53:18 +0000
|
564
|
+
|
565
|
+
|
566
|
+
Started GET "/" for 127.0.0.1 at 2014-01-03 19:53:22 +0000
|
567
|
+
Processing by HomeController#index as HTML
|
568
|
+
Rendered home/index.html.erb within layouts/application (0.1ms)
|
569
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
570
|
+
|
571
|
+
|
572
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-03 19:53:22 +0000
|
573
|
+
|
574
|
+
|
575
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-03 19:53:22 +0000
|
576
|
+
|
577
|
+
|
578
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 19:53:25 +0000
|
579
|
+
Processing by Icofont::GlyphsController#update as */*
|
580
|
+
Parameters: {"glyphs"=>["accessibility", "address-book"]}
|
581
|
+
Completed 500 Internal Server Error in 1ms
|
582
|
+
|
583
|
+
TypeError (no implicit conversion of nil into String):
|
584
|
+
fontcustom (1.3.1) lib/fontcustom/options.rb:169:in `exists?'
|
585
|
+
fontcustom (1.3.1) lib/fontcustom/options.rb:169:in `block in check_template_paths'
|
586
|
+
fontcustom (1.3.1) lib/fontcustom/options.rb:166:in `each'
|
587
|
+
fontcustom (1.3.1) lib/fontcustom/options.rb:166:in `check_template_paths'
|
588
|
+
fontcustom (1.3.1) lib/fontcustom/options.rb:25:in `parse_options'
|
589
|
+
fontcustom (1.3.1) lib/fontcustom/options.rb:11:in `initialize'
|
590
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:39:in `new'
|
591
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:39:in `generate_vectors'
|
592
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:20:in `block in generate'
|
593
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:54:in `with_glyphs'
|
594
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:19:in `generate'
|
595
|
+
/Users/arti/ror/icofont/icofont/app/controllers/icofont/glyphs_controller.rb:12:in `update'
|
596
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
597
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
598
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
599
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
600
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1077491535467619561__process_action__callbacks'
|
601
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
602
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
603
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
604
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
605
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
606
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
607
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
608
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
609
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
610
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
611
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
612
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
613
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
614
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
615
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
616
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
617
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
618
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
619
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
620
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
621
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
622
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
623
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
624
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
625
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
626
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
627
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
628
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
629
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
630
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
631
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
632
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
633
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
634
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
635
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
636
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
637
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
638
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
639
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
640
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
641
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4000583103568131__call__callbacks'
|
642
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
643
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
644
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
645
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
646
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
647
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
648
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
649
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
650
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
651
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
652
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
653
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
654
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
655
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
656
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
657
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
658
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
659
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
660
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
661
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
662
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
663
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
664
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
665
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
666
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
667
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
668
|
+
|
669
|
+
|
670
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
671
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
672
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
673
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.4ms)
|
674
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
675
|
+
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
676
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
677
|
+
|
678
|
+
|
679
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 21:51:00 +0000
|
680
|
+
Processing by Icofont::HomeController#index as HTML
|
681
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (4.3ms)
|
682
|
+
Completed 200 OK in 58ms (Views: 57.2ms | ActiveRecord: 0.0ms)
|
683
|
+
|
684
|
+
|
685
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 21:51:00 +0000
|
686
|
+
|
687
|
+
|
688
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 21:51:00 +0000
|
689
|
+
|
690
|
+
|
691
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 21:51:00 +0000
|
692
|
+
|
693
|
+
|
694
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 21:51:00 +0000
|
695
|
+
|
696
|
+
|
697
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 21:51:00 +0000
|
698
|
+
Processing by Icofont::GlyphsController#index as */*
|
699
|
+
Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
700
|
+
|
701
|
+
|
702
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 21:51:00 +0000
|
703
|
+
|
704
|
+
|
705
|
+
Started GET "/" for 127.0.0.1 at 2014-01-03 21:51:05 +0000
|
706
|
+
Processing by HomeController#index as HTML
|
707
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
708
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
709
|
+
|
710
|
+
|
711
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-03 21:51:05 +0000
|
712
|
+
|
713
|
+
|
714
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-03 21:51:05 +0000
|
715
|
+
|
716
|
+
|
717
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 21:51:07 +0000
|
718
|
+
Processing by Icofont::GlyphsController#update as */*
|
719
|
+
Parameters: {"glyphs"=>["accessibility", "address-book"]}
|
720
|
+
Completed 500 Internal Server Error in 27ms
|
721
|
+
|
722
|
+
NoMethodError (undefined method `values' for ["accessibility", "address-book", "aid"]:Array):
|
723
|
+
fontcustom (1.3.1) lib/fontcustom/generator/font.rb:42:in `set_glyph_info'
|
724
|
+
fontcustom (1.3.1) lib/fontcustom/generator/font.rb:19:in `generate'
|
725
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:47:in `generate_vectors'
|
726
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:20:in `block in generate'
|
727
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:66:in `with_glyphs'
|
728
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:19:in `generate'
|
729
|
+
/Users/arti/ror/icofont/icofont/app/controllers/icofont/glyphs_controller.rb:12:in `update'
|
730
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
731
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
732
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
733
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
734
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__21810170634449059__process_action__callbacks'
|
735
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
736
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
737
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
738
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
739
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
740
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
741
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
742
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
743
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
744
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
745
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
746
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
747
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
748
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
749
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
750
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
751
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
752
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
753
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
754
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
755
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
756
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
757
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
758
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
759
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
760
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
761
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
762
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
763
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
764
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
765
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
766
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
767
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
768
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
769
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
770
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
771
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
772
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
773
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
774
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
775
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1167266321927889238__call__callbacks'
|
776
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
777
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
778
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
779
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
780
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
781
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
782
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
783
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
784
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
785
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
786
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
787
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
788
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
789
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
790
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
791
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
792
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
793
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
794
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
795
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
796
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
797
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
798
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
799
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
800
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
801
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
802
|
+
|
803
|
+
|
804
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
805
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
806
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
807
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.5ms)
|
808
|
+
|
809
|
+
|
810
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 21:55:33 +0000
|
811
|
+
Processing by Icofont::HomeController#index as HTML
|
812
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (3.9ms)
|
813
|
+
Completed 200 OK in 57ms (Views: 56.3ms | ActiveRecord: 0.0ms)
|
814
|
+
|
815
|
+
|
816
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 21:55:33 +0000
|
817
|
+
|
818
|
+
|
819
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 21:55:33 +0000
|
820
|
+
|
821
|
+
|
822
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 21:55:33 +0000
|
823
|
+
|
824
|
+
|
825
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 21:55:33 +0000
|
826
|
+
|
827
|
+
|
828
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 21:55:33 +0000
|
829
|
+
Processing by Icofont::GlyphsController#index as */*
|
830
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
831
|
+
|
832
|
+
|
833
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 21:55:33 +0000
|
834
|
+
|
835
|
+
|
836
|
+
Started GET "/" for 127.0.0.1 at 2014-01-03 21:55:36 +0000
|
837
|
+
Processing by HomeController#index as HTML
|
838
|
+
Rendered home/index.html.erb within layouts/application (0.6ms)
|
839
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
840
|
+
|
841
|
+
|
842
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-03 21:55:36 +0000
|
843
|
+
|
844
|
+
|
845
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-03 21:55:36 +0000
|
846
|
+
|
847
|
+
|
848
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 21:55:41 +0000
|
849
|
+
Processing by Icofont::GlyphsController#update as */*
|
850
|
+
Parameters: {"glyphs"=>["accessibility", "address-book"]}
|
851
|
+
Completed 500 Internal Server Error in 2ms
|
852
|
+
|
853
|
+
NoMethodError (undefined method `values' for ["accessibility", "address-book", "aid"]:Array):
|
854
|
+
fontcustom (1.3.1) lib/fontcustom/generator/font.rb:42:in `set_glyph_info'
|
855
|
+
fontcustom (1.3.1) lib/fontcustom/generator/font.rb:19:in `generate'
|
856
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:52:in `run_generators'
|
857
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:44:in `generate_vectors'
|
858
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:20:in `block in generate'
|
859
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:64:in `with_glyphs'
|
860
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:19:in `generate'
|
861
|
+
/Users/arti/ror/icofont/icofont/app/controllers/icofont/glyphs_controller.rb:12:in `update'
|
862
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
863
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
864
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
865
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
866
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4007498354169915960__process_action__callbacks'
|
867
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
868
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
869
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
870
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
871
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
872
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
873
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
874
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
875
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
876
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
877
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
878
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
879
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
880
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
881
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
882
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
883
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
884
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
885
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
886
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
887
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
888
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
889
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
890
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
891
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
892
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
893
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
894
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
895
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
896
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
897
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
898
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
899
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
900
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
901
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
902
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
903
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
904
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
905
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
906
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
907
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2695501969780790334__call__callbacks'
|
908
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
909
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
910
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
911
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
912
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
913
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
914
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
915
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
916
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
917
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
918
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
919
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
920
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
921
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
922
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
923
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
924
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
925
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
926
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
927
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
928
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
929
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
930
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
931
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
932
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
933
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
934
|
+
|
935
|
+
|
936
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
937
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
938
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
939
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.9ms)
|
940
|
+
|
941
|
+
|
942
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 21:56:19 +0000
|
943
|
+
Processing by Icofont::HomeController#index as HTML
|
944
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (0.2ms)
|
945
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
946
|
+
|
947
|
+
|
948
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 21:56:20 +0000
|
949
|
+
|
950
|
+
|
951
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 21:56:20 +0000
|
952
|
+
|
953
|
+
|
954
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 21:56:20 +0000
|
955
|
+
|
956
|
+
|
957
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 21:56:20 +0000
|
958
|
+
|
959
|
+
|
960
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 21:56:20 +0000
|
961
|
+
Processing by Icofont::GlyphsController#index as */*
|
962
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
963
|
+
|
964
|
+
|
965
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 21:56:20 +0000
|
966
|
+
|
967
|
+
|
968
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 21:56:22 +0000
|
969
|
+
Processing by Icofont::GlyphsController#update as */*
|
970
|
+
Parameters: {"glyphs"=>["accessibility", "address-book"]}
|
971
|
+
Completed 500 Internal Server Error in 0ms
|
972
|
+
|
973
|
+
TypeError (exception class/object expected):
|
974
|
+
/Users/arti/ror/icofont/icofont/app/controllers/icofont/glyphs_controller.rb:12:in `raise'
|
975
|
+
/Users/arti/ror/icofont/icofont/app/controllers/icofont/glyphs_controller.rb:12:in `update'
|
976
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
977
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
978
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
979
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
980
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4007498354169915960__process_action__callbacks'
|
981
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
982
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
983
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
984
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
985
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
986
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
987
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
988
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
989
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
990
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
991
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
992
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
993
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
994
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
995
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
996
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
997
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
998
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
999
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1000
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1001
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1002
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1003
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1004
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
1005
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1006
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1007
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1008
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1009
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1010
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1011
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1012
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1013
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1014
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1015
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1016
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1017
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
1018
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1019
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
1020
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1021
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2695501969780790334__call__callbacks'
|
1022
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1023
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1024
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
1025
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1026
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1027
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1028
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1029
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
1030
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
1031
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
1032
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
1033
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
1034
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1035
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1036
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1037
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1038
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1039
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
1040
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1041
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
1042
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1043
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1044
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1045
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
1046
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
1047
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
1048
|
+
|
1049
|
+
|
1050
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1051
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
1052
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
1053
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.1ms)
|
1054
|
+
|
1055
|
+
|
1056
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 21:56:31 +0000
|
1057
|
+
Processing by Icofont::HomeController#index as HTML
|
1058
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (0.2ms)
|
1059
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
1060
|
+
|
1061
|
+
|
1062
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 21:56:31 +0000
|
1063
|
+
|
1064
|
+
|
1065
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 21:56:31 +0000
|
1066
|
+
|
1067
|
+
|
1068
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 21:56:31 +0000
|
1069
|
+
|
1070
|
+
|
1071
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 21:56:31 +0000
|
1072
|
+
|
1073
|
+
|
1074
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 21:56:31 +0000
|
1075
|
+
Processing by Icofont::GlyphsController#index as */*
|
1076
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1077
|
+
|
1078
|
+
|
1079
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 21:56:31 +0000
|
1080
|
+
|
1081
|
+
|
1082
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 21:56:33 +0000
|
1083
|
+
Processing by Icofont::GlyphsController#update as */*
|
1084
|
+
Parameters: {"glyphs"=>["accessibility", "address-book"]}
|
1085
|
+
Completed 500 Internal Server Error in 0ms
|
1086
|
+
|
1087
|
+
RuntimeError (["accessibility", "address-book"]):
|
1088
|
+
/Users/arti/ror/icofont/icofont/app/controllers/icofont/glyphs_controller.rb:12:in `update'
|
1089
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1090
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
1091
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1092
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1093
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4007498354169915960__process_action__callbacks'
|
1094
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1095
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1096
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1097
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1098
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
1099
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1100
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
1101
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1102
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
1103
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1104
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
1105
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
1106
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
1107
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1108
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
1109
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
1110
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
1111
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
1112
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1113
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1114
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1115
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1116
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1117
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
1118
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1119
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1120
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1121
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1122
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1123
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1124
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1125
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1126
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1127
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1128
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1129
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1130
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
1131
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1132
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
1133
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1134
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2695501969780790334__call__callbacks'
|
1135
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1136
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1137
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
1138
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1139
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1140
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1141
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1142
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
1143
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
1144
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
1145
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
1146
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
1147
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1148
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1149
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1150
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1151
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1152
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
1153
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1154
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
1155
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1156
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1157
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1158
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
1159
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
1160
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
1161
|
+
|
1162
|
+
|
1163
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1164
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
1165
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
1166
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.3ms)
|
1167
|
+
|
1168
|
+
|
1169
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 21:57:08 +0000
|
1170
|
+
Processing by Icofont::HomeController#index as HTML
|
1171
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (19.4ms)
|
1172
|
+
Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms)
|
1173
|
+
|
1174
|
+
|
1175
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 21:57:08 +0000
|
1176
|
+
|
1177
|
+
|
1178
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 21:57:08 +0000
|
1179
|
+
|
1180
|
+
|
1181
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 21:57:08 +0000
|
1182
|
+
|
1183
|
+
|
1184
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 21:57:08 +0000
|
1185
|
+
|
1186
|
+
|
1187
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 21:57:08 +0000
|
1188
|
+
Processing by Icofont::GlyphsController#index as */*
|
1189
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1190
|
+
|
1191
|
+
|
1192
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 21:57:08 +0000
|
1193
|
+
|
1194
|
+
|
1195
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 21:57:10 +0000
|
1196
|
+
Processing by Icofont::GlyphsController#update as */*
|
1197
|
+
Parameters: {"glyphs"=>["accessibility", "address-book"]}
|
1198
|
+
Completed 500 Internal Server Error in 2ms
|
1199
|
+
|
1200
|
+
NoMethodError (undefined method `values' for ["accessibility", "address-book", "aid"]:Array):
|
1201
|
+
fontcustom (1.3.1) lib/fontcustom/generator/font.rb:42:in `set_glyph_info'
|
1202
|
+
fontcustom (1.3.1) lib/fontcustom/generator/font.rb:19:in `generate'
|
1203
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:52:in `run_generators'
|
1204
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:44:in `generate_vectors'
|
1205
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:20:in `block in generate'
|
1206
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:64:in `with_glyphs'
|
1207
|
+
/Users/arti/ror/icofont/icofont/lib/icofont/font_processor.rb:19:in `generate'
|
1208
|
+
/Users/arti/ror/icofont/icofont/app/controllers/icofont/glyphs_controller.rb:12:in `update'
|
1209
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1210
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
1211
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1212
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1213
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4007498354169915960__process_action__callbacks'
|
1214
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1215
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1216
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1217
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1218
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
1219
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1220
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
1221
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1222
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
1223
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1224
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
1225
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
1226
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
1227
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1228
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
1229
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
1230
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
1231
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
1232
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1233
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1234
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1235
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1236
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1237
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
1238
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1239
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1240
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1241
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1242
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1243
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1244
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1245
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1246
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1247
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1248
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1249
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1250
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
1251
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1252
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
1253
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1254
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2695501969780790334__call__callbacks'
|
1255
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1256
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1257
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
1258
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1259
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1260
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1261
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1262
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
1263
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
1264
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
1265
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
1266
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
1267
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1268
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1269
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1270
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1271
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1272
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
1273
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1274
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
1275
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1276
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1277
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1278
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
1279
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
1280
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
1281
|
+
|
1282
|
+
|
1283
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1284
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
1285
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
1286
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.2ms)
|
1287
|
+
|
1288
|
+
|
1289
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 21:59:12 +0000
|
1290
|
+
Processing by Icofont::HomeController#index as HTML
|
1291
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (0.2ms)
|
1292
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
1293
|
+
|
1294
|
+
|
1295
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 21:59:12 +0000
|
1296
|
+
|
1297
|
+
|
1298
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 21:59:12 +0000
|
1299
|
+
|
1300
|
+
|
1301
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 21:59:12 +0000
|
1302
|
+
|
1303
|
+
|
1304
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 21:59:12 +0000
|
1305
|
+
|
1306
|
+
|
1307
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 21:59:12 +0000
|
1308
|
+
Processing by Icofont::GlyphsController#index as */*
|
1309
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1310
|
+
|
1311
|
+
|
1312
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 21:59:12 +0000
|
1313
|
+
|
1314
|
+
|
1315
|
+
Started GET "/" for 127.0.0.1 at 2014-01-03 21:59:15 +0000
|
1316
|
+
Processing by HomeController#index as HTML
|
1317
|
+
Rendered home/index.html.erb within layouts/application (0.1ms)
|
1318
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
1319
|
+
|
1320
|
+
|
1321
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-03 21:59:15 +0000
|
1322
|
+
|
1323
|
+
|
1324
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-03 21:59:15 +0000
|
1325
|
+
|
1326
|
+
|
1327
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 21:59:18 +0000
|
1328
|
+
Processing by Icofont::GlyphsController#update as */*
|
1329
|
+
Parameters: {"glyphs"=>["accessibility", "address-book"]}
|
1330
|
+
Completed 200 OK in 161ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1331
|
+
|
1332
|
+
|
1333
|
+
Started GET "/" for 127.0.0.1 at 2014-01-03 21:59:22 +0000
|
1334
|
+
Processing by HomeController#index as HTML
|
1335
|
+
Rendered home/index.html.erb within layouts/application (0.1ms)
|
1336
|
+
Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
|
1337
|
+
|
1338
|
+
|
1339
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-03 21:59:22 +0000
|
1340
|
+
|
1341
|
+
|
1342
|
+
Started GET "/assets/icofont.css?body=1" for 127.0.0.1 at 2014-01-03 21:59:22 +0000
|
1343
|
+
|
1344
|
+
|
1345
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-03 21:59:22 +0000
|
1346
|
+
|
1347
|
+
|
1348
|
+
Started GET "/" for 127.0.0.1 at 2014-01-03 21:59:23 +0000
|
1349
|
+
Processing by HomeController#index as HTML
|
1350
|
+
Rendered home/index.html.erb within layouts/application (0.1ms)
|
1351
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
1352
|
+
|
1353
|
+
|
1354
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-03 21:59:23 +0000
|
1355
|
+
|
1356
|
+
|
1357
|
+
Started GET "/assets/icofont.css?body=1" for 127.0.0.1 at 2014-01-03 21:59:23 +0000
|
1358
|
+
|
1359
|
+
|
1360
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-03 21:59:23 +0000
|
1361
|
+
|
1362
|
+
|
1363
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 22:03:47 +0000
|
1364
|
+
Processing by Icofont::HomeController#index as HTML
|
1365
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (3.4ms)
|
1366
|
+
Completed 200 OK in 56ms (Views: 55.5ms | ActiveRecord: 0.0ms)
|
1367
|
+
|
1368
|
+
|
1369
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 22:03:48 +0000
|
1370
|
+
|
1371
|
+
|
1372
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 22:03:48 +0000
|
1373
|
+
|
1374
|
+
|
1375
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 22:03:48 +0000
|
1376
|
+
|
1377
|
+
|
1378
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 22:03:48 +0000
|
1379
|
+
|
1380
|
+
|
1381
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 22:03:48 +0000
|
1382
|
+
Processing by Icofont::GlyphsController#index as */*
|
1383
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1384
|
+
|
1385
|
+
|
1386
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 22:03:48 +0000
|
1387
|
+
|
1388
|
+
|
1389
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 22:03:50 +0000
|
1390
|
+
Processing by Icofont::GlyphsController#update as */*
|
1391
|
+
Parameters: {"glyphs"=>["accessibility", "address-book", "aid"]}
|
1392
|
+
Completed 200 OK in 145ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1393
|
+
|
1394
|
+
|
1395
|
+
Started GET "/" for 127.0.0.1 at 2014-01-03 22:03:52 +0000
|
1396
|
+
Processing by HomeController#index as HTML
|
1397
|
+
Rendered home/index.html.erb within layouts/application (0.7ms)
|
1398
|
+
Completed 200 OK in 46ms (Views: 45.8ms | ActiveRecord: 0.0ms)
|
1399
|
+
|
1400
|
+
|
1401
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-03 22:03:52 +0000
|
1402
|
+
|
1403
|
+
|
1404
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-03 22:03:52 +0000
|
1405
|
+
|
1406
|
+
|
1407
|
+
Started GET "/assets/icofont.css?body=1" for 127.0.0.1 at 2014-01-03 22:03:52 +0000
|
1408
|
+
|
1409
|
+
|
1410
|
+
Started GET "/" for 127.0.0.1 at 2014-01-03 22:06:32 +0000
|
1411
|
+
Processing by HomeController#index as HTML
|
1412
|
+
Rendered home/index.html.erb within layouts/application (0.1ms)
|
1413
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
1414
|
+
|
1415
|
+
|
1416
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-03 22:06:32 +0000
|
1417
|
+
|
1418
|
+
|
1419
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-03 22:06:32 +0000
|
1420
|
+
|
1421
|
+
|
1422
|
+
Started GET "/assets/icofont.css?body=1" for 127.0.0.1 at 2014-01-03 22:06:32 +0000
|
1423
|
+
|
1424
|
+
|
1425
|
+
Started GET "/assets/icofont.css?body=1" for 127.0.0.1 at 2014-01-03 22:06:54 +0000
|
1426
|
+
|
1427
|
+
|
1428
|
+
Started GET "/icofont" for 127.0.0.1 at 2014-01-03 22:07:34 +0000
|
1429
|
+
Processing by Icofont::HomeController#index as HTML
|
1430
|
+
Rendered /Users/arti/ror/icofont/icofont/app/views/icofont/home/index.html.erb within layouts/icofont/application (3.7ms)
|
1431
|
+
Completed 200 OK in 40ms (Views: 39.3ms | ActiveRecord: 0.0ms)
|
1432
|
+
|
1433
|
+
|
1434
|
+
Started GET "/assets/icofont/application.css?body=1" for 127.0.0.1 at 2014-01-03 22:07:34 +0000
|
1435
|
+
|
1436
|
+
|
1437
|
+
Started GET "/assets/icofont/application.js?body=1" for 127.0.0.1 at 2014-01-03 22:07:34 +0000
|
1438
|
+
|
1439
|
+
|
1440
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-03 22:07:34 +0000
|
1441
|
+
|
1442
|
+
|
1443
|
+
Started GET "/assets/icofont/icofont.js?body=1" for 127.0.0.1 at 2014-01-03 22:07:34 +0000
|
1444
|
+
|
1445
|
+
|
1446
|
+
Started GET "/icofont/glyphs" for 127.0.0.1 at 2014-01-03 22:07:34 +0000
|
1447
|
+
Processing by Icofont::GlyphsController#index as */*
|
1448
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1449
|
+
|
1450
|
+
|
1451
|
+
Started GET "/assets/icofont/icofont-admin.svg" for 127.0.0.1 at 2014-01-03 22:07:34 +0000
|
1452
|
+
|
1453
|
+
|
1454
|
+
Started POST "/icofont/glyphs/update" for 127.0.0.1 at 2014-01-03 22:07:36 +0000
|
1455
|
+
Processing by Icofont::GlyphsController#update as */*
|
1456
|
+
Parameters: {"glyphs"=>["accessibility", "address-book", "aid"]}
|
1457
|
+
Completed 200 OK in 145ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1458
|
+
|
1459
|
+
|
1460
|
+
Started GET "/" for 127.0.0.1 at 2014-01-03 22:07:38 +0000
|
1461
|
+
Processing by HomeController#index as HTML
|
1462
|
+
Rendered home/index.html.erb within layouts/application (0.6ms)
|
1463
|
+
Completed 200 OK in 46ms (Views: 45.2ms | ActiveRecord: 0.0ms)
|
1464
|
+
|
1465
|
+
|
1466
|
+
Started GET "/assets/icofont.css?body=1" for 127.0.0.1 at 2014-01-03 22:07:38 +0000
|
1467
|
+
|
1468
|
+
|
1469
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-03 22:07:38 +0000
|
1470
|
+
|
1471
|
+
|
1472
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-03 22:07:38 +0000
|
1473
|
+
|
1474
|
+
|
1475
|
+
Started GET "/assets/icofont.woff" for 127.0.0.1 at 2014-01-03 22:07:38 +0000
|