translatable_routes 1.4.0 → 4.0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. metadata +14 -140
  3. data/MIT-LICENSE +0 -20
  4. data/README.md +0 -66
  5. data/Rakefile +0 -32
  6. data/lib/translatable_routes/action_dispatch/mapper.rb +0 -91
  7. data/lib/translatable_routes/action_dispatch/named_route_collection.rb +0 -35
  8. data/lib/translatable_routes/railtie.rb +0 -16
  9. data/lib/translatable_routes/version.rb +0 -5
  10. data/lib/translatable_routes.rb +0 -6
  11. data/test/dummy/README.rdoc +0 -28
  12. data/test/dummy/Rakefile +0 -6
  13. data/test/dummy/app/assets/javascripts/application.js +0 -13
  14. data/test/dummy/app/assets/stylesheets/application.css +0 -13
  15. data/test/dummy/app/controllers/application_controller.rb +0 -5
  16. data/test/dummy/app/controllers/namespace/pages_controller.rb +0 -6
  17. data/test/dummy/app/controllers/namespace/resources_controller.rb +0 -6
  18. data/test/dummy/app/controllers/nesteds_controller.rb +0 -6
  19. data/test/dummy/app/controllers/pages_controller.rb +0 -12
  20. data/test/dummy/app/controllers/resources_controller.rb +0 -6
  21. data/test/dummy/app/helpers/application_helper.rb +0 -2
  22. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  23. data/test/dummy/bin/bundle +0 -3
  24. data/test/dummy/bin/rails +0 -4
  25. data/test/dummy/bin/rake +0 -4
  26. data/test/dummy/config/application.rb +0 -22
  27. data/test/dummy/config/boot.rb +0 -5
  28. data/test/dummy/config/database.yml +0 -25
  29. data/test/dummy/config/environment.rb +0 -5
  30. data/test/dummy/config/environments/development.rb +0 -29
  31. data/test/dummy/config/environments/production.rb +0 -84
  32. data/test/dummy/config/environments/test.rb +0 -44
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  34. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  35. data/test/dummy/config/initializers/inflections.rb +0 -16
  36. data/test/dummy/config/initializers/mime_types.rb +0 -5
  37. data/test/dummy/config/initializers/secret_token.rb +0 -13
  38. data/test/dummy/config/initializers/session_store.rb +0 -3
  39. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  40. data/test/dummy/config/locales/en.yml +0 -10
  41. data/test/dummy/config/locales/es.yml +0 -10
  42. data/test/dummy/config/routes.rb +0 -70
  43. data/test/dummy/config.ru +0 -4
  44. data/test/dummy/db/schema.rb +0 -16
  45. data/test/dummy/log/development.log +0 -0
  46. data/test/dummy/log/test.log +0 -324
  47. data/test/dummy/public/404.html +0 -58
  48. data/test/dummy/public/422.html +0 -58
  49. data/test/dummy/public/500.html +0 -57
  50. data/test/dummy/public/favicon.ico +0 -0
  51. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  52. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  53. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  54. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  55. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  56. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  57. data/test/helpers_test.rb +0 -60
  58. data/test/routes_test.rb +0 -59
  59. data/test/test_helper.rb +0 -21
@@ -1,5 +0,0 @@
1
- # Set up gems listed in the Gemfile.
2
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
-
4
- require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
5
- $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -1,25 +0,0 @@
1
- # SQLite version 3.x
2
- # gem install sqlite3
3
- #
4
- # Ensure the SQLite 3 gem is defined in your Gemfile
5
- # gem 'sqlite3'
6
- development:
7
- adapter: sqlite3
8
- database: db/development.sqlite3
9
- pool: 5
10
- timeout: 5000
11
-
12
- # Warning: The database defined as "test" will be erased and
13
- # re-generated from your development database when you run "rake".
14
- # Do not set this db to the same as development or production.
15
- test:
16
- adapter: sqlite3
17
- database: ":memory:"
18
- pool: 5
19
- timeout: 5000
20
-
21
- production:
22
- adapter: sqlite3
23
- database: db/production.sqlite3
24
- pool: 5
25
- timeout: 5000
@@ -1,5 +0,0 @@
1
- # Load the Rails application.
2
- require File.expand_path('../application', __FILE__)
3
-
4
- # Initialize the Rails application.
5
- Dummy::Application.initialize!
@@ -1,29 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb.
3
-
4
- # In the development environment your application's code is reloaded on
5
- # every request. This slows down response time but is perfect for development
6
- # since you don't have to restart the web server when you make code changes.
7
- config.cache_classes = false
8
-
9
- # Do not eager load code on boot.
10
- config.eager_load = false
11
-
12
- # Show full error reports and disable caching.
13
- config.consider_all_requests_local = true
14
- config.action_controller.perform_caching = false
15
-
16
- # Don't care if the mailer can't send.
17
- config.action_mailer.raise_delivery_errors = false
18
-
19
- # Print deprecation notices to the Rails logger.
20
- config.active_support.deprecation = :log
21
-
22
- # Raise an error on page load if there are pending migrations
23
- config.active_record.migration_error = :page_load
24
-
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.
28
- config.assets.debug = true
29
- end
@@ -1,84 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb.
3
-
4
- # Code is not reloaded between requests.
5
- config.cache_classes = true
6
-
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.
14
- config.consider_all_requests_local = false
15
- config.action_controller.perform_caching = true
16
-
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).
23
- if Rails::VERSION::MAJOR == 4 && Rails::VERSION::MINOR >= 2
24
- config.serve_static_files = false
25
- else
26
- config.serve_static_assets = false
27
- end
28
-
29
- # Compress JavaScripts and CSS.
30
- config.assets.js_compressor = :uglifier
31
- # config.assets.css_compressor = :sass
32
-
33
- # Do not fallback to assets pipeline if a precompiled asset is missed.
34
- config.assets.compile = false
35
-
36
- # Generate digests for assets URLs.
37
- config.assets.digest = true
38
-
39
- # Version of your assets, change this if you want to expire all your assets.
40
- config.assets.version = '1.0'
41
-
42
- # Specifies the header that your server uses for sending files.
43
- # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
44
- # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
45
-
46
- # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
47
- # config.force_ssl = true
48
-
49
- # Set to :debug to see everything in the log.
50
- config.log_level = :info
51
-
52
- # Prepend all log lines with the following tags.
53
- # config.log_tags = [ :subdomain, :uuid ]
54
-
55
- # Use a different logger for distributed setups.
56
- # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
57
-
58
- # Use a different cache store in production.
59
- # config.cache_store = :mem_cache_store
60
-
61
- # Enable serving of images, stylesheets, and JavaScripts from an asset server.
62
- # config.action_controller.asset_host = "http://assets.example.com"
63
-
64
- # Precompile additional assets.
65
- # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
66
- # config.assets.precompile += %w( search.js )
67
-
68
- # Ignore bad email addresses and do not raise email delivery errors.
69
- # Set this to true and configure the email server for immediate delivery to raise delivery errors.
70
- # config.action_mailer.raise_delivery_errors = false
71
-
72
- # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
73
- # the I18n.default_locale when a translation can not be found).
74
- config.i18n.fallbacks = true
75
-
76
- # Send deprecation notices to registered listeners.
77
- config.active_support.deprecation = :notify
78
-
79
- # Disable automatic flushing of the log to improve performance.
80
- # config.autoflush_log = false
81
-
82
- # Use default logging formatter so that PID and timestamp are not suppressed.
83
- config.log_formatter = ::Logger::Formatter.new
84
- end
@@ -1,44 +0,0 @@
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
- # 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
14
-
15
- # Configure static asset server for tests with Cache-Control for performance.
16
- if Rails::VERSION::MAJOR == 4 && Rails::VERSION::MINOR >= 2
17
- config.serve_static_files = false
18
- else
19
- config.serve_static_assets = false
20
- end
21
- config.static_cache_control = "public, max-age=3600"
22
-
23
- # Show full error reports and disable caching.
24
- config.consider_all_requests_local = true
25
- config.action_controller.perform_caching = false
26
-
27
- # Raise exceptions instead of rendering exception templates.
28
- config.action_dispatch.show_exceptions = false
29
-
30
- # Disable request forgery protection in test environment.
31
- config.action_controller.allow_forgery_protection = false
32
-
33
- # Tell Action Mailer not to deliver emails to the real world.
34
- # The :test delivery method accumulates sent emails in the
35
- # ActionMailer::Base.deliveries array.
36
- config.action_mailer.delivery_method = :test
37
-
38
- # Print deprecation notices to the stderr.
39
- config.active_support.deprecation = :stderr
40
-
41
- if Rails::VERSION::MAJOR == 4 && Rails::VERSION::MINOR >= 2
42
- config.active_support.test_order = :random
43
- end
44
- end
@@ -1,7 +0,0 @@
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!
@@ -1,4 +0,0 @@
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,16 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
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|
7
- # inflect.plural /^(ox)$/i, '\1en'
8
- # inflect.singular /^(ox)en/i, '\1'
9
- # inflect.irregular 'person', 'people'
10
- # inflect.uncountable %w( fish sheep )
11
- # end
12
-
13
- # These inflection rules are supported but not enabled by default:
14
- # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
- # inflect.acronym 'RESTful'
16
- # end
@@ -1,5 +0,0 @@
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
@@ -1,13 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Your secret key is used for verifying the integrity of signed cookies.
4
- # If you change this key, all old signed cookies will become invalid!
5
-
6
- # Make sure the secret is at least 30 characters and all random,
7
- # no regular words or you'll be exposed to dictionary attacks.
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_token = '94bacb757cb090cba6681745bdf0b277d02b62765f5a593cf267c51ec4d2c138c51a1c414fa82a1d8b5429db29926ec56bcacbab6c2e1e74492c8c0274b65077'
13
- Dummy::Application.config.secret_key_base = '94bacb757cb090cba6681745bdf0b277d02b62765f5a593cf267c51ec4d2c138c51a1c414fa82a1d8b5429db29926ec56bcacbab6c2e1e74492c8c0274b65077'
@@ -1,3 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -1,14 +0,0 @@
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] if respond_to?(:wrap_parameters)
9
- end
10
-
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,10 +0,0 @@
1
- en:
2
- routes:
3
- new: "new"
4
- edit: "edit"
5
- namespace: "namespace"
6
- nested: "nested"
7
- nesteds: "nesteds"
8
- simple: "simple"
9
- resource: "resource"
10
- resources: "resources"
@@ -1,10 +0,0 @@
1
- es:
2
- routes:
3
- new: "nuevo"
4
- edit: "editar"
5
- namespace: "nombre-de-espacio"
6
- nested: "anidado"
7
- nesteds: "anidados"
8
- simple: "simple"
9
- resource: "recurso"
10
- resources: "recursos"
@@ -1,70 +0,0 @@
1
- Dummy::Application.routes.draw do
2
-
3
- localized do
4
- root to: 'pages#index'
5
- namespace :namespace do
6
- get 'nested', to: 'pages#nested', as: :nested
7
- resources :resources
8
- end
9
- get 'simple', to: 'pages#simple', as: :simple
10
- get 'complex/:p1/:p2', to: 'pages#complex', as: :complex
11
- resources :resources do
12
- resources :nesteds
13
- end
14
- end
15
-
16
- # The priority is based upon order of creation: first created -> highest priority.
17
- # See how all your routes lay out with "rake routes".
18
-
19
- # You can have the root of your site routed with "root"
20
- # root 'welcome#index'
21
-
22
- # Example of regular route:
23
- # get 'products/:id' => 'catalog#view'
24
-
25
- # Example of named route that can be invoked with purchase_url(id: product.id)
26
- # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
27
-
28
- # Example resource route (maps HTTP verbs to controller actions automatically):
29
- # resources :products
30
-
31
- # Example resource route with options:
32
- # resources :products do
33
- # member do
34
- # get 'short'
35
- # post 'toggle'
36
- # end
37
- #
38
- # collection do
39
- # get 'sold'
40
- # end
41
- # end
42
-
43
- # Example resource route with sub-resources:
44
- # resources :products do
45
- # resources :comments, :sales
46
- # resource :seller
47
- # end
48
-
49
- # Example resource route with more complex sub-resources:
50
- # resources :products do
51
- # resources :comments
52
- # resources :sales do
53
- # get 'recent', on: :collection
54
- # end
55
- # end
56
-
57
- # Example resource route with concerns:
58
- # concern :toggleable do
59
- # post 'toggle'
60
- # end
61
- # resources :posts, concerns: :toggleable
62
- # resources :photos, concerns: :toggleable
63
-
64
- # Example resource route within a namespace:
65
- # namespace :admin do
66
- # # Directs /admin/products/* to Admin::ProductsController
67
- # # (app/controllers/admin/products_controller.rb)
68
- # resources :products
69
- # end
70
- end
data/test/dummy/config.ru DELETED
@@ -1,4 +0,0 @@
1
- # This file is used by Rack-based servers to start the application.
2
-
3
- require ::File.expand_path('../config/environment', __FILE__)
4
- run Rails.application
@@ -1,16 +0,0 @@
1
- # encoding: UTF-8
2
- # This file is auto-generated from the current state of the database. Instead
3
- # of editing this file, please use the migrations feature of Active Record to
4
- # incrementally modify your database, and then regenerate this schema definition.
5
- #
6
- # Note that this schema.rb definition is the authoritative source for your
7
- # database schema. If you need to create the application database on another
8
- # system, you should be using db:schema:load, not running all the migrations
9
- # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
- # you'll amass, the slower it'll run and the greater likelihood for issues).
11
- #
12
- # It's strongly recommended that you check this file into your version control system.
13
-
14
- ActiveRecord::Schema.define(version: 0) do
15
-
16
- end
File without changes