awesome_translations 0.0.16 → 0.0.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/awesome_translations/groups_controller.rb +8 -3
- data/app/models/awesome_translations/translated_value.rb +32 -1
- data/app/models/awesome_translations/translation.rb +45 -6
- data/app/views/awesome_translations/groups/show.html.haml +6 -3
- data/lib/awesome_translations/handlers/rails_handler.rb +208 -0
- data/lib/awesome_translations/version.rb +1 -1
- data/spec/controllers/groups_controller_spec.rb +23 -0
- data/spec/dummy/config/locales/awesome_translations/date_time/da.yml +9 -0
- data/spec/dummy/config/locales/awesome_translations/date_time/de.yml +6 -0
- data/spec/dummy/config/locales/awesome_translations/date_time/en.yml +62 -0
- data/spec/dummy/config/locales/awesome_translations/number/da.yml +16 -0
- data/spec/dummy/config/locales/awesome_translations/number/de.yml +16 -0
- data/spec/dummy/config/locales/awesome_translations/number/en.yml +16 -0
- data/spec/dummy/log/development.log +1505 -0
- data/spec/dummy/log/test.log +881 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/2p155H920Y76tD9Gj4HuvSeyKPX48gW2EeT0uJ-qDC4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/5HoGxXKxoOX3AIQe7mpvJ8HkWoGDGVITn12A-AS39bI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/6AKSuLQ7-rmru8z6X93bpAnu7f-pBhVaPqrLnlZEEr4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/6ISWS0E-NUDxPhl5eE0vGMmOPleI0-CevJF8RF2OPYU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/AdM4bSpxF-V3SVialcxcS5JaSV3t0miIFEegjuwBWlA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/GDzC1chWWGmhgF3fUvOghjlCyrUvZCCVC_YH1oldtsM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/LtuKwRcTWtNm0-9U116mcMNSEOapgDhyZaj926hhVPs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/MzYsi2S393224patsQC_5aJpDwq4F97WspZCPEXC2Q0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/WyLdqMqQlKkaN4Q-7OsT-01hYlq3cmhy19iZV5OI8rs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/YeUs3vJiPOiW0ze9DAFqEBU8WdoE6CPE1vE4Q_rumCk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/a8zRTXmGI4EOik4D8x6S1OJGcr3oKvUM9jNHim0xGio.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/diUCwnrnAqP09ITWwzJqFv3pdkHx0DNdSAfRVgCl-Ho.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/eNBcyVIS4PNh9lfbPupF-BdIC0evfo6BlGMHxcwCYtU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/hw8AiVkuV0Jb1MqnlKOmPV7OzCf0ggO2-FpwNNDX7rA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/js_-GbuvJQ4VGhFUV6QutWkBN2J467qAxjx2Yf91Eak.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/kYXemjpBFknH9kzOhifClhhOaHlRaYc04eAnYvnO3VA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/s7x5_coI4aGfED9cLsTL7o8vGLSX2oA61zI9K50O2a4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/x38Hslo9uhZ5JJmEG-emEJE12q4Kdd3OdHw6je6KEjw.cache +1 -0
- data/spec/dummy/tmp/pids/server.pid +1 -0
- data/spec/models/awesome_translations/translated_value_spec.rb +4 -4
- data/spec/models/awesome_translations/translation_spec.rb +49 -0
- metadata +43 -2
@@ -0,0 +1,62 @@
|
|
1
|
+
---
|
2
|
+
en:
|
3
|
+
date:
|
4
|
+
formats:
|
5
|
+
default: "%Y-%m-%d"
|
6
|
+
short: "%b %d"
|
7
|
+
long: "%B %d, %Y"
|
8
|
+
day_names:
|
9
|
+
- Sunday
|
10
|
+
- Monday
|
11
|
+
- Tuesday
|
12
|
+
- Wednesday
|
13
|
+
- Thursday
|
14
|
+
- Friday
|
15
|
+
- Saturday
|
16
|
+
abbr_day_names:
|
17
|
+
- Sun
|
18
|
+
- Mon
|
19
|
+
- Tue
|
20
|
+
- Wed
|
21
|
+
- Thu
|
22
|
+
- Fri
|
23
|
+
- Sat
|
24
|
+
month_names:
|
25
|
+
-
|
26
|
+
- January
|
27
|
+
- February
|
28
|
+
- March
|
29
|
+
- April
|
30
|
+
- May
|
31
|
+
- June
|
32
|
+
- July
|
33
|
+
- August
|
34
|
+
- September
|
35
|
+
- October
|
36
|
+
- November
|
37
|
+
- December
|
38
|
+
abbr_month_names:
|
39
|
+
-
|
40
|
+
- Jan
|
41
|
+
- Feb
|
42
|
+
- Mar
|
43
|
+
- Apr
|
44
|
+
- May
|
45
|
+
- Jun
|
46
|
+
- Jul
|
47
|
+
- Aug
|
48
|
+
- Sep
|
49
|
+
- Oct
|
50
|
+
- Nov
|
51
|
+
- Dec
|
52
|
+
order:
|
53
|
+
- year
|
54
|
+
- month
|
55
|
+
- day
|
56
|
+
time:
|
57
|
+
formats:
|
58
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
59
|
+
short: "%d %b %H:%M"
|
60
|
+
long: "%B %d, %Y %H:%M"
|
61
|
+
am: am
|
62
|
+
pm: pm
|
@@ -18688,3 +18688,1508 @@ Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1
|
|
18688
18688
|
|
18689
18689
|
|
18690
18690
|
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-07 13:24:38 +0200
|
18691
|
+
|
18692
|
+
|
18693
|
+
Started GET "/" for 127.0.0.1 at 2015-06-13 09:57:07 +0200
|
18694
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18695
|
+
Processing by UsersController#index as HTML
|
18696
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
18697
|
+
Rendered users/index.html.haml within layouts/application (7.2ms)
|
18698
|
+
Completed 200 OK in 210ms (Views: 201.9ms | ActiveRecord: 0.1ms)
|
18699
|
+
|
18700
|
+
|
18701
|
+
Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:57:07 +0200
|
18702
|
+
|
18703
|
+
|
18704
|
+
Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-06-13 09:57:07 +0200
|
18705
|
+
|
18706
|
+
|
18707
|
+
Started GET "/assets/jquery_ujs.self.js?body=1" for 127.0.0.1 at 2015-06-13 09:57:07 +0200
|
18708
|
+
|
18709
|
+
|
18710
|
+
Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 09:57:07 +0200
|
18711
|
+
|
18712
|
+
|
18713
|
+
Started GET "/awesome_translations" for 127.0.0.1 at 2015-06-13 09:57:09 +0200
|
18714
|
+
Processing by AwesomeTranslations::HandlersController#index as HTML
|
18715
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/index.html.haml within layouts/awesome_translations/application (2.0ms)
|
18716
|
+
Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
|
18717
|
+
|
18718
|
+
|
18719
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:57:09 +0200
|
18720
|
+
|
18721
|
+
|
18722
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:57:09 +0200
|
18723
|
+
|
18724
|
+
|
18725
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:57:09 +0200
|
18726
|
+
|
18727
|
+
|
18728
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 09:57:09 +0200
|
18729
|
+
|
18730
|
+
|
18731
|
+
Started GET "/awesome_translations/handlers" for 127.0.0.1 at 2015-06-13 09:57:11 +0200
|
18732
|
+
Processing by AwesomeTranslations::HandlersController#index as HTML
|
18733
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/index.html.haml within layouts/awesome_translations/application (2.2ms)
|
18734
|
+
Completed 200 OK in 20ms (Views: 20.2ms | ActiveRecord: 0.0ms)
|
18735
|
+
|
18736
|
+
|
18737
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:57:11 +0200
|
18738
|
+
|
18739
|
+
|
18740
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:57:11 +0200
|
18741
|
+
|
18742
|
+
|
18743
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 09:57:11 +0200
|
18744
|
+
|
18745
|
+
|
18746
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:57:11 +0200
|
18747
|
+
|
18748
|
+
|
18749
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 09:57:12 +0200
|
18750
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
18751
|
+
Parameters: {"id"=>"rails_handler"}
|
18752
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (4.9ms)
|
18753
|
+
Completed 500 Internal Server Error in 8ms
|
18754
|
+
|
18755
|
+
ActionView::Template::Error (undefined method `translations_for_Errors' for #<AwesomeTranslations::Handlers::RailsHandler:0x007fc3a0103b30>):
|
18756
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:45:in `block in translations_for_group'
|
18757
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `call'
|
18758
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `block in initialize'
|
18759
|
+
bin/rails:1:in `each'
|
18760
|
+
bin/rails:1:in `each'
|
18761
|
+
|
18762
|
+
|
18763
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (2.6ms)
|
18764
|
+
|
18765
|
+
|
18766
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 09:57:23 +0200
|
18767
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
18768
|
+
Parameters: {"id"=>"rails_handler"}
|
18769
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (1.0ms)
|
18770
|
+
Completed 500 Internal Server Error in 3ms
|
18771
|
+
|
18772
|
+
ActionView::Template::Error (undefined method `translations_for_Errors' for #<AwesomeTranslations::Handlers::RailsHandler:0x00000003242bd0>):
|
18773
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:45:in `block in translations_for_group'
|
18774
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `call'
|
18775
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `block in initialize'
|
18776
|
+
bin/rails:1:in `each'
|
18777
|
+
bin/rails:1:in `each'
|
18778
|
+
|
18779
|
+
|
18780
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (2.7ms)
|
18781
|
+
|
18782
|
+
|
18783
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 09:58:14 +0200
|
18784
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18785
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
18786
|
+
Parameters: {"id"=>"rails_handler"}
|
18787
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (5.0ms)
|
18788
|
+
Completed 500 Internal Server Error in 11ms
|
18789
|
+
|
18790
|
+
ActionView::Template::Error (undefined method `translations_for_date_time' for #<AwesomeTranslations::Handlers::RailsHandler:0x00000003f48410>):
|
18791
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:38:in `block in translations_for_group'
|
18792
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `call'
|
18793
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `block in initialize'
|
18794
|
+
bin/rails:1:in `each'
|
18795
|
+
bin/rails:1:in `each'
|
18796
|
+
|
18797
|
+
|
18798
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.0ms)
|
18799
|
+
|
18800
|
+
|
18801
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 09:58:30 +0200
|
18802
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18803
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
18804
|
+
Parameters: {"id"=>"rails_handler"}
|
18805
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (5.9ms)
|
18806
|
+
Completed 500 Internal Server Error in 11ms
|
18807
|
+
|
18808
|
+
ActionView::Template::Error (wrong number of arguments (2 for 3)):
|
18809
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:113:in `translations_for_hash_recursive'
|
18810
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:118:in `block in translations_for_hash_recursive'
|
18811
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:114:in `each'
|
18812
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:114:in `translations_for_hash_recursive'
|
18813
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:110:in `add_translations_for_hash'
|
18814
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:54:in `translations_for_number'
|
18815
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:38:in `block in translations_for_group'
|
18816
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `call'
|
18817
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `block in initialize'
|
18818
|
+
bin/rails:1:in `each'
|
18819
|
+
bin/rails:1:in `each'
|
18820
|
+
|
18821
|
+
|
18822
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.1ms)
|
18823
|
+
|
18824
|
+
|
18825
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 09:58:54 +0200
|
18826
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18827
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
18828
|
+
Parameters: {"id"=>"rails_handler"}
|
18829
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (10.0ms)
|
18830
|
+
Completed 200 OK in 149ms (Views: 147.1ms | ActiveRecord: 0.0ms)
|
18831
|
+
|
18832
|
+
|
18833
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:58:54 +0200
|
18834
|
+
|
18835
|
+
|
18836
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:58:54 +0200
|
18837
|
+
|
18838
|
+
|
18839
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:58:54 +0200
|
18840
|
+
|
18841
|
+
|
18842
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 09:58:54 +0200
|
18843
|
+
|
18844
|
+
|
18845
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/number" for 127.0.0.1 at 2015-06-13 09:58:57 +0200
|
18846
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
18847
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"number"}
|
18848
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (13.9ms)
|
18849
|
+
Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms)
|
18850
|
+
|
18851
|
+
|
18852
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:58:57 +0200
|
18853
|
+
|
18854
|
+
|
18855
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:58:57 +0200
|
18856
|
+
|
18857
|
+
|
18858
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:58:57 +0200
|
18859
|
+
|
18860
|
+
|
18861
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 09:58:57 +0200
|
18862
|
+
|
18863
|
+
|
18864
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:59:11 +0200
|
18865
|
+
|
18866
|
+
|
18867
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:59:11 +0200
|
18868
|
+
|
18869
|
+
|
18870
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:59:11 +0200
|
18871
|
+
|
18872
|
+
|
18873
|
+
Started PUT "/awesome_translations/handlers/rails_handler/groups/number" for 127.0.0.1 at 2015-06-13 09:59:24 +0200
|
18874
|
+
Processing by AwesomeTranslations::GroupsController#update as HTML
|
18875
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"ywH/slZeBzhCWMWCo8Y99f2GzuS3MbdlfSfdXE6wnHo=", "t"=>{"translations.number.currency.format.delimiter"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.currency.format.format"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.currency.format.separator"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.currency.format.unit"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.format.delimiter"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.format.separator"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.decimal_units.format"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.decimal_units.units.billion"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.decimal_units.units.million"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.decimal_units.units.quadrillion"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.decimal_units.units.thousand"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.decimal_units.units.trillion"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.decimal_units.units.unit"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.format.delimiter"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.storage_units.format"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.storage_units.units.byte.one"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.storage_units.units.byte.other"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.storage_units.units.gb"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.storage_units.units.kb"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.storage_units.units.mb"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.human.storage_units.units.tb"=>{"da"=>"", "de"=>"", "en"=>""}, "translations.number.percentage.format.delimiter"=>{"da"=>"", "de"=>"", "en"=>""}}, "commit"=>"Save", "handler_id"=>"rails_handler", "id"=>"number"}
|
18876
|
+
Redirected to http://localhost:3000/awesome_translations/handlers/rails_handler/groups/number
|
18877
|
+
Completed 302 Found in 34ms (ActiveRecord: 0.0ms)
|
18878
|
+
|
18879
|
+
|
18880
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/number" for 127.0.0.1 at 2015-06-13 09:59:24 +0200
|
18881
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
18882
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"number"}
|
18883
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (10.5ms)
|
18884
|
+
Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.0ms)
|
18885
|
+
|
18886
|
+
|
18887
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:59:24 +0200
|
18888
|
+
|
18889
|
+
|
18890
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:59:24 +0200
|
18891
|
+
|
18892
|
+
|
18893
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 09:59:24 +0200
|
18894
|
+
|
18895
|
+
|
18896
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 09:59:24 +0200
|
18897
|
+
|
18898
|
+
|
18899
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/number" for 127.0.0.1 at 2015-06-13 10:02:01 +0200
|
18900
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
18901
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"number"}
|
18902
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (10.8ms)
|
18903
|
+
Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.0ms)
|
18904
|
+
|
18905
|
+
|
18906
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:02:01 +0200
|
18907
|
+
|
18908
|
+
|
18909
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:02:01 +0200
|
18910
|
+
|
18911
|
+
|
18912
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:02:01 +0200
|
18913
|
+
|
18914
|
+
|
18915
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:02:01 +0200
|
18916
|
+
|
18917
|
+
|
18918
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/number" for 127.0.0.1 at 2015-06-13 10:02:07 +0200
|
18919
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18920
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
18921
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"number"}
|
18922
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (29.9ms)
|
18923
|
+
Completed 200 OK in 164ms (Views: 161.8ms | ActiveRecord: 0.0ms)
|
18924
|
+
|
18925
|
+
|
18926
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:02:08 +0200
|
18927
|
+
|
18928
|
+
|
18929
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:02:08 +0200
|
18930
|
+
|
18931
|
+
|
18932
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:02:08 +0200
|
18933
|
+
|
18934
|
+
|
18935
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:02:08 +0200
|
18936
|
+
|
18937
|
+
|
18938
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/number" for 127.0.0.1 at 2015-06-13 10:02:21 +0200
|
18939
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
18940
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"number"}
|
18941
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (16.1ms)
|
18942
|
+
Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.0ms)
|
18943
|
+
|
18944
|
+
|
18945
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:02:21 +0200
|
18946
|
+
|
18947
|
+
|
18948
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:02:21 +0200
|
18949
|
+
|
18950
|
+
|
18951
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:02:21 +0200
|
18952
|
+
|
18953
|
+
|
18954
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:02:21 +0200
|
18955
|
+
|
18956
|
+
|
18957
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 10:02:34 +0200
|
18958
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
18959
|
+
Parameters: {"id"=>"rails_handler"}
|
18960
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (12.7ms)
|
18961
|
+
Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.0ms)
|
18962
|
+
|
18963
|
+
|
18964
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:02:34 +0200
|
18965
|
+
|
18966
|
+
|
18967
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:02:34 +0200
|
18968
|
+
|
18969
|
+
|
18970
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:02:34 +0200
|
18971
|
+
|
18972
|
+
|
18973
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:02:34 +0200
|
18974
|
+
|
18975
|
+
|
18976
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 10:03:50 +0200
|
18977
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
18978
|
+
Parameters: {"id"=>"rails_handler"}
|
18979
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (3.7ms)
|
18980
|
+
Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms)
|
18981
|
+
|
18982
|
+
|
18983
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:03:50 +0200
|
18984
|
+
|
18985
|
+
|
18986
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:03:50 +0200
|
18987
|
+
|
18988
|
+
|
18989
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:03:50 +0200
|
18990
|
+
|
18991
|
+
|
18992
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:03:50 +0200
|
18993
|
+
|
18994
|
+
|
18995
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 10:03:55 +0200
|
18996
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18997
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
18998
|
+
Parameters: {"id"=>"rails_handler"}
|
18999
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (11.2ms)
|
19000
|
+
Completed 200 OK in 150ms (Views: 148.1ms | ActiveRecord: 0.0ms)
|
19001
|
+
|
19002
|
+
|
19003
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:03:55 +0200
|
19004
|
+
|
19005
|
+
|
19006
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:03:55 +0200
|
19007
|
+
|
19008
|
+
|
19009
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:03:55 +0200
|
19010
|
+
|
19011
|
+
|
19012
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:03:55 +0200
|
19013
|
+
|
19014
|
+
|
19015
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 10:13:21 +0200
|
19016
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19017
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
19018
|
+
Parameters: {"id"=>"rails_handler"}
|
19019
|
+
Completed 500 Internal Server Error in 1ms
|
19020
|
+
|
19021
|
+
SyntaxError (/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:126: syntax error, unexpected tIDENTIFIER, expecting '}'
|
19022
|
+
two_words_connector: ' and ',
|
19023
|
+
^
|
19024
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:126: syntax error, unexpected ',', expecting keyword_end
|
19025
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:128: syntax error, unexpected '}', expecting keyword_end
|
19026
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:209: syntax error, unexpected end-of-input, expecting keyword_end):
|
19027
|
+
/media/storage/Dev/Rails/awesome_translations/app/models/awesome_translations/handler.rb:35:in `const_get'
|
19028
|
+
/media/storage/Dev/Rails/awesome_translations/app/models/awesome_translations/handler.rb:35:in `const'
|
19029
|
+
/media/storage/Dev/Rails/awesome_translations/app/models/awesome_translations/handler.rb:43:in `groups'
|
19030
|
+
/media/storage/Dev/Rails/awesome_translations/app/controllers/awesome_translations/handlers_controller.rb:9:in `show'
|
19031
|
+
actionpack (4.0.10) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
19032
|
+
actionpack (4.0.10) lib/abstract_controller/base.rb:189:in `process_action'
|
19033
|
+
actionpack (4.0.10) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
19034
|
+
actionpack (4.0.10) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
19035
|
+
activesupport (4.0.10) lib/active_support/callbacks.rb:383:in `_run__4362185603491419332__process_action__callbacks'
|
19036
|
+
activesupport (4.0.10) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
19037
|
+
actionpack (4.0.10) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
19038
|
+
actionpack (4.0.10) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
19039
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
19040
|
+
activesupport (4.0.10) lib/active_support/notifications.rb:159:in `block in instrument'
|
19041
|
+
activesupport (4.0.10) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
19042
|
+
activesupport (4.0.10) lib/active_support/notifications.rb:159:in `instrument'
|
19043
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
19044
|
+
actionpack (4.0.10) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
19045
|
+
activerecord (4.0.10) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
19046
|
+
actionpack (4.0.10) lib/abstract_controller/base.rb:136:in `process'
|
19047
|
+
actionpack (4.0.10) lib/abstract_controller/rendering.rb:44:in `process'
|
19048
|
+
actionpack (4.0.10) lib/action_controller/metal.rb:195:in `dispatch'
|
19049
|
+
actionpack (4.0.10) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
19050
|
+
actionpack (4.0.10) lib/action_controller/metal.rb:231:in `block in action'
|
19051
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
19052
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
19053
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
19054
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
19055
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:59:in `each'
|
19056
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:59:in `call'
|
19057
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
19058
|
+
railties (4.0.10) lib/rails/engine.rb:511:in `call'
|
19059
|
+
railties (4.0.10) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
19060
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
19061
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:59:in `each'
|
19062
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:59:in `call'
|
19063
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
19064
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
19065
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
19066
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
19067
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
19068
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
19069
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
19070
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
19071
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
19072
|
+
activerecord (4.0.10) lib/active_record/query_cache.rb:36:in `call'
|
19073
|
+
activerecord (4.0.10) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
19074
|
+
activerecord (4.0.10) lib/active_record/migration.rb:373:in `call'
|
19075
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
19076
|
+
activesupport (4.0.10) lib/active_support/callbacks.rb:373:in `_run__3676307328791524099__call__callbacks'
|
19077
|
+
activesupport (4.0.10) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
19078
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
19079
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
19080
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
19081
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
19082
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
19083
|
+
railties (4.0.10) lib/rails/rack/logger.rb:38:in `call_app'
|
19084
|
+
railties (4.0.10) lib/rails/rack/logger.rb:20:in `block in call'
|
19085
|
+
activesupport (4.0.10) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
19086
|
+
activesupport (4.0.10) lib/active_support/tagged_logging.rb:26:in `tagged'
|
19087
|
+
activesupport (4.0.10) lib/active_support/tagged_logging.rb:68:in `tagged'
|
19088
|
+
railties (4.0.10) lib/rails/rack/logger.rb:20:in `call'
|
19089
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
19090
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
19091
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
19092
|
+
activesupport (4.0.10) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
19093
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
19094
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/static.rb:64:in `call'
|
19095
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
19096
|
+
railties (4.0.10) lib/rails/engine.rb:511:in `call'
|
19097
|
+
railties (4.0.10) lib/rails/application.rb:97:in `call'
|
19098
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
19099
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
19100
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
19101
|
+
/home/kaspernj/.rvm/rubies/ruby-2.1-head/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
19102
|
+
/home/kaspernj/.rvm/rubies/ruby-2.1-head/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
19103
|
+
/home/kaspernj/.rvm/rubies/ruby-2.1-head/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
19104
|
+
|
19105
|
+
|
19106
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
19107
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
19108
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.4ms)
|
19109
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
|
19110
|
+
|
19111
|
+
|
19112
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 10:13:35 +0200
|
19113
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
19114
|
+
Parameters: {"id"=>"rails_handler"}
|
19115
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (30.4ms)
|
19116
|
+
Completed 200 OK in 181ms (Views: 178.8ms | ActiveRecord: 0.0ms)
|
19117
|
+
|
19118
|
+
|
19119
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:13:35 +0200
|
19120
|
+
|
19121
|
+
|
19122
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:13:35 +0200
|
19123
|
+
|
19124
|
+
|
19125
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:13:35 +0200
|
19126
|
+
|
19127
|
+
|
19128
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:13:35 +0200
|
19129
|
+
|
19130
|
+
|
19131
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/errors" for 127.0.0.1 at 2015-06-13 10:13:37 +0200
|
19132
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19133
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"errors"}
|
19134
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (25.2ms)
|
19135
|
+
Completed 200 OK in 38ms (Views: 37.7ms | ActiveRecord: 0.0ms)
|
19136
|
+
|
19137
|
+
|
19138
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:13:38 +0200
|
19139
|
+
|
19140
|
+
|
19141
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:13:38 +0200
|
19142
|
+
|
19143
|
+
|
19144
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:13:38 +0200
|
19145
|
+
|
19146
|
+
|
19147
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:13:38 +0200
|
19148
|
+
|
19149
|
+
|
19150
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/errors" for 127.0.0.1 at 2015-06-13 10:17:04 +0200
|
19151
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19152
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19153
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"errors"}
|
19154
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (28.5ms)
|
19155
|
+
Completed 200 OK in 156ms (Views: 153.6ms | ActiveRecord: 0.0ms)
|
19156
|
+
|
19157
|
+
|
19158
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:17:04 +0200
|
19159
|
+
|
19160
|
+
|
19161
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:17:04 +0200
|
19162
|
+
|
19163
|
+
|
19164
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:17:04 +0200
|
19165
|
+
|
19166
|
+
|
19167
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:17:04 +0200
|
19168
|
+
|
19169
|
+
|
19170
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/errors" for 127.0.0.1 at 2015-06-13 10:18:49 +0200
|
19171
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19172
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19173
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"errors"}
|
19174
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (6.2ms)
|
19175
|
+
Completed 500 Internal Server Error in 12ms
|
19176
|
+
|
19177
|
+
ActionView::Template::Error (undefined method `key_show!' for #<AwesomeTranslations::Translation:0x000000033ada38>):
|
19178
|
+
10: - @translations.each do |translation|
|
19179
|
+
11: %tr
|
19180
|
+
12: %td.translation-key
|
19181
|
+
13: .translation-key-text= translation.key_show!
|
19182
|
+
14:
|
19183
|
+
15: - I18n.available_locales.each do |locale|
|
19184
|
+
16: %td.translation= text_field "t", "#{translation.key}[#{locale}]", class: "translation-input", lang: locale, value: translation.value(locale: locale)
|
19185
|
+
/media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml:13:in `block (2 levels) in __media_storage__ev__ails_awesome_translations_app_views_awesome_translations_groups_show_html_haml___239584895146315746_28253680'
|
19186
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:117:in `<<'
|
19187
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:117:in `block (2 levels) in to_enum'
|
19188
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:221:in `block in yield_rest'
|
19189
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:218:in `synchronize'
|
19190
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:218:in `yield_rest'
|
19191
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:116:in `block in to_enum'
|
19192
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:54:in `each'
|
19193
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:54:in `each'
|
19194
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:54:in `each'
|
19195
|
+
/media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml:10:in `block in __media_storage__ev__ails_awesome_translations_app_views_awesome_translations_groups_show_html_haml___239584895146315746_28253680'
|
19196
|
+
haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `call'
|
19197
|
+
haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml'
|
19198
|
+
haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs'
|
19199
|
+
haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml'
|
19200
|
+
actionpack (4.0.10) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
|
19201
|
+
actionpack (4.0.10) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer'
|
19202
|
+
haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss'
|
19203
|
+
actionpack (4.0.10) lib/action_view/helpers/capture_helper.rb:38:in `capture'
|
19204
|
+
haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml'
|
19205
|
+
actionpack (4.0.10) lib/action_view/helpers/form_helper.rb:435:in `form_for'
|
19206
|
+
haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml'
|
19207
|
+
haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss'
|
19208
|
+
/media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml:3:in `__media_storage__ev__ails_awesome_translations_app_views_awesome_translations_groups_show_html_haml___239584895146315746_28253680'
|
19209
|
+
actionpack (4.0.10) lib/action_view/template.rb:143:in `block in render'
|
19210
|
+
activesupport (4.0.10) lib/active_support/notifications.rb:161:in `instrument'
|
19211
|
+
actionpack (4.0.10) lib/action_view/template.rb:141:in `render'
|
19212
|
+
actionpack (4.0.10) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
|
19213
|
+
actionpack (4.0.10) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
19214
|
+
activesupport (4.0.10) lib/active_support/notifications.rb:159:in `block in instrument'
|
19215
|
+
activesupport (4.0.10) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
19216
|
+
activesupport (4.0.10) lib/active_support/notifications.rb:159:in `instrument'
|
19217
|
+
actionpack (4.0.10) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
19218
|
+
actionpack (4.0.10) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
|
19219
|
+
actionpack (4.0.10) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
|
19220
|
+
actionpack (4.0.10) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
19221
|
+
actionpack (4.0.10) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
19222
|
+
actionpack (4.0.10) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
19223
|
+
actionpack (4.0.10) lib/action_view/renderer/renderer.rb:23:in `render'
|
19224
|
+
actionpack (4.0.10) lib/abstract_controller/rendering.rb:127:in `_render_template'
|
19225
|
+
actionpack (4.0.10) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
19226
|
+
actionpack (4.0.10) lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
19227
|
+
actionpack (4.0.10) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
19228
|
+
actionpack (4.0.10) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
19229
|
+
actionpack (4.0.10) lib/abstract_controller/rendering.rb:97:in `render'
|
19230
|
+
actionpack (4.0.10) lib/action_controller/metal/rendering.rb:16:in `render'
|
19231
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
19232
|
+
activesupport (4.0.10) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
19233
|
+
/home/kaspernj/.rvm/rubies/ruby-2.1-head/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
|
19234
|
+
activesupport (4.0.10) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
19235
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
19236
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
19237
|
+
activerecord (4.0.10) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
19238
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
19239
|
+
actionpack (4.0.10) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
19240
|
+
actionpack (4.0.10) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
19241
|
+
actionpack (4.0.10) lib/abstract_controller/base.rb:189:in `process_action'
|
19242
|
+
actionpack (4.0.10) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
19243
|
+
actionpack (4.0.10) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
19244
|
+
activesupport (4.0.10) lib/active_support/callbacks.rb:393:in `_run__618105898764526300__process_action__callbacks'
|
19245
|
+
activesupport (4.0.10) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
19246
|
+
actionpack (4.0.10) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
19247
|
+
actionpack (4.0.10) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
19248
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
19249
|
+
activesupport (4.0.10) lib/active_support/notifications.rb:159:in `block in instrument'
|
19250
|
+
activesupport (4.0.10) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
19251
|
+
activesupport (4.0.10) lib/active_support/notifications.rb:159:in `instrument'
|
19252
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
19253
|
+
actionpack (4.0.10) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
19254
|
+
activerecord (4.0.10) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
19255
|
+
actionpack (4.0.10) lib/abstract_controller/base.rb:136:in `process'
|
19256
|
+
actionpack (4.0.10) lib/abstract_controller/rendering.rb:44:in `process'
|
19257
|
+
actionpack (4.0.10) lib/action_controller/metal.rb:195:in `dispatch'
|
19258
|
+
actionpack (4.0.10) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
19259
|
+
actionpack (4.0.10) lib/action_controller/metal.rb:231:in `block in action'
|
19260
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
19261
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
19262
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
19263
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
19264
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:59:in `each'
|
19265
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:59:in `call'
|
19266
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
19267
|
+
railties (4.0.10) lib/rails/engine.rb:511:in `call'
|
19268
|
+
railties (4.0.10) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
19269
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
19270
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:59:in `each'
|
19271
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:59:in `call'
|
19272
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
19273
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
19274
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
19275
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
19276
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
19277
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
19278
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
19279
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
19280
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
19281
|
+
activerecord (4.0.10) lib/active_record/query_cache.rb:36:in `call'
|
19282
|
+
activerecord (4.0.10) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
19283
|
+
activerecord (4.0.10) lib/active_record/migration.rb:373:in `call'
|
19284
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
19285
|
+
activesupport (4.0.10) lib/active_support/callbacks.rb:373:in `_run__1756233922694284814__call__callbacks'
|
19286
|
+
activesupport (4.0.10) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
19287
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
19288
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
19289
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
19290
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
19291
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
19292
|
+
railties (4.0.10) lib/rails/rack/logger.rb:38:in `call_app'
|
19293
|
+
railties (4.0.10) lib/rails/rack/logger.rb:20:in `block in call'
|
19294
|
+
activesupport (4.0.10) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
19295
|
+
activesupport (4.0.10) lib/active_support/tagged_logging.rb:26:in `tagged'
|
19296
|
+
activesupport (4.0.10) lib/active_support/tagged_logging.rb:68:in `tagged'
|
19297
|
+
railties (4.0.10) lib/rails/rack/logger.rb:20:in `call'
|
19298
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
19299
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
19300
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
19301
|
+
activesupport (4.0.10) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
19302
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
19303
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/static.rb:64:in `call'
|
19304
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
19305
|
+
railties (4.0.10) lib/rails/engine.rb:511:in `call'
|
19306
|
+
railties (4.0.10) lib/rails/application.rb:97:in `call'
|
19307
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
19308
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
19309
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
19310
|
+
/home/kaspernj/.rvm/rubies/ruby-2.1-head/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
19311
|
+
/home/kaspernj/.rvm/rubies/ruby-2.1-head/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
19312
|
+
/home/kaspernj/.rvm/rubies/ruby-2.1-head/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
19313
|
+
|
19314
|
+
|
19315
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
19316
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.7ms)
|
19317
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.9ms)
|
19318
|
+
|
19319
|
+
|
19320
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/errors" for 127.0.0.1 at 2015-06-13 10:19:00 +0200
|
19321
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19322
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19323
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"errors"}
|
19324
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (29.7ms)
|
19325
|
+
Completed 200 OK in 158ms (Views: 155.7ms | ActiveRecord: 0.0ms)
|
19326
|
+
|
19327
|
+
|
19328
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:19:00 +0200
|
19329
|
+
|
19330
|
+
|
19331
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:19:00 +0200
|
19332
|
+
|
19333
|
+
|
19334
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:19:00 +0200
|
19335
|
+
|
19336
|
+
|
19337
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:19:00 +0200
|
19338
|
+
|
19339
|
+
|
19340
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/errors" for 127.0.0.1 at 2015-06-13 10:19:35 +0200
|
19341
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19342
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19343
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"errors"}
|
19344
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (33.1ms)
|
19345
|
+
Completed 200 OK in 165ms (Views: 162.6ms | ActiveRecord: 0.0ms)
|
19346
|
+
|
19347
|
+
|
19348
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:19:35 +0200
|
19349
|
+
|
19350
|
+
|
19351
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:19:35 +0200
|
19352
|
+
|
19353
|
+
|
19354
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:19:35 +0200
|
19355
|
+
|
19356
|
+
|
19357
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:19:35 +0200
|
19358
|
+
|
19359
|
+
|
19360
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/errors" for 127.0.0.1 at 2015-06-13 10:19:55 +0200
|
19361
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19362
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19363
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"errors"}
|
19364
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (31.7ms)
|
19365
|
+
Completed 200 OK in 160ms (Views: 157.4ms | ActiveRecord: 0.0ms)
|
19366
|
+
|
19367
|
+
|
19368
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:19:56 +0200
|
19369
|
+
|
19370
|
+
|
19371
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:19:56 +0200
|
19372
|
+
|
19373
|
+
|
19374
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:19:56 +0200
|
19375
|
+
|
19376
|
+
|
19377
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:19:56 +0200
|
19378
|
+
|
19379
|
+
|
19380
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/number" for 127.0.0.1 at 2015-06-13 10:20:02 +0200
|
19381
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19382
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"number"}
|
19383
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (14.3ms)
|
19384
|
+
Completed 200 OK in 23ms (Views: 23.2ms | ActiveRecord: 0.0ms)
|
19385
|
+
|
19386
|
+
|
19387
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:20:02 +0200
|
19388
|
+
|
19389
|
+
|
19390
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:20:02 +0200
|
19391
|
+
|
19392
|
+
|
19393
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:20:02 +0200
|
19394
|
+
|
19395
|
+
|
19396
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:20:02 +0200
|
19397
|
+
|
19398
|
+
|
19399
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 10:20:05 +0200
|
19400
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19401
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19402
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (7.2ms)
|
19403
|
+
Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms)
|
19404
|
+
|
19405
|
+
|
19406
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:20:06 +0200
|
19407
|
+
|
19408
|
+
|
19409
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:20:06 +0200
|
19410
|
+
|
19411
|
+
|
19412
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:20:06 +0200
|
19413
|
+
|
19414
|
+
|
19415
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:20:06 +0200
|
19416
|
+
|
19417
|
+
|
19418
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 10:20:31 +0200
|
19419
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19420
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19421
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19422
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (7.2ms)
|
19423
|
+
Completed 500 Internal Server Error in 14ms
|
19424
|
+
|
19425
|
+
ActionView::Template::Error (undefined local variable or method `key_show' for #<AwesomeTranslations::Handlers::RailsHandler:0x000000033cfa98>):
|
19426
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:216:in `block in translations_for_hash_recursive'
|
19427
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:207:in `each'
|
19428
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:207:in `translations_for_hash_recursive'
|
19429
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:211:in `block in translations_for_hash_recursive'
|
19430
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:207:in `each'
|
19431
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:207:in `translations_for_hash_recursive'
|
19432
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:211:in `block in translations_for_hash_recursive'
|
19433
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:207:in `each'
|
19434
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:207:in `translations_for_hash_recursive'
|
19435
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:203:in `add_translations_for_hash'
|
19436
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:99:in `translations_for_date_time'
|
19437
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:45:in `block in translations_for_group'
|
19438
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `call'
|
19439
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `block in initialize'
|
19440
|
+
bin/rails:1:in `each'
|
19441
|
+
bin/rails:1:in `each'
|
19442
|
+
|
19443
|
+
|
19444
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.1ms)
|
19445
|
+
|
19446
|
+
|
19447
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 10:20:41 +0200
|
19448
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19449
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19450
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19451
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (21.3ms)
|
19452
|
+
Completed 200 OK in 154ms (Views: 151.7ms | ActiveRecord: 0.0ms)
|
19453
|
+
|
19454
|
+
|
19455
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:20:41 +0200
|
19456
|
+
|
19457
|
+
|
19458
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:20:41 +0200
|
19459
|
+
|
19460
|
+
|
19461
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:20:41 +0200
|
19462
|
+
|
19463
|
+
|
19464
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:20:41 +0200
|
19465
|
+
|
19466
|
+
|
19467
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 10:24:01 +0200
|
19468
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19469
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
19470
|
+
Parameters: {"id"=>"rails_handler"}
|
19471
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (15.9ms)
|
19472
|
+
Completed 500 Internal Server Error in 21ms
|
19473
|
+
|
19474
|
+
ActionView::Template::Error (break from proc-closure):
|
19475
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:16:in `block in groups'
|
19476
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `call'
|
19477
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `block in initialize'
|
19478
|
+
bin/rails:1:in `each'
|
19479
|
+
bin/rails:1:in `each'
|
19480
|
+
|
19481
|
+
|
19482
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (2.7ms)
|
19483
|
+
|
19484
|
+
|
19485
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 10:24:11 +0200
|
19486
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19487
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
19488
|
+
Parameters: {"id"=>"rails_handler"}
|
19489
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (16.0ms)
|
19490
|
+
Completed 500 Internal Server Error in 21ms
|
19491
|
+
|
19492
|
+
ActionView::Template::Error (unexpected return):
|
19493
|
+
/media/storage/Dev/Rails/awesome_translations/lib/awesome_translations/handlers/rails_handler.rb:16:in `block in groups'
|
19494
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `call'
|
19495
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:13:in `block in initialize'
|
19496
|
+
bin/rails:1:in `each'
|
19497
|
+
bin/rails:1:in `each'
|
19498
|
+
|
19499
|
+
|
19500
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (2.8ms)
|
19501
|
+
|
19502
|
+
|
19503
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 10:24:21 +0200
|
19504
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19505
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
19506
|
+
Parameters: {"id"=>"rails_handler"}
|
19507
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (15.2ms)
|
19508
|
+
Completed 200 OK in 156ms (Views: 154.5ms | ActiveRecord: 0.0ms)
|
19509
|
+
|
19510
|
+
|
19511
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:21 +0200
|
19512
|
+
|
19513
|
+
|
19514
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:21 +0200
|
19515
|
+
|
19516
|
+
|
19517
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:24:21 +0200
|
19518
|
+
|
19519
|
+
|
19520
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:21 +0200
|
19521
|
+
|
19522
|
+
|
19523
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 10:24:24 +0200
|
19524
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19525
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19526
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (10.6ms)
|
19527
|
+
Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.0ms)
|
19528
|
+
|
19529
|
+
|
19530
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:24 +0200
|
19531
|
+
|
19532
|
+
|
19533
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:24 +0200
|
19534
|
+
|
19535
|
+
|
19536
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:24 +0200
|
19537
|
+
|
19538
|
+
|
19539
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:24:24 +0200
|
19540
|
+
|
19541
|
+
|
19542
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 10:24:27 +0200
|
19543
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19544
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19545
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (7.0ms)
|
19546
|
+
Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms)
|
19547
|
+
|
19548
|
+
|
19549
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:28 +0200
|
19550
|
+
|
19551
|
+
|
19552
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:24:28 +0200
|
19553
|
+
|
19554
|
+
|
19555
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:28 +0200
|
19556
|
+
|
19557
|
+
|
19558
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:28 +0200
|
19559
|
+
|
19560
|
+
|
19561
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/errors" for 127.0.0.1 at 2015-06-13 10:24:31 +0200
|
19562
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19563
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"errors"}
|
19564
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (13.2ms)
|
19565
|
+
Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.0ms)
|
19566
|
+
|
19567
|
+
|
19568
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:31 +0200
|
19569
|
+
|
19570
|
+
|
19571
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:31 +0200
|
19572
|
+
|
19573
|
+
|
19574
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:24:31 +0200
|
19575
|
+
|
19576
|
+
|
19577
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:31 +0200
|
19578
|
+
|
19579
|
+
|
19580
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/helpers" for 127.0.0.1 at 2015-06-13 10:24:33 +0200
|
19581
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19582
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"helpers"}
|
19583
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (3.6ms)
|
19584
|
+
Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
|
19585
|
+
|
19586
|
+
|
19587
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:33 +0200
|
19588
|
+
|
19589
|
+
|
19590
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:24:33 +0200
|
19591
|
+
|
19592
|
+
|
19593
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:33 +0200
|
19594
|
+
|
19595
|
+
|
19596
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:33 +0200
|
19597
|
+
|
19598
|
+
|
19599
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 10:24:41 +0200
|
19600
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
19601
|
+
Parameters: {"id"=>"rails_handler"}
|
19602
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (42.6ms)
|
19603
|
+
Completed 200 OK in 54ms (Views: 53.3ms | ActiveRecord: 0.0ms)
|
19604
|
+
|
19605
|
+
|
19606
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:41 +0200
|
19607
|
+
|
19608
|
+
|
19609
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:41 +0200
|
19610
|
+
|
19611
|
+
|
19612
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:41 +0200
|
19613
|
+
|
19614
|
+
|
19615
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:24:41 +0200
|
19616
|
+
|
19617
|
+
|
19618
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 10:24:48 +0200
|
19619
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19620
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
19621
|
+
Parameters: {"id"=>"rails_handler"}
|
19622
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (14.4ms)
|
19623
|
+
Completed 200 OK in 150ms (Views: 148.2ms | ActiveRecord: 0.0ms)
|
19624
|
+
|
19625
|
+
|
19626
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:48 +0200
|
19627
|
+
|
19628
|
+
|
19629
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:48 +0200
|
19630
|
+
|
19631
|
+
|
19632
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:48 +0200
|
19633
|
+
|
19634
|
+
|
19635
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:24:48 +0200
|
19636
|
+
|
19637
|
+
|
19638
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 10:24:49 +0200
|
19639
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19640
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19641
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (8.1ms)
|
19642
|
+
Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
|
19643
|
+
|
19644
|
+
|
19645
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:49 +0200
|
19646
|
+
|
19647
|
+
|
19648
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:49 +0200
|
19649
|
+
|
19650
|
+
|
19651
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:24:49 +0200
|
19652
|
+
|
19653
|
+
|
19654
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:24:49 +0200
|
19655
|
+
|
19656
|
+
|
19657
|
+
Started GET "/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-06-13 10:25:16 +0200
|
19658
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19659
|
+
Processing by AwesomeTranslations::HandlersController#show as HTML
|
19660
|
+
Parameters: {"id"=>"rails_handler"}
|
19661
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (15.4ms)
|
19662
|
+
Completed 200 OK in 157ms (Views: 155.6ms | ActiveRecord: 0.0ms)
|
19663
|
+
|
19664
|
+
|
19665
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:16 +0200
|
19666
|
+
|
19667
|
+
|
19668
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:16 +0200
|
19669
|
+
|
19670
|
+
|
19671
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:16 +0200
|
19672
|
+
|
19673
|
+
|
19674
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:25:16 +0200
|
19675
|
+
|
19676
|
+
|
19677
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/errors" for 127.0.0.1 at 2015-06-13 10:25:17 +0200
|
19678
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19679
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"errors"}
|
19680
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (15.9ms)
|
19681
|
+
Completed 200 OK in 24ms (Views: 23.9ms | ActiveRecord: 0.0ms)
|
19682
|
+
|
19683
|
+
|
19684
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:17 +0200
|
19685
|
+
|
19686
|
+
|
19687
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:17 +0200
|
19688
|
+
|
19689
|
+
|
19690
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:17 +0200
|
19691
|
+
|
19692
|
+
|
19693
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:25:17 +0200
|
19694
|
+
|
19695
|
+
|
19696
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/helpers" for 127.0.0.1 at 2015-06-13 10:25:18 +0200
|
19697
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19698
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"helpers"}
|
19699
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (3.3ms)
|
19700
|
+
Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
19701
|
+
|
19702
|
+
|
19703
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:18 +0200
|
19704
|
+
|
19705
|
+
|
19706
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:18 +0200
|
19707
|
+
|
19708
|
+
|
19709
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:18 +0200
|
19710
|
+
|
19711
|
+
|
19712
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:25:18 +0200
|
19713
|
+
|
19714
|
+
|
19715
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/numbers" for 127.0.0.1 at 2015-06-13 10:25:19 +0200
|
19716
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19717
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"numbers"}
|
19718
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (10.7ms)
|
19719
|
+
Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
|
19720
|
+
|
19721
|
+
|
19722
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:19 +0200
|
19723
|
+
|
19724
|
+
|
19725
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:19 +0200
|
19726
|
+
|
19727
|
+
|
19728
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:25:19 +0200
|
19729
|
+
|
19730
|
+
|
19731
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:19 +0200
|
19732
|
+
|
19733
|
+
|
19734
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/numbers" for 127.0.0.1 at 2015-06-13 10:25:23 +0200
|
19735
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19736
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"numbers"}
|
19737
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (12.0ms)
|
19738
|
+
Completed 200 OK in 20ms (Views: 20.1ms | ActiveRecord: 0.0ms)
|
19739
|
+
|
19740
|
+
|
19741
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:23 +0200
|
19742
|
+
|
19743
|
+
|
19744
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:23 +0200
|
19745
|
+
|
19746
|
+
|
19747
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:23 +0200
|
19748
|
+
|
19749
|
+
|
19750
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:25:23 +0200
|
19751
|
+
|
19752
|
+
|
19753
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/support" for 127.0.0.1 at 2015-06-13 10:25:24 +0200
|
19754
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19755
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"support"}
|
19756
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (4.3ms)
|
19757
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
19758
|
+
|
19759
|
+
|
19760
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:24 +0200
|
19761
|
+
|
19762
|
+
|
19763
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:24 +0200
|
19764
|
+
|
19765
|
+
|
19766
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:25:24 +0200
|
19767
|
+
|
19768
|
+
|
19769
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:24 +0200
|
19770
|
+
|
19771
|
+
|
19772
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/numbers" for 127.0.0.1 at 2015-06-13 10:25:28 +0200
|
19773
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19774
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"numbers"}
|
19775
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (66.6ms)
|
19776
|
+
Completed 200 OK in 78ms (Views: 77.1ms | ActiveRecord: 0.0ms)
|
19777
|
+
|
19778
|
+
|
19779
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:28 +0200
|
19780
|
+
|
19781
|
+
|
19782
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:28 +0200
|
19783
|
+
|
19784
|
+
|
19785
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:28 +0200
|
19786
|
+
|
19787
|
+
|
19788
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:25:28 +0200
|
19789
|
+
|
19790
|
+
|
19791
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 10:25:30 +0200
|
19792
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19793
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19794
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (4.8ms)
|
19795
|
+
Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
19796
|
+
|
19797
|
+
|
19798
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:30 +0200
|
19799
|
+
|
19800
|
+
|
19801
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:30 +0200
|
19802
|
+
|
19803
|
+
|
19804
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:30 +0200
|
19805
|
+
|
19806
|
+
|
19807
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:25:30 +0200
|
19808
|
+
|
19809
|
+
|
19810
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 10:25:37 +0200
|
19811
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19812
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19813
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19814
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (21.3ms)
|
19815
|
+
Completed 200 OK in 151ms (Views: 149.2ms | ActiveRecord: 0.0ms)
|
19816
|
+
|
19817
|
+
|
19818
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:37 +0200
|
19819
|
+
|
19820
|
+
|
19821
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:37 +0200
|
19822
|
+
|
19823
|
+
|
19824
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:25:37 +0200
|
19825
|
+
|
19826
|
+
|
19827
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:25:37 +0200
|
19828
|
+
|
19829
|
+
|
19830
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 10:27:19 +0200
|
19831
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19832
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19833
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19834
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (49.4ms)
|
19835
|
+
Completed 200 OK in 172ms (Views: 169.5ms | ActiveRecord: 0.0ms)
|
19836
|
+
|
19837
|
+
|
19838
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:27:20 +0200
|
19839
|
+
|
19840
|
+
|
19841
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:27:20 +0200
|
19842
|
+
|
19843
|
+
|
19844
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:27:20 +0200
|
19845
|
+
|
19846
|
+
|
19847
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:27:20 +0200
|
19848
|
+
|
19849
|
+
|
19850
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 10:27:39 +0200
|
19851
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19852
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19853
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19854
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (41.1ms)
|
19855
|
+
Completed 200 OK in 163ms (Views: 160.9ms | ActiveRecord: 0.0ms)
|
19856
|
+
|
19857
|
+
|
19858
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:27:39 +0200
|
19859
|
+
|
19860
|
+
|
19861
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:27:39 +0200
|
19862
|
+
|
19863
|
+
|
19864
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 10:27:39 +0200
|
19865
|
+
|
19866
|
+
|
19867
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 10:27:39 +0200
|
19868
|
+
|
19869
|
+
|
19870
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 11:07:08 +0200
|
19871
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19872
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19873
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19874
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (41.1ms)
|
19875
|
+
Completed 200 OK in 168ms (Views: 166.1ms | ActiveRecord: 0.0ms)
|
19876
|
+
|
19877
|
+
|
19878
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 11:07:08 +0200
|
19879
|
+
|
19880
|
+
|
19881
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 11:07:08 +0200
|
19882
|
+
|
19883
|
+
|
19884
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 11:07:08 +0200
|
19885
|
+
|
19886
|
+
|
19887
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 11:07:08 +0200
|
19888
|
+
|
19889
|
+
|
19890
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 11:07:11 +0200
|
19891
|
+
|
19892
|
+
|
19893
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 11:07:11 +0200
|
19894
|
+
|
19895
|
+
|
19896
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 11:07:11 +0200
|
19897
|
+
|
19898
|
+
|
19899
|
+
Started PUT "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 11:07:26 +0200
|
19900
|
+
Processing by AwesomeTranslations::GroupsController#update as HTML
|
19901
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"ywH/slZeBzhCWMWCo8Y99f2GzuS3MbdlfSfdXE6wnHo=", "t"=>{"date.formats.default"=>{"da"=>"", "de"=>"", "en"=>"%Y-%m-%d"}, "date.formats.short"=>{"da"=>"", "de"=>"", "en"=>"%b %d"}, "date.formats.long"=>{"da"=>"", "de"=>"", "en"=>"%B %d, %Y"}, "date.day_names"=>{"0"=>{"da"=>"0", "de"=>"", "en"=>""}, "1"=>{"da"=>"1", "de"=>"", "en"=>""}, "2"=>{"da"=>"2", "de"=>"", "en"=>""}, "3"=>{"da"=>"3", "de"=>"", "en"=>""}, "4"=>{"da"=>"", "de"=>"", "en"=>""}, "5"=>{"da"=>"", "de"=>"", "en"=>""}, "6"=>{"da"=>"", "de"=>"", "en"=>""}}, "date.abbr_day_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}, "3"=>{"da"=>"", "de"=>"", "en"=>""}, "4"=>{"da"=>"", "de"=>"", "en"=>""}, "5"=>{"da"=>"", "de"=>"", "en"=>""}, "6"=>{"da"=>"", "de"=>"", "en"=>""}}, "date.month_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}, "3"=>{"da"=>"", "de"=>"", "en"=>""}, "4"=>{"da"=>"", "de"=>"", "en"=>""}, "5"=>{"da"=>"", "de"=>"", "en"=>""}, "6"=>{"da"=>"", "de"=>"", "en"=>""}, "7"=>{"da"=>"", "de"=>"", "en"=>""}, "8"=>{"da"=>"", "de"=>"", "en"=>""}, "9"=>{"da"=>"", "de"=>"", "en"=>""}, "10"=>{"da"=>"", "de"=>"", "en"=>""}, "11"=>{"da"=>"", "de"=>"", "en"=>""}, "12"=>{"da"=>"", "de"=>"", "en"=>""}}, "date.abbr_month_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}, "3"=>{"da"=>"", "de"=>"", "en"=>""}, "4"=>{"da"=>"", "de"=>"", "en"=>""}, "5"=>{"da"=>"", "de"=>"", "en"=>""}, "6"=>{"da"=>"", "de"=>"", "en"=>""}, "7"=>{"da"=>"", "de"=>"", "en"=>""}, "8"=>{"da"=>"", "de"=>"", "en"=>""}, "9"=>{"da"=>"", "de"=>"", "en"=>""}, "10"=>{"da"=>"", "de"=>"", "en"=>""}, "11"=>{"da"=>"", "de"=>"", "en"=>""}, "12"=>{"da"=>"", "de"=>"", "en"=>""}}, "date.order"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}}, "time.formats.default"=>{"da"=>"", "de"=>"", "en"=>"%a, %d %b %Y %H:%M:%S %z"}, "time.formats.short"=>{"da"=>"", "de"=>"", "en"=>"%d %b %H:%M"}, "time.formats.long"=>{"da"=>"", "de"=>"", "en"=>"%B %d, %Y %H:%M"}, "time.am"=>{"da"=>"", "de"=>"", "en"=>"am"}, "time.pm"=>{"da"=>"", "de"=>"", "en"=>"pm"}}, "commit"=>"Save", "handler_id"=>"rails_handler", "id"=>"date_time"}
|
19902
|
+
Redirected to http://localhost:3000/awesome_translations/handlers/rails_handler/groups/date_time
|
19903
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.0ms)
|
19904
|
+
|
19905
|
+
|
19906
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 11:07:26 +0200
|
19907
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19908
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19909
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (20.1ms)
|
19910
|
+
Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.0ms)
|
19911
|
+
|
19912
|
+
|
19913
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 11:07:26 +0200
|
19914
|
+
|
19915
|
+
|
19916
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 11:07:26 +0200
|
19917
|
+
|
19918
|
+
|
19919
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 11:07:26 +0200
|
19920
|
+
|
19921
|
+
|
19922
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 11:07:26 +0200
|
19923
|
+
|
19924
|
+
|
19925
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 15:07:56 +0200
|
19926
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19927
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19928
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (21.1ms)
|
19929
|
+
Completed 200 OK in 57ms (Views: 29.0ms | ActiveRecord: 0.0ms)
|
19930
|
+
|
19931
|
+
|
19932
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:07:56 +0200
|
19933
|
+
|
19934
|
+
|
19935
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:07:56 +0200
|
19936
|
+
|
19937
|
+
|
19938
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:07:56 +0200
|
19939
|
+
|
19940
|
+
|
19941
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 15:07:56 +0200
|
19942
|
+
|
19943
|
+
|
19944
|
+
Started PUT "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 15:08:01 +0200
|
19945
|
+
Processing by AwesomeTranslations::GroupsController#update as HTML
|
19946
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"ywH/slZeBzhCWMWCo8Y99f2GzuS3MbdlfSfdXE6wnHo=", "t"=>{"date.formats.default"=>{"da"=>"", "de"=>"", "en"=>"%Y-%m-%d"}, "date.formats.short"=>{"da"=>"", "de"=>"", "en"=>"%b %d"}, "date.formats.long"=>{"da"=>"", "de"=>"", "en"=>"%B %d, %Y"}, "date.day_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"Mandag", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}, "3"=>{"da"=>"", "de"=>"", "en"=>""}, "4"=>{"da"=>"", "de"=>"", "en"=>""}, "5"=>{"da"=>"", "de"=>"", "en"=>""}, "6"=>{"da"=>"", "de"=>"", "en"=>""}}, "date.abbr_day_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}, "3"=>{"da"=>"", "de"=>"", "en"=>""}, "4"=>{"da"=>"", "de"=>"", "en"=>""}, "5"=>{"da"=>"", "de"=>"", "en"=>""}, "6"=>{"da"=>"", "de"=>"", "en"=>""}}, "date.month_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}, "3"=>{"da"=>"", "de"=>"", "en"=>""}, "4"=>{"da"=>"", "de"=>"", "en"=>""}, "5"=>{"da"=>"", "de"=>"", "en"=>""}, "6"=>{"da"=>"", "de"=>"", "en"=>""}, "7"=>{"da"=>"", "de"=>"", "en"=>""}, "8"=>{"da"=>"", "de"=>"", "en"=>""}, "9"=>{"da"=>"", "de"=>"", "en"=>""}, "10"=>{"da"=>"", "de"=>"", "en"=>""}, "11"=>{"da"=>"", "de"=>"", "en"=>""}, "12"=>{"da"=>"", "de"=>"", "en"=>""}}, "date.abbr_month_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}, "3"=>{"da"=>"", "de"=>"", "en"=>""}, "4"=>{"da"=>"", "de"=>"", "en"=>""}, "5"=>{"da"=>"", "de"=>"", "en"=>""}, "6"=>{"da"=>"", "de"=>"", "en"=>""}, "7"=>{"da"=>"", "de"=>"", "en"=>""}, "8"=>{"da"=>"", "de"=>"", "en"=>""}, "9"=>{"da"=>"", "de"=>"", "en"=>""}, "10"=>{"da"=>"", "de"=>"", "en"=>""}, "11"=>{"da"=>"", "de"=>"", "en"=>""}, "12"=>{"da"=>"", "de"=>"", "en"=>""}}, "date.order"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}}, "time.formats.default"=>{"da"=>"", "de"=>"", "en"=>"%a, %d %b %Y %H:%M:%S %z"}, "time.formats.short"=>{"da"=>"", "de"=>"", "en"=>"%d %b %H:%M"}, "time.formats.long"=>{"da"=>"", "de"=>"", "en"=>"%B %d, %Y %H:%M"}, "time.am"=>{"da"=>"", "de"=>"", "en"=>"am"}, "time.pm"=>{"da"=>"", "de"=>"", "en"=>"pm"}}, "commit"=>"Save", "handler_id"=>"rails_handler", "id"=>"date_time"}
|
19947
|
+
Redirected to http://localhost:3000/awesome_translations/handlers/rails_handler/groups/date_time
|
19948
|
+
Completed 302 Found in 65ms (ActiveRecord: 0.0ms)
|
19949
|
+
|
19950
|
+
|
19951
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 15:08:01 +0200
|
19952
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19953
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19954
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (42.4ms)
|
19955
|
+
Completed 200 OK in 50ms (Views: 50.0ms | ActiveRecord: 0.0ms)
|
19956
|
+
|
19957
|
+
|
19958
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:08:01 +0200
|
19959
|
+
|
19960
|
+
|
19961
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:08:01 +0200
|
19962
|
+
|
19963
|
+
|
19964
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 15:08:01 +0200
|
19965
|
+
|
19966
|
+
|
19967
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:08:01 +0200
|
19968
|
+
|
19969
|
+
|
19970
|
+
Started PUT "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 15:08:07 +0200
|
19971
|
+
Processing by AwesomeTranslations::GroupsController#update as HTML
|
19972
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"ywH/slZeBzhCWMWCo8Y99f2GzuS3MbdlfSfdXE6wnHo=", "t"=>{"date.formats.default"=>{"da"=>"", "de"=>"", "en"=>"%Y-%m-%d"}, "date.formats.short"=>{"da"=>"", "de"=>"", "en"=>"%b %d"}, "date.formats.long"=>{"da"=>"", "de"=>"", "en"=>"%B %d, %Y"}, "date.day_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"Mandag", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}, "3"=>{"da"=>"", "de"=>"", "en"=>""}, "4"=>{"da"=>"", "de"=>"", "en"=>""}, "5"=>{"da"=>"", "de"=>"", "en"=>""}, "6"=>{"da"=>"", "de"=>"", "en"=>""}}, "date.abbr_day_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}, "3"=>{"da"=>"", "de"=>"", "en"=>""}, "4"=>{"da"=>"", "de"=>"", "en"=>""}, "5"=>{"da"=>"", "de"=>"", "en"=>""}, "6"=>{"da"=>"", "de"=>"", "en"=>""}}, "date.month_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}, "3"=>{"da"=>"", "de"=>"", "en"=>""}, "4"=>{"da"=>"", "de"=>"", "en"=>""}, "5"=>{"da"=>"", "de"=>"", "en"=>""}, "6"=>{"da"=>"", "de"=>"", "en"=>""}, "7"=>{"da"=>"", "de"=>"", "en"=>""}, "8"=>{"da"=>"", "de"=>"", "en"=>""}, "9"=>{"da"=>"", "de"=>"", "en"=>""}, "10"=>{"da"=>"", "de"=>"", "en"=>""}, "11"=>{"da"=>"", "de"=>"", "en"=>""}, "12"=>{"da"=>"", "de"=>"", "en"=>""}}, "date.abbr_month_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}, "3"=>{"da"=>"", "de"=>"", "en"=>""}, "4"=>{"da"=>"", "de"=>"", "en"=>""}, "5"=>{"da"=>"", "de"=>"", "en"=>""}, "6"=>{"da"=>"", "de"=>"", "en"=>""}, "7"=>{"da"=>"", "de"=>"", "en"=>""}, "8"=>{"da"=>"", "de"=>"", "en"=>""}, "9"=>{"da"=>"", "de"=>"", "en"=>""}, "10"=>{"da"=>"", "de"=>"", "en"=>""}, "11"=>{"da"=>"", "de"=>"", "en"=>""}, "12"=>{"da"=>"", "de"=>"", "en"=>""}}, "date.order"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>""}, "2"=>{"da"=>"", "de"=>"", "en"=>""}}, "time.formats.default"=>{"da"=>"", "de"=>"", "en"=>"%a, %d %b %Y %H:%M:%S %z"}, "time.formats.short"=>{"da"=>"", "de"=>"", "en"=>"%d %b %H:%M"}, "time.formats.long"=>{"da"=>"", "de"=>"", "en"=>"%B %d, %Y %H:%M"}, "time.am"=>{"da"=>"", "de"=>"", "en"=>"am"}, "time.pm"=>{"da"=>"", "de"=>"", "en"=>"pm"}}, "commit"=>"Save", "handler_id"=>"rails_handler", "id"=>"date_time"}
|
19973
|
+
Redirected to http://localhost:3000/awesome_translations/handlers/rails_handler/groups/date_time
|
19974
|
+
Completed 302 Found in 65ms (ActiveRecord: 0.0ms)
|
19975
|
+
|
19976
|
+
|
19977
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 15:08:07 +0200
|
19978
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19979
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
19980
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (18.3ms)
|
19981
|
+
Completed 200 OK in 26ms (Views: 25.9ms | ActiveRecord: 0.0ms)
|
19982
|
+
|
19983
|
+
|
19984
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:08:07 +0200
|
19985
|
+
|
19986
|
+
|
19987
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:08:07 +0200
|
19988
|
+
|
19989
|
+
|
19990
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 15:08:07 +0200
|
19991
|
+
|
19992
|
+
|
19993
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:08:07 +0200
|
19994
|
+
|
19995
|
+
|
19996
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 15:10:07 +0200
|
19997
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19998
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
19999
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
20000
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (12.1ms)
|
20001
|
+
Completed 500 Internal Server Error in 18ms
|
20002
|
+
|
20003
|
+
ActionView::Template::Error (undefined method `[]' for true:TrueClass):
|
20004
|
+
13: .translation-key-text= translation.key_show_with_fallback
|
20005
|
+
14:
|
20006
|
+
15: - I18n.available_locales.each do |locale|
|
20007
|
+
16: %td.translation= text_field "t", "#{translation.key}[#{locale}]", class: "translation-input", lang: locale, value: translation.value(locale: locale)
|
20008
|
+
17:
|
20009
|
+
18: - if translation.file_line_content? || translation.default.present?
|
20010
|
+
19: %tr.line-content-row
|
20011
|
+
/media/storage/Dev/Rails/awesome_translations/app/models/awesome_translations/translation.rb:98:in `block in value_for?'
|
20012
|
+
i18n (0.6.11) lib/i18n.rb:256:in `with_locale'
|
20013
|
+
/media/storage/Dev/Rails/awesome_translations/app/models/awesome_translations/translation.rb:98:in `value_for?'
|
20014
|
+
/media/storage/Dev/Rails/awesome_translations/app/models/awesome_translations/translation.rb:107:in `value'
|
20015
|
+
/media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml:16:in `block (3 levels) in __media_storage__ev__ails_awesome_translations_app_views_awesome_translations_groups_show_html_haml__2007115868407088612_24796060'
|
20016
|
+
/media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml:15:in `each'
|
20017
|
+
/media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml:15:in `block (2 levels) in __media_storage__ev__ails_awesome_translations_app_views_awesome_translations_groups_show_html_haml__2007115868407088612_24796060'
|
20018
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:117:in `<<'
|
20019
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:117:in `block (2 levels) in to_enum'
|
20020
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:221:in `block in yield_rest'
|
20021
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:218:in `synchronize'
|
20022
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:218:in `yield_rest'
|
20023
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:116:in `block in to_enum'
|
20024
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:54:in `each'
|
20025
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:54:in `each'
|
20026
|
+
array_enumerator (0.0.7) lib/array_enumerator.rb:54:in `each'
|
20027
|
+
/media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml:10:in `block in __media_storage__ev__ails_awesome_translations_app_views_awesome_translations_groups_show_html_haml__2007115868407088612_24796060'
|
20028
|
+
haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `call'
|
20029
|
+
haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml'
|
20030
|
+
haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs'
|
20031
|
+
haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml'
|
20032
|
+
actionpack (4.0.10) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
|
20033
|
+
actionpack (4.0.10) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer'
|
20034
|
+
haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss'
|
20035
|
+
actionpack (4.0.10) lib/action_view/helpers/capture_helper.rb:38:in `capture'
|
20036
|
+
haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml'
|
20037
|
+
actionpack (4.0.10) lib/action_view/helpers/form_helper.rb:435:in `form_for'
|
20038
|
+
haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml'
|
20039
|
+
haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss'
|
20040
|
+
/media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml:3:in `__media_storage__ev__ails_awesome_translations_app_views_awesome_translations_groups_show_html_haml__2007115868407088612_24796060'
|
20041
|
+
actionpack (4.0.10) lib/action_view/template.rb:143:in `block in render'
|
20042
|
+
activesupport (4.0.10) lib/active_support/notifications.rb:161:in `instrument'
|
20043
|
+
actionpack (4.0.10) lib/action_view/template.rb:141:in `render'
|
20044
|
+
actionpack (4.0.10) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
|
20045
|
+
actionpack (4.0.10) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
20046
|
+
activesupport (4.0.10) lib/active_support/notifications.rb:159:in `block in instrument'
|
20047
|
+
activesupport (4.0.10) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
20048
|
+
activesupport (4.0.10) lib/active_support/notifications.rb:159:in `instrument'
|
20049
|
+
actionpack (4.0.10) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
20050
|
+
actionpack (4.0.10) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
|
20051
|
+
actionpack (4.0.10) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
|
20052
|
+
actionpack (4.0.10) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
20053
|
+
actionpack (4.0.10) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
20054
|
+
actionpack (4.0.10) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
20055
|
+
actionpack (4.0.10) lib/action_view/renderer/renderer.rb:23:in `render'
|
20056
|
+
actionpack (4.0.10) lib/abstract_controller/rendering.rb:127:in `_render_template'
|
20057
|
+
actionpack (4.0.10) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
20058
|
+
actionpack (4.0.10) lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
20059
|
+
actionpack (4.0.10) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
20060
|
+
actionpack (4.0.10) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
20061
|
+
actionpack (4.0.10) lib/abstract_controller/rendering.rb:97:in `render'
|
20062
|
+
actionpack (4.0.10) lib/action_controller/metal/rendering.rb:16:in `render'
|
20063
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
20064
|
+
activesupport (4.0.10) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
20065
|
+
/home/kaspernj/.rvm/rubies/ruby-2.1-head/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
|
20066
|
+
activesupport (4.0.10) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
20067
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
20068
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
20069
|
+
activerecord (4.0.10) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
20070
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
20071
|
+
actionpack (4.0.10) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
20072
|
+
actionpack (4.0.10) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
20073
|
+
actionpack (4.0.10) lib/abstract_controller/base.rb:189:in `process_action'
|
20074
|
+
actionpack (4.0.10) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
20075
|
+
actionpack (4.0.10) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
20076
|
+
activesupport (4.0.10) lib/active_support/callbacks.rb:393:in `_run__521590225129585177__process_action__callbacks'
|
20077
|
+
activesupport (4.0.10) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
20078
|
+
actionpack (4.0.10) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
20079
|
+
actionpack (4.0.10) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
20080
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
20081
|
+
activesupport (4.0.10) lib/active_support/notifications.rb:159:in `block in instrument'
|
20082
|
+
activesupport (4.0.10) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
20083
|
+
activesupport (4.0.10) lib/active_support/notifications.rb:159:in `instrument'
|
20084
|
+
actionpack (4.0.10) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
20085
|
+
actionpack (4.0.10) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
20086
|
+
activerecord (4.0.10) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
20087
|
+
actionpack (4.0.10) lib/abstract_controller/base.rb:136:in `process'
|
20088
|
+
actionpack (4.0.10) lib/abstract_controller/rendering.rb:44:in `process'
|
20089
|
+
actionpack (4.0.10) lib/action_controller/metal.rb:195:in `dispatch'
|
20090
|
+
actionpack (4.0.10) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
20091
|
+
actionpack (4.0.10) lib/action_controller/metal.rb:231:in `block in action'
|
20092
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
20093
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
20094
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
20095
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
20096
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:59:in `each'
|
20097
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:59:in `call'
|
20098
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
20099
|
+
railties (4.0.10) lib/rails/engine.rb:511:in `call'
|
20100
|
+
railties (4.0.10) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
20101
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
20102
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:59:in `each'
|
20103
|
+
actionpack (4.0.10) lib/action_dispatch/journey/router.rb:59:in `call'
|
20104
|
+
actionpack (4.0.10) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
20105
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
20106
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
20107
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
20108
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
20109
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
20110
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
20111
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
20112
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
20113
|
+
activerecord (4.0.10) lib/active_record/query_cache.rb:36:in `call'
|
20114
|
+
activerecord (4.0.10) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
20115
|
+
activerecord (4.0.10) lib/active_record/migration.rb:373:in `call'
|
20116
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
20117
|
+
activesupport (4.0.10) lib/active_support/callbacks.rb:373:in `_run__2417256767784379598__call__callbacks'
|
20118
|
+
activesupport (4.0.10) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
20119
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
20120
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
20121
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
20122
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
20123
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
20124
|
+
railties (4.0.10) lib/rails/rack/logger.rb:38:in `call_app'
|
20125
|
+
railties (4.0.10) lib/rails/rack/logger.rb:20:in `block in call'
|
20126
|
+
activesupport (4.0.10) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
20127
|
+
activesupport (4.0.10) lib/active_support/tagged_logging.rb:26:in `tagged'
|
20128
|
+
activesupport (4.0.10) lib/active_support/tagged_logging.rb:68:in `tagged'
|
20129
|
+
railties (4.0.10) lib/rails/rack/logger.rb:20:in `call'
|
20130
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
20131
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
20132
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
20133
|
+
activesupport (4.0.10) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
20134
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
20135
|
+
actionpack (4.0.10) lib/action_dispatch/middleware/static.rb:64:in `call'
|
20136
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
20137
|
+
railties (4.0.10) lib/rails/engine.rb:511:in `call'
|
20138
|
+
railties (4.0.10) lib/rails/application.rb:97:in `call'
|
20139
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
20140
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
20141
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
20142
|
+
/home/kaspernj/.rvm/rubies/ruby-2.1-head/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
20143
|
+
/home/kaspernj/.rvm/rubies/ruby-2.1-head/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
20144
|
+
/home/kaspernj/.rvm/rubies/ruby-2.1-head/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
20145
|
+
|
20146
|
+
|
20147
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
20148
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.5ms)
|
20149
|
+
Rendered /home/kaspernj/.rvm/gems/ruby-2.1-head/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.7ms)
|
20150
|
+
|
20151
|
+
|
20152
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 15:11:15 +0200
|
20153
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
20154
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
20155
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
20156
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (44.9ms)
|
20157
|
+
Completed 200 OK in 167ms (Views: 164.3ms | ActiveRecord: 0.0ms)
|
20158
|
+
|
20159
|
+
|
20160
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:11:16 +0200
|
20161
|
+
|
20162
|
+
|
20163
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:11:16 +0200
|
20164
|
+
|
20165
|
+
|
20166
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 15:11:16 +0200
|
20167
|
+
|
20168
|
+
|
20169
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:11:16 +0200
|
20170
|
+
|
20171
|
+
|
20172
|
+
Started PUT "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 15:11:20 +0200
|
20173
|
+
Processing by AwesomeTranslations::GroupsController#update as HTML
|
20174
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"ywH/slZeBzhCWMWCo8Y99f2GzuS3MbdlfSfdXE6wnHo=", "t"=>{"date.formats.default"=>{"da"=>"", "de"=>"", "en"=>"%Y-%m-%d"}, "date.formats.short"=>{"da"=>"", "de"=>"", "en"=>"%b %d"}, "date.formats.long"=>{"da"=>"", "de"=>"", "en"=>"%B %d, %Y"}, "date.day_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>"Sunday"}, "1"=>{"da"=>"Mandag", "de"=>"", "en"=>"Monday"}, "2"=>{"da"=>"Tirsdag", "de"=>"", "en"=>"Tuesday"}, "3"=>{"da"=>"", "de"=>"", "en"=>"Wednesday"}, "4"=>{"da"=>"Torsdag", "de"=>"", "en"=>"Thursday"}, "5"=>{"da"=>"", "de"=>"", "en"=>"Friday"}, "6"=>{"da"=>"", "de"=>"", "en"=>"Saturday"}}, "date.abbr_day_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>"Sun"}, "1"=>{"da"=>"", "de"=>"", "en"=>"Mon"}, "2"=>{"da"=>"", "de"=>"", "en"=>"Tue"}, "3"=>{"da"=>"", "de"=>"", "en"=>"Wed"}, "4"=>{"da"=>"", "de"=>"", "en"=>"Thu"}, "5"=>{"da"=>"", "de"=>"", "en"=>"Fri"}, "6"=>{"da"=>"", "de"=>"", "en"=>"Sat"}}, "date.month_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>"January"}, "2"=>{"da"=>"", "de"=>"", "en"=>"February"}, "3"=>{"da"=>"", "de"=>"", "en"=>"March"}, "4"=>{"da"=>"", "de"=>"", "en"=>"April"}, "5"=>{"da"=>"", "de"=>"", "en"=>"May"}, "6"=>{"da"=>"", "de"=>"", "en"=>"June"}, "7"=>{"da"=>"", "de"=>"", "en"=>"July"}, "8"=>{"da"=>"", "de"=>"", "en"=>"August"}, "9"=>{"da"=>"", "de"=>"", "en"=>"September"}, "10"=>{"da"=>"", "de"=>"", "en"=>"October"}, "11"=>{"da"=>"", "de"=>"", "en"=>"November"}, "12"=>{"da"=>"", "de"=>"", "en"=>"December"}}, "date.abbr_month_names"=>{"0"=>{"da"=>"", "de"=>"", "en"=>""}, "1"=>{"da"=>"", "de"=>"", "en"=>"Jan"}, "2"=>{"da"=>"", "de"=>"", "en"=>"Feb"}, "3"=>{"da"=>"", "de"=>"", "en"=>"Mar"}, "4"=>{"da"=>"", "de"=>"", "en"=>"Apr"}, "5"=>{"da"=>"", "de"=>"", "en"=>"May"}, "6"=>{"da"=>"", "de"=>"", "en"=>"Jun"}, "7"=>{"da"=>"", "de"=>"", "en"=>"Jul"}, "8"=>{"da"=>"", "de"=>"", "en"=>"Aug"}, "9"=>{"da"=>"", "de"=>"", "en"=>"Sep"}, "10"=>{"da"=>"", "de"=>"", "en"=>"Oct"}, "11"=>{"da"=>"", "de"=>"", "en"=>"Nov"}, "12"=>{"da"=>"", "de"=>"", "en"=>"Dec"}}, "date.order"=>{"0"=>{"da"=>"", "de"=>"", "en"=>"year"}, "1"=>{"da"=>"", "de"=>"", "en"=>"month"}, "2"=>{"da"=>"", "de"=>"", "en"=>"day"}}, "time.formats.default"=>{"da"=>"", "de"=>"", "en"=>"%a, %d %b %Y %H:%M:%S %z"}, "time.formats.short"=>{"da"=>"", "de"=>"", "en"=>"%d %b %H:%M"}, "time.formats.long"=>{"da"=>"", "de"=>"", "en"=>"%B %d, %Y %H:%M"}, "time.am"=>{"da"=>"", "de"=>"", "en"=>"am"}, "time.pm"=>{"da"=>"", "de"=>"", "en"=>"pm"}}, "commit"=>"Save", "handler_id"=>"rails_handler", "id"=>"date_time"}
|
20175
|
+
Redirected to http://localhost:3000/awesome_translations/handlers/rails_handler/groups/date_time
|
20176
|
+
Completed 302 Found in 90ms (ActiveRecord: 0.0ms)
|
20177
|
+
|
20178
|
+
|
20179
|
+
Started GET "/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-06-13 15:11:20 +0200
|
20180
|
+
Processing by AwesomeTranslations::GroupsController#show as HTML
|
20181
|
+
Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"}
|
20182
|
+
Rendered /media/storage/Dev/Rails/awesome_translations/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (54.5ms)
|
20183
|
+
Completed 200 OK in 64ms (Views: 62.9ms | ActiveRecord: 0.0ms)
|
20184
|
+
|
20185
|
+
|
20186
|
+
Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:11:20 +0200
|
20187
|
+
|
20188
|
+
|
20189
|
+
Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:11:20 +0200
|
20190
|
+
|
20191
|
+
|
20192
|
+
Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-06-13 15:11:20 +0200
|
20193
|
+
|
20194
|
+
|
20195
|
+
Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-06-13 15:11:20 +0200
|