language_engine 0.0.5 → 0.0.6

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 (35) hide show
  1. checksums.yaml +15 -0
  2. data/README.md +21 -7
  3. data/lib/language_engine/version.rb +1 -1
  4. data/spec/dummy/Gemfile~ +5 -0
  5. data/spec/dummy/README.rdoc +15 -248
  6. data/spec/dummy/Rakefile +0 -1
  7. data/spec/dummy/app/assets/javascripts/application.js +3 -5
  8. data/spec/dummy/app/controllers/application_controller.rb +3 -1
  9. data/spec/dummy/app/views/layouts/application.html.erb +2 -2
  10. data/spec/dummy/bin/bundle +3 -0
  11. data/spec/dummy/bin/rails +4 -0
  12. data/spec/dummy/bin/rake +4 -0
  13. data/spec/dummy/config.ru +1 -1
  14. data/spec/dummy/config/application.rb +6 -37
  15. data/spec/dummy/config/boot.rb +4 -9
  16. data/spec/dummy/config/environment.rb +2 -2
  17. data/spec/dummy/config/environments/development.rb +11 -19
  18. data/spec/dummy/config/environments/production.rb +41 -28
  19. data/spec/dummy/config/environments/test.rb +13 -14
  20. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  21. data/spec/dummy/config/initializers/inflections.rb +6 -5
  22. data/spec/dummy/config/initializers/secret_token.rb +7 -2
  23. data/spec/dummy/config/initializers/session_store.rb +0 -5
  24. data/spec/dummy/config/initializers/wrap_parameters.rb +6 -6
  25. data/spec/dummy/config/locales/en.yml +20 -2
  26. data/spec/dummy/config/locales/fr.yml +23 -0
  27. data/spec/dummy/db/{development.sqlite3 → production.sqlite3} +0 -0
  28. data/spec/dummy/db/schema.rb +141 -0
  29. data/spec/dummy/public/404.html +43 -11
  30. data/spec/dummy/public/422.html +43 -11
  31. data/spec/dummy/public/500.html +43 -11
  32. metadata +53 -59
  33. data/spec/dummy/log/development.log +0 -2
  34. data/spec/dummy/log/test.log +0 -74
  35. data/spec/dummy/script/rails +0 -6
@@ -1,10 +1,5 @@
1
- require 'rubygems'
2
- gemfile = File.expand_path('../../../../Gemfile', __FILE__)
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
3
 
4
- if File.exist?(gemfile)
5
- ENV['BUNDLE_GEMFILE'] = gemfile
6
- require 'bundler'
7
- Bundler.setup
8
- end
9
-
10
- $:.unshift File.expand_path('../../../../lib', __FILE__)
4
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -1,5 +1,5 @@
1
- # Load the rails application
1
+ # Load the Rails application.
2
2
  require File.expand_path('../application', __FILE__)
3
3
 
4
- # Initialize the rails application
4
+ # Initialize the Rails application.
5
5
  Dummy::Application.initialize!
@@ -1,37 +1,29 @@
1
1
  Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
3
 
4
4
  # In the development environment your application's code is reloaded on
5
5
  # every request. This slows down response time but is perfect for development
6
6
  # since you don't have to restart the web server when you make code changes.
7
7
  config.cache_classes = false
8
8
 
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
11
 
12
- # Show full error reports and disable caching
12
+ # Show full error reports and disable caching.
13
13
  config.consider_all_requests_local = true
14
14
  config.action_controller.perform_caching = false
15
15
 
16
- # Don't care if the mailer can't send
16
+ # Don't care if the mailer can't send.
17
17
  config.action_mailer.raise_delivery_errors = false
18
18
 
19
- # Print deprecation notices to the Rails logger
19
+ # Print deprecation notices to the Rails logger.
20
20
  config.active_support.deprecation = :log
21
21
 
22
- # Only use best-standards-support built into browsers
23
- config.action_dispatch.best_standards_support = :builtin
22
+ # Raise an error on page load if there are pending migrations
23
+ config.active_record.migration_error = :page_load
24
24
 
25
- # Raise exception on mass assignment protection for Active Record models
26
- config.active_record.mass_assignment_sanitizer = :strict
27
-
28
- # Log the query plan for queries taking more than this (works
29
- # with SQLite, MySQL, and PostgreSQL)
30
- config.active_record.auto_explain_threshold_in_seconds = 0.5
31
-
32
- # Do not compress assets
33
- config.assets.compress = false
34
-
35
- # Expands the lines which load the assets
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
36
28
  config.assets.debug = true
37
29
  end
@@ -1,67 +1,80 @@
1
1
  Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
3
 
4
- # Code is not reloaded between requests
4
+ # Code is not reloaded between requests.
5
5
  config.cache_classes = true
6
6
 
7
- # Full error reports are disabled and caching is turned on
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both thread web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
8
14
  config.consider_all_requests_local = false
9
15
  config.action_controller.perform_caching = true
10
16
 
11
- # Disable Rails's static asset server (Apache or nginx will already do this)
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
12
23
  config.serve_static_assets = false
13
24
 
14
- # Compress JavaScripts and CSS
15
- config.assets.compress = true
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
16
28
 
17
- # Don't fallback to assets pipeline if a precompiled asset is missed
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
18
30
  config.assets.compile = false
19
31
 
20
- # Generate digests for assets URLs
32
+ # Generate digests for assets URLs.
21
33
  config.assets.digest = true
22
34
 
23
- # Defaults to nil and saved in location specified by config.assets.prefix
24
- # config.assets.manifest = YOUR_PATH
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
25
37
 
26
- # Specifies the header that your server uses for sending files
38
+ # Specifies the header that your server uses for sending files.
27
39
  # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
40
  # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
41
 
30
42
  # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
43
  # config.force_ssl = true
32
44
 
33
- # See everything in the log (default is :info)
34
- # config.log_level = :debug
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
35
47
 
36
- # Prepend all log lines with the following tags
48
+ # Prepend all log lines with the following tags.
37
49
  # config.log_tags = [ :subdomain, :uuid ]
38
50
 
39
- # Use a different logger for distributed setups
51
+ # Use a different logger for distributed setups.
40
52
  # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
53
 
42
- # Use a different cache store in production
43
- # config.cache_store = :mem_cache_store
54
+ # Use a different cache store in production.
55
+ config.cache_store = :dalli_store
44
56
 
45
- # Enable serving of images, stylesheets, and JavaScripts from an asset server
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
46
58
  # config.action_controller.asset_host = "http://assets.example.com"
47
59
 
48
- # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
49
62
  # config.assets.precompile += %w( search.js )
50
63
 
51
- # Disable delivery errors, bad email addresses will be ignored
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
52
66
  # config.action_mailer.raise_delivery_errors = false
53
67
 
54
- # Enable threaded mode
55
- # config.threadsafe!
56
-
57
68
  # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
- # the I18n.default_locale when a translation can not be found)
69
+ # the I18n.default_locale when a translation can not be found).
59
70
  config.i18n.fallbacks = true
60
71
 
61
- # Send deprecation notices to registered listeners
72
+ # Send deprecation notices to registered listeners.
62
73
  config.active_support.deprecation = :notify
63
74
 
64
- # Log the query plan for queries taking more than this (works
65
- # with SQLite, MySQL, and PostgreSQL)
66
- # config.active_record.auto_explain_threshold_in_seconds = 0.5
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
67
80
  end
@@ -1,5 +1,5 @@
1
1
  Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
3
 
4
4
  # The test environment is used exclusively to run your application's
5
5
  # test suite. You never need to work with it otherwise. Remember that
@@ -7,31 +7,30 @@ Dummy::Application.configure do
7
7
  # and recreated between test runs. Don't rely on the data there!
8
8
  config.cache_classes = true
9
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"
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
13
14
 
14
- # Log error messages when you accidentally call methods on nil
15
- config.whiny_nils = true
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = "public, max-age=3600"
16
18
 
17
- # Show full error reports and disable caching
19
+ # Show full error reports and disable caching.
18
20
  config.consider_all_requests_local = true
19
21
  config.action_controller.perform_caching = false
20
22
 
21
- # Raise exceptions instead of rendering exception templates
23
+ # Raise exceptions instead of rendering exception templates.
22
24
  config.action_dispatch.show_exceptions = false
23
25
 
24
- # Disable request forgery protection in test environment
25
- config.action_controller.allow_forgery_protection = false
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
26
28
 
27
29
  # Tell Action Mailer not to deliver emails to the real world.
28
30
  # The :test delivery method accumulates sent emails in the
29
31
  # ActionMailer::Base.deliveries array.
30
32
  config.action_mailer.delivery_method = :test
31
33
 
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
34
+ # Print deprecation notices to the stderr.
36
35
  config.active_support.deprecation = :stderr
37
36
  end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -1,15 +1,16 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
- # Add new inflection rules using the following format
4
- # (all these examples are active by default):
5
- # ActiveSupport::Inflector.inflections do |inflect|
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
6
7
  # inflect.plural /^(ox)$/i, '\1en'
7
8
  # inflect.singular /^(ox)en/i, '\1'
8
9
  # inflect.irregular 'person', 'people'
9
10
  # inflect.uncountable %w( fish sheep )
10
11
  # end
11
- #
12
+
12
13
  # These inflection rules are supported but not enabled by default:
13
- # ActiveSupport::Inflector.inflections do |inflect|
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
14
15
  # inflect.acronym 'RESTful'
15
16
  # end
@@ -1,7 +1,12 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
- # Your secret key for verifying the integrity of signed cookies.
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
4
  # If you change this key, all old signed cookies will become invalid!
5
+
5
6
  # Make sure the secret is at least 30 characters and all random,
6
7
  # no regular words or you'll be exposed to dictionary attacks.
7
- Dummy::Application.config.secret_token = '105c03e3d00a6b70d175fa018df2a4e3834383cf07712929c64f1645ebceefd619727109156fc75603d45b5408443068dfbe9080554097fc89ce4d7f7270f0ce'
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = 'a4c412090e8d88391e3d22ecb109a4b942badd989b19b7e481e9fa656f93d5411490e030da39cbb9c8adc5664bb6b626299ef5004a7ea76d8ba512c4910c990a'
@@ -1,8 +1,3 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
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
@@ -1,14 +1,14 @@
1
1
  # Be sure to restart your server when you modify this file.
2
- #
2
+
3
3
  # This file contains settings for ActionController::ParamsWrapper which
4
4
  # is enabled by default.
5
5
 
6
6
  # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
7
  ActiveSupport.on_load(:action_controller) do
8
- wrap_parameters format: [:json]
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
9
  end
10
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
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -1,5 +1,23 @@
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.
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
3
21
 
4
22
  en:
5
23
  hello: "Hello world"
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ fr:
23
+ hello: "Bonjour le monde"
@@ -0,0 +1,141 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20141205154841) do
15
+
16
+ # These are extensions that must be enabled in order to support this database
17
+ enable_extension "plpgsql"
18
+ enable_extension "postgis"
19
+ enable_extension "hstore"
20
+
21
+ create_table "boundaries", force: true do |t|
22
+ t.string "objectid"
23
+ t.string "name"
24
+ t.integer "admin_level"
25
+ t.string "postal_code"
26
+ t.string "insee_code"
27
+ t.spatial "geometry", limit: {:srid=>4326, :type=>"multi_polygon"}
28
+ end
29
+
30
+ add_index "boundaries", ["geometry"], :name => "index_boundaries_on_geometry", :spatial => true
31
+
32
+ create_table "junction_conditionnal_costs", force: true do |t|
33
+ t.integer "junction_id"
34
+ t.float "cost"
35
+ t.string "tags"
36
+ t.integer "start_physical_road_id"
37
+ t.integer "end_physical_road_id"
38
+ end
39
+
40
+ add_index "junction_conditionnal_costs", ["junction_id"], :name => "index_junction_conditionnal_costs_on_junction_id"
41
+
42
+ create_table "junctions", force: true do |t|
43
+ t.string "objectid"
44
+ t.datetime "created_at"
45
+ t.datetime "updated_at"
46
+ t.spatial "geometry", limit: {:srid=>4326, :type=>"point"}
47
+ t.hstore "tags"
48
+ t.float "height"
49
+ t.float "waiting_constraint"
50
+ end
51
+
52
+ add_index "junctions", ["geometry"], :name => "index_junctions_on_geometry", :spatial => true
53
+ add_index "junctions", ["objectid"], :name => "index_junctions_on_objectid", :unique => true
54
+ add_index "junctions", ["tags"], :name => "junctions_tags"
55
+
56
+ create_table "junctions_physical_roads", id: false, force: true do |t|
57
+ t.integer "physical_road_id"
58
+ t.integer "junction_id"
59
+ t.float "percentage_location"
60
+ end
61
+
62
+ add_index "junctions_physical_roads", ["junction_id"], :name => "index_junctions_physical_roads_on_junction_id"
63
+ add_index "junctions_physical_roads", ["physical_road_id", "junction_id"], :name => "junctions_physical_roads_ids", :unique => true
64
+ add_index "junctions_physical_roads", ["physical_road_id"], :name => "index_junctions_physical_roads_on_physical_road_id"
65
+
66
+ create_table "logical_roads", force: true do |t|
67
+ t.string "name"
68
+ t.string "objectid"
69
+ t.datetime "created_at"
70
+ t.datetime "updated_at"
71
+ t.integer "boundary_id"
72
+ end
73
+
74
+ add_index "logical_roads", ["boundary_id"], :name => "index_logical_roads_on_boundary_id"
75
+ add_index "logical_roads", ["name"], :name => "index_logical_roads_on_name"
76
+ add_index "logical_roads", ["objectid"], :name => "index_logical_roads_on_objectid", :unique => true
77
+
78
+ create_table "physical_road_conditionnal_costs", force: true do |t|
79
+ t.integer "physical_road_id"
80
+ t.float "cost"
81
+ t.string "tags"
82
+ end
83
+
84
+ add_index "physical_road_conditionnal_costs", ["physical_road_id"], :name => "index_physical_road_conditionnal_costs_on_physical_road_id"
85
+
86
+ create_table "physical_roads", force: true do |t|
87
+ t.string "objectid"
88
+ t.integer "logical_road_id"
89
+ t.datetime "created_at"
90
+ t.datetime "updated_at"
91
+ t.spatial "geometry", limit: {:srid=>4326, :type=>"line_string"}
92
+ t.hstore "tags"
93
+ t.string "minimum_width"
94
+ t.string "transport_mode"
95
+ t.float "uphill"
96
+ t.float "downhill"
97
+ t.string "slope"
98
+ t.string "cant"
99
+ t.string "covering"
100
+ t.integer "steps_count"
101
+ t.boolean "banisters_available"
102
+ t.boolean "tactile_band"
103
+ t.string "physical_road_type"
104
+ t.boolean "car"
105
+ t.boolean "bike"
106
+ t.boolean "train"
107
+ t.boolean "pedestrian"
108
+ t.string "name"
109
+ t.integer "boundary_id"
110
+ t.integer "marker", default: 0
111
+ t.float "length", default: 0.0
112
+ end
113
+
114
+ add_index "physical_roads", ["boundary_id"], :name => "index_physical_roads_on_boundary_id"
115
+ add_index "physical_roads", ["geometry"], :name => "index_physical_roads_on_geometry", :spatial => true
116
+ add_index "physical_roads", ["logical_road_id"], :name => "index_physical_roads_on_logical_road_id"
117
+ add_index "physical_roads", ["name"], :name => "index_physical_roads_on_name"
118
+ add_index "physical_roads", ["objectid"], :name => "index_physical_roads_on_objectid", :unique => true
119
+ add_index "physical_roads", ["tags"], :name => "physical_roads_tags"
120
+
121
+ create_table "street_numbers", force: true do |t|
122
+ t.string "number"
123
+ t.float "location_on_road"
124
+ t.integer "physical_road_id"
125
+ t.datetime "created_at"
126
+ t.datetime "updated_at"
127
+ t.spatial "geometry", limit: {:srid=>4326, :type=>"point"}
128
+ t.string "objectid"
129
+ t.hstore "tags"
130
+ t.string "street"
131
+ t.string "city"
132
+ t.string "state"
133
+ t.string "country"
134
+ t.string "from_osm_object"
135
+ end
136
+
137
+ add_index "street_numbers", ["geometry"], :name => "index_street_numbers_on_geometry", :spatial => true
138
+ add_index "street_numbers", ["number", "physical_road_id"], :name => "index_street_numbers_on_number_and_physical_road_id"
139
+ add_index "street_numbers", ["physical_road_id"], :name => "index_street_numbers_on_physical_road_id"
140
+
141
+ end