quadro-i18n 0.5.8 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +5 -13
  2. data/MIT-LICENSE +1 -1
  3. data/{README.rdoc → README.md} +4 -0
  4. data/Rakefile +5 -9
  5. data/lib/quadro-i18n/version.rb +1 -1
  6. data/lib/tasks/quadro-i18n_tasks.rake +0 -4
  7. data/test/dummy/README.rdoc +15 -248
  8. data/test/dummy/Rakefile +1 -2
  9. data/test/dummy/app/assets/javascripts/application.js +4 -6
  10. data/test/dummy/app/assets/stylesheets/application.css +6 -4
  11. data/test/dummy/app/controllers/application_controller.rb +3 -1
  12. data/test/dummy/app/views/layouts/application.html.erb +2 -2
  13. data/test/dummy/bin/bundle +3 -0
  14. data/test/dummy/bin/rails +4 -0
  15. data/test/dummy/bin/rake +4 -0
  16. data/test/dummy/bin/setup +29 -0
  17. data/test/dummy/config.ru +2 -2
  18. data/test/dummy/config/application.rb +2 -36
  19. data/test/dummy/config/boot.rb +4 -9
  20. data/test/dummy/config/database.yml +8 -8
  21. data/test/dummy/config/environment.rb +3 -3
  22. data/test/dummy/config/environments/development.rb +22 -18
  23. data/test/dummy/config/environments/production.rb +46 -34
  24. data/test/dummy/config/environments/test.rb +19 -14
  25. data/test/dummy/config/initializers/assets.rb +11 -0
  26. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  27. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  28. data/test/dummy/config/initializers/inflections.rb +6 -5
  29. data/test/dummy/config/initializers/mime_types.rb +0 -1
  30. data/test/dummy/config/initializers/session_store.rb +1 -6
  31. data/test/dummy/config/initializers/wrap_parameters.rb +6 -6
  32. data/test/dummy/config/locales/en.yml +20 -2
  33. data/test/dummy/config/routes.rb +23 -25
  34. data/test/dummy/config/secrets.yml +22 -0
  35. data/test/dummy/public/404.html +54 -13
  36. data/test/dummy/public/422.html +54 -13
  37. data/test/dummy/public/500.html +53 -12
  38. data/test/test_helper.rb +8 -3
  39. metadata +36 -23
  40. data/test/dummy/config/initializers/secret_token.rb +0 -7
  41. data/test/dummy/script/rails +0 -6
@@ -1,7 +0,0 @@
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 = 'a6aa8ca0edf6784f5d714b4daf67830adcaed5dc2ee88f9baaa338a4d72d3b134590d878080c108f53411b74d3782adf5a9d7d5b9bacb27b901dccc014efbfbf'
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
-
4
- APP_PATH = File.expand_path('../../config/application', __FILE__)
5
- require File.expand_path('../../config/boot', __FILE__)
6
- require 'rails/commands'