i18n_form_helper 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +38 -0
  5. data/lib/i18n_form_helper/form_select_options.rb +1292 -0
  6. data/lib/i18n_form_helper/version.rb +3 -0
  7. data/lib/i18n_form_helper.rb +35 -0
  8. data/lib/tasks/i18n_form_helper_tasks.rake +4 -0
  9. data/test/dummy/README.rdoc +261 -0
  10. data/test/dummy/Rakefile +7 -0
  11. data/test/dummy/app/assets/javascripts/application.js +13 -0
  12. data/test/dummy/app/assets/javascripts/languages.js +2 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  14. data/test/dummy/app/assets/stylesheets/languages.css +4 -0
  15. data/test/dummy/app/controllers/application_controller.rb +3 -0
  16. data/test/dummy/app/controllers/languages_controller.rb +4 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/helpers/languages_helper.rb +2 -0
  19. data/test/dummy/app/models/language.rb +3 -0
  20. data/test/dummy/app/views/languages/index.html.erb +49 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +21 -0
  22. data/test/dummy/config/application.rb +59 -0
  23. data/test/dummy/config/boot.rb +10 -0
  24. data/test/dummy/config/database.yml +25 -0
  25. data/test/dummy/config/environment.rb +5 -0
  26. data/test/dummy/config/environments/development.rb +37 -0
  27. data/test/dummy/config/environments/production.rb +67 -0
  28. data/test/dummy/config/environments/test.rb +37 -0
  29. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  30. data/test/dummy/config/initializers/inflections.rb +15 -0
  31. data/test/dummy/config/initializers/mime_types.rb +5 -0
  32. data/test/dummy/config/initializers/secret_token.rb +7 -0
  33. data/test/dummy/config/initializers/session_store.rb +8 -0
  34. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  35. data/test/dummy/config/locales/en.yml +5 -0
  36. data/test/dummy/config/routes.rb +60 -0
  37. data/test/dummy/config.ru +4 -0
  38. data/test/dummy/db/development.sqlite3 +0 -0
  39. data/test/dummy/db/migrate/20131217053022_create_languages.rb +9 -0
  40. data/test/dummy/db/schema.rb +22 -0
  41. data/test/dummy/db/test.sqlite3 +0 -0
  42. data/test/dummy/log/development.log +313 -0
  43. data/test/dummy/log/test.log +1318 -0
  44. data/test/dummy/public/404.html +26 -0
  45. data/test/dummy/public/422.html +26 -0
  46. data/test/dummy/public/500.html +25 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/script/rails +6 -0
  49. data/test/dummy/test/fixtures/languages.yml +7 -0
  50. data/test/dummy/test/functional/languages_controller_test.rb +9 -0
  51. data/test/dummy/test/unit/helpers/languages_helper_test.rb +4 -0
  52. data/test/dummy/test/unit/language_test.rb +7 -0
  53. data/test/dummy/tmp/cache/assets/CA2/BF0/sprockets%2Fb56ac30a59512f109e072c6c351195a8 +0 -0
  54. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  55. data/test/dummy/tmp/cache/assets/D2F/B50/sprockets%2Feb222894dcb95bae4f2a7e227222b006 +0 -0
  56. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  57. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  58. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  59. data/test/dummy/tmp/cache/assets/DAA/470/sprockets%2Fafb782256c9207973dfb6e63becb9b5c +0 -0
  60. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  61. data/test/dummy/tmp/cache/assets/DEA/820/sprockets%2Fa3eb909f1fba592b6a225bc63abc1c2e +0 -0
  62. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  63. data/test/dummy/tmp/capybara/capybara-201312171702124011360920.html +203 -0
  64. data/test/dummy/tmp/capybara/capybara-201312171702595894767062.html +203 -0
  65. data/test/dummy/tmp/capybara/capybara-201312171703428962416286.html +203 -0
  66. data/test/dummy/tmp/capybara/capybara-201312171704117555796382.html +203 -0
  67. data/test/dummy/tmp/capybara/capybara-201312172053002673059159.html +1088 -0
  68. data/test/dummy/tmp/capybara/capybara-201312172056035791412287.html +1088 -0
  69. data/test/dummy/tmp/capybara/capybara-201312172100198351601528.html +1088 -0
  70. data/test/dummy/tmp/capybara/capybara-201312172107323114657460.html +1088 -0
  71. data/test/dummy/tmp/capybara/capybara-201312172108211650964312.html +1090 -0
  72. data/test/dummy/tmp/capybara/capybara-20131217211129299664262.html +1091 -0
  73. data/test/dummy/tmp/capybara/capybara-201312172113193631383614.html +1091 -0
  74. data/test/dummy/tmp/capybara/capybara-201312172117421338188983.html +1088 -0
  75. data/test/form_select_options_test.rb +38 -0
  76. data/test/i18n_form_helper_test.rb +20 -0
  77. data/test/test_helper.rb +22 -0
  78. metadata +203 -0
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'ab5c1bb384b5d74c6e332cdfa656b97abbf75ee695f4d908f6dae676f22dbe82be3e3da50ef1f45629f7a65e010b35ecf556fafa593acd9654f0d6e939281094'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,60 @@
1
+ Dummy::Application.routes.draw do
2
+ resources :languages
3
+
4
+ # The priority is based upon order of creation:
5
+ # first created -> highest priority.
6
+
7
+ # Sample of regular route:
8
+ # match 'products/:id' => 'catalog#view'
9
+ # Keep in mind you can assign values other than :controller and :action
10
+
11
+ # Sample of named route:
12
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
13
+ # This route can be invoked with purchase_url(:id => product.id)
14
+
15
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
16
+ # resources :products
17
+
18
+ # Sample resource route with options:
19
+ # resources :products do
20
+ # member do
21
+ # get 'short'
22
+ # post 'toggle'
23
+ # end
24
+ #
25
+ # collection do
26
+ # get 'sold'
27
+ # end
28
+ # end
29
+
30
+ # Sample resource route with sub-resources:
31
+ # resources :products do
32
+ # resources :comments, :sales
33
+ # resource :seller
34
+ # end
35
+
36
+ # Sample resource route with more complex sub-resources
37
+ # resources :products do
38
+ # resources :comments
39
+ # resources :sales do
40
+ # get 'recent', :on => :collection
41
+ # end
42
+ # end
43
+
44
+ # Sample resource route within a namespace:
45
+ # namespace :admin do
46
+ # # Directs /admin/products/* to Admin::ProductsController
47
+ # # (app/controllers/admin/products_controller.rb)
48
+ # resources :products
49
+ # end
50
+
51
+ # You can have the root of your site routed with "root"
52
+ # just remember to delete public/index.html.
53
+ root :to => 'languages#index'
54
+
55
+ # See how all your routes lay out with "rake routes"
56
+
57
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
58
+ # Note: This route will make all actions in every controller accessible via GET requests.
59
+ # match ':controller(/:action(/:id))(.:format)'
60
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
Binary file
@@ -0,0 +1,9 @@
1
+ class CreateLanguages < ActiveRecord::Migration
2
+ def change
3
+ create_table :languages do |t|
4
+ t.string :name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,22 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20131217053022) do
15
+
16
+ create_table "languages", :force => true do |t|
17
+ t.string "name"
18
+ t.datetime "created_at", :null => false
19
+ t.datetime "updated_at", :null => false
20
+ end
21
+
22
+ end
Binary file
@@ -0,0 +1,313 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+  (0.2ms) select sqlite_version(*)
4
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
+  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
7
+ Connecting to database specified by database.yml
8
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
9
+  (0.1ms) select sqlite_version(*)
10
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11
+  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12
+  (0.1ms) SELECT version FROM "schema_migrations"
13
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
14
+ Connecting to database specified by database.yml
15
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16
+  (0.1ms) select sqlite_version(*)
17
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
18
+  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19
+  (0.1ms) SELECT version FROM "schema_migrations"
20
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
21
+ Connecting to database specified by database.yml
22
+ Connecting to database specified by database.yml
23
+  (18.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
24
+ Migrating to CreateLanguages (20131217053022)
25
+  (0.1ms) select sqlite_version(*)
26
+  (0.1ms) begin transaction
27
+  (22.0ms) CREATE TABLE "languages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
28
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131217053022')
29
+  (67.8ms) commit transaction
30
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
31
+ Connecting to database specified by database.yml
32
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
33
+  (7.7ms) select sqlite_version(*)
34
+  (3.1ms) CREATE TABLE "languages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
35
+  (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
36
+  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
37
+  (0.1ms) SELECT version FROM "schema_migrations"
38
+  (11.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20131217053022')
39
+
40
+
41
+ Started GET "/" for 127.0.0.1 at 2013-12-17 21:20:47 +1100
42
+ Connecting to database specified by database.yml
43
+
44
+ ActionController::RoutingError (No route matches [GET] "/"):
45
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
46
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
47
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
48
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
49
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
50
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
51
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
52
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
53
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
54
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
55
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
56
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
57
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
58
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
59
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
60
+ railties (3.2.16) lib/rails/rack/log_tailer.rb:17:in `call'
61
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
62
+ /Users/melliott/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
63
+ /Users/melliott/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
64
+ /Users/melliott/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
65
+
66
+
67
+ Rendered /Users/melliott/.rvm/gems/ruby-1.9.3-p448@rails3/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.0ms)
68
+
69
+
70
+ Started GET "/languages" for 127.0.0.1 at 2013-12-17 21:21:05 +1100
71
+ Processing by LanguagesController#index as HTML
72
+ Rendered languages/index.html.erb within layouts/application (634.3ms)
73
+ Compiled languages.css (0ms) (pid 29747)
74
+ Compiled application.css (134ms) (pid 29747)
75
+ Completed 500 Internal Server Error in 1370.6ms
76
+
77
+ ActionView::Template::Error (couldn't find file 'jquery'
78
+ (in /Users/melliott/work/plugins/i18n_form_helper/test/dummy/app/assets/javascripts/application.js:13)):
79
+ 3: <head>
80
+ 4: <title>Dummy</title>
81
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
82
+ 6: <%= javascript_include_tag "application" %>
83
+ 7: <%= csrf_meta_tags %>
84
+ 8: <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
85
+ 9: </head>
86
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__619188524507183616_70329455556820'
87
+
88
+
89
+ Rendered /Users/melliott/.rvm/gems/ruby-1.9.3-p448@rails3/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
90
+ Rendered /Users/melliott/.rvm/gems/ruby-1.9.3-p448@rails3/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
91
+ Rendered /Users/melliott/.rvm/gems/ruby-1.9.3-p448@rails3/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (142.0ms)
92
+
93
+
94
+ Started GET "/languages" for 127.0.0.1 at 2013-12-17 21:21:37 +1100
95
+ Processing by LanguagesController#index as HTML
96
+ Rendered languages/index.html.erb within layouts/application (20.9ms)
97
+ Compiled languages.js (0ms) (pid 29747)
98
+ Compiled application.js (26ms) (pid 29747)
99
+ Completed 200 OK in 170.5ms (Views: 170.2ms | ActiveRecord: 0.0ms)
100
+
101
+
102
+ Started GET "/assets/languages.js?body=1" for 127.0.0.1 at 2013-12-17 21:21:38 +1100
103
+ Served asset /languages.js - 200 OK (31ms)
104
+
105
+
106
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-17 21:21:38 +1100
107
+ Served asset /application.js - 200 OK (2ms)
108
+
109
+
110
+ Started GET "/assets/languages.css?body=1" for 127.0.0.1 at 2013-12-17 21:21:38 +1100
111
+ Served asset /languages.css - 200 OK (2ms)
112
+
113
+
114
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-17 21:21:38 +1100
115
+ Served asset /application.css - 200 OK (5ms)
116
+
117
+
118
+ Started GET "/languages" for 127.0.0.1 at 2013-12-17 21:28:38 +1100
119
+ Processing by LanguagesController#index as HTML
120
+ Rendered languages/index.html.erb within layouts/application (24.7ms)
121
+ Completed 200 OK in 29.0ms (Views: 28.8ms | ActiveRecord: 0.0ms)
122
+
123
+
124
+ Started GET "/assets/languages.css?body=1" for 127.0.0.1 at 2013-12-17 21:28:38 +1100
125
+ Served asset /languages.css - 304 Not Modified (0ms)
126
+
127
+
128
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-17 21:28:38 +1100
129
+ Served asset /application.js - 304 Not Modified (0ms)
130
+
131
+
132
+ Started GET "/assets/languages.js?body=1" for 127.0.0.1 at 2013-12-17 21:28:38 +1100
133
+ Served asset /languages.js - 304 Not Modified (0ms)
134
+
135
+
136
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-17 21:28:38 +1100
137
+ Served asset /application.css - 304 Not Modified (0ms)
138
+
139
+
140
+ Started GET "/languages" for 127.0.0.1 at 2013-12-17 21:29:48 +1100
141
+ Processing by LanguagesController#index as HTML
142
+ Rendered languages/index.html.erb within layouts/application (32.6ms)
143
+ Completed 200 OK in 38.7ms (Views: 38.5ms | ActiveRecord: 0.0ms)
144
+
145
+
146
+ Started GET "/assets/languages.js?body=1" for 127.0.0.1 at 2013-12-17 21:29:48 +1100
147
+ Served asset /languages.js - 304 Not Modified (0ms)
148
+
149
+
150
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-17 21:29:48 +1100
151
+ Served asset /application.js - 304 Not Modified (0ms)
152
+
153
+
154
+ Started GET "/assets/languages.css?body=1" for 127.0.0.1 at 2013-12-17 21:29:48 +1100
155
+ Served asset /languages.css - 304 Not Modified (0ms)
156
+
157
+
158
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-17 21:29:48 +1100
159
+ Served asset /application.css - 304 Not Modified (0ms)
160
+
161
+
162
+ Started GET "/languages" for 127.0.0.1 at 2013-12-17 21:30:06 +1100
163
+ Processing by LanguagesController#index as HTML
164
+ Rendered languages/index.html.erb within layouts/application (96.6ms)
165
+ Completed 200 OK in 100.7ms (Views: 100.5ms | ActiveRecord: 0.0ms)
166
+
167
+
168
+ Started GET "/assets/languages.css?body=1" for 127.0.0.1 at 2013-12-17 21:30:07 +1100
169
+ Served asset /languages.css - 304 Not Modified (0ms)
170
+
171
+
172
+ Started GET "/assets/languages.js?body=1" for 127.0.0.1 at 2013-12-17 21:30:07 +1100
173
+ Served asset /languages.js - 304 Not Modified (0ms)
174
+
175
+
176
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-17 21:30:07 +1100
177
+ Served asset /application.js - 304 Not Modified (0ms)
178
+
179
+
180
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-17 21:30:07 +1100
181
+ Served asset /application.css - 304 Not Modified (0ms)
182
+
183
+
184
+ Started GET "/languages" for 127.0.0.1 at 2013-12-17 21:31:48 +1100
185
+ Processing by LanguagesController#index as HTML
186
+ Rendered languages/index.html.erb within layouts/application (26.2ms)
187
+ Completed 200 OK in 30.4ms (Views: 30.2ms | ActiveRecord: 0.0ms)
188
+
189
+
190
+ Started GET "/assets/languages.css?body=1" for 127.0.0.1 at 2013-12-17 21:31:48 +1100
191
+ Served asset /languages.css - 304 Not Modified (0ms)
192
+
193
+
194
+ Started GET "/assets/languages.js?body=1" for 127.0.0.1 at 2013-12-17 21:31:48 +1100
195
+ Served asset /languages.js - 304 Not Modified (0ms)
196
+
197
+
198
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-17 21:31:48 +1100
199
+ Served asset /application.js - 304 Not Modified (0ms)
200
+
201
+
202
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-17 21:31:48 +1100
203
+ Served asset /application.css - 304 Not Modified (0ms)
204
+
205
+
206
+ Started GET "/languages" for 127.0.0.1 at 2013-12-17 21:32:53 +1100
207
+ Processing by LanguagesController#index as HTML
208
+ Rendered languages/index.html.erb within layouts/application (27.1ms)
209
+ Completed 200 OK in 31.5ms (Views: 31.3ms | ActiveRecord: 0.0ms)
210
+
211
+
212
+ Started GET "/assets/languages.js?body=1" for 127.0.0.1 at 2013-12-17 21:32:54 +1100
213
+ Served asset /languages.js - 304 Not Modified (0ms)
214
+
215
+
216
+ Started GET "/assets/languages.css?body=1" for 127.0.0.1 at 2013-12-17 21:32:54 +1100
217
+ Served asset /languages.css - 304 Not Modified (0ms)
218
+
219
+
220
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-17 21:32:54 +1100
221
+ Served asset /application.js - 304 Not Modified (0ms)
222
+
223
+
224
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-17 21:32:54 +1100
225
+ Served asset /application.css - 304 Not Modified (0ms)
226
+
227
+
228
+ Started GET "/languages" for 127.0.0.1 at 2013-12-17 21:33:26 +1100
229
+ Processing by LanguagesController#index as HTML
230
+ Rendered languages/index.html.erb within layouts/application (102.1ms)
231
+ Completed 200 OK in 109.9ms (Views: 109.6ms | ActiveRecord: 0.0ms)
232
+
233
+
234
+ Started GET "/assets/languages.css?body=1" for 127.0.0.1 at 2013-12-17 21:33:26 +1100
235
+ Served asset /languages.css - 304 Not Modified (0ms)
236
+
237
+
238
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-17 21:33:26 +1100
239
+ Served asset /application.js - 304 Not Modified (0ms)
240
+
241
+
242
+ Started GET "/assets/languages.js?body=1" for 127.0.0.1 at 2013-12-17 21:33:26 +1100
243
+ Served asset /languages.js - 304 Not Modified (0ms)
244
+
245
+
246
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-17 21:33:26 +1100
247
+ Served asset /application.css - 304 Not Modified (0ms)
248
+
249
+
250
+ Started GET "/languages" for 127.0.0.1 at 2013-12-17 21:36:07 +1100
251
+ Processing by LanguagesController#index as HTML
252
+ Rendered languages/index.html.erb within layouts/application (27.3ms)
253
+ Completed 200 OK in 43.2ms (Views: 43.0ms | ActiveRecord: 0.0ms)
254
+
255
+
256
+ Started GET "/assets/languages.css?body=1" for 127.0.0.1 at 2013-12-17 21:36:07 +1100
257
+ Served asset /languages.css - 304 Not Modified (0ms)
258
+
259
+
260
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-17 21:36:07 +1100
261
+ Served asset /application.js - 304 Not Modified (0ms)
262
+
263
+
264
+ Started GET "/assets/languages.js?body=1" for 127.0.0.1 at 2013-12-17 21:36:07 +1100
265
+ Served asset /languages.js - 304 Not Modified (0ms)
266
+
267
+
268
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-17 21:36:07 +1100
269
+ Served asset /application.css - 304 Not Modified (0ms)
270
+
271
+
272
+ Started GET "/languages" for 127.0.0.1 at 2013-12-17 21:56:06 +1100
273
+ Processing by LanguagesController#index as HTML
274
+ Rendered languages/index.html.erb within layouts/application (28.1ms)
275
+ Completed 200 OK in 70.6ms (Views: 70.3ms | ActiveRecord: 0.0ms)
276
+
277
+
278
+ Started GET "/assets/languages.js?body=1" for 127.0.0.1 at 2013-12-17 21:56:08 +1100
279
+ Served asset /languages.js - 304 Not Modified (0ms)
280
+
281
+
282
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-17 21:56:08 +1100
283
+ Served asset /application.js - 304 Not Modified (0ms)
284
+
285
+
286
+ Started GET "/assets/languages.css?body=1" for 127.0.0.1 at 2013-12-17 21:56:08 +1100
287
+ Served asset /languages.css - 304 Not Modified (0ms)
288
+
289
+
290
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-17 21:56:08 +1100
291
+ Served asset /application.css - 304 Not Modified (0ms)
292
+
293
+
294
+ Started GET "/languages" for 127.0.0.1 at 2013-12-17 21:56:35 +1100
295
+ Processing by LanguagesController#index as HTML
296
+ Rendered languages/index.html.erb within layouts/application (82.8ms)
297
+ Completed 200 OK in 92.1ms (Views: 91.9ms | ActiveRecord: 0.0ms)
298
+
299
+
300
+ Started GET "/assets/languages.css?body=1" for 127.0.0.1 at 2013-12-17 21:56:35 +1100
301
+ Served asset /languages.css - 304 Not Modified (0ms)
302
+
303
+
304
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-17 21:56:35 +1100
305
+ Served asset /application.js - 304 Not Modified (0ms)
306
+
307
+
308
+ Started GET "/assets/languages.js?body=1" for 127.0.0.1 at 2013-12-17 21:56:36 +1100
309
+ Served asset /languages.js - 304 Not Modified (0ms)
310
+
311
+
312
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-17 21:56:36 +1100
313
+ Served asset /application.css - 304 Not Modified (0ms)