versjons 0.0.1 → 0.0.2

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 (36) hide show
  1. checksums.yaml +4 -4
  2. data/lib/versjons/version.rb +1 -1
  3. data/test/dummy/README.rdoc +248 -15
  4. data/test/dummy/Rakefile +2 -1
  5. data/test/dummy/app/assets/javascripts/application.js +5 -3
  6. data/test/dummy/app/assets/stylesheets/application.css +3 -5
  7. data/test/dummy/app/controllers/application_controller.rb +1 -3
  8. data/test/dummy/app/views/layouts/application.html.erb +2 -2
  9. data/test/dummy/config.ru +1 -1
  10. data/test/dummy/config/application.rb +36 -0
  11. data/test/dummy/config/boot.rb +9 -4
  12. data/test/dummy/config/database.yml +8 -8
  13. data/test/dummy/config/environment.rb +3 -3
  14. data/test/dummy/config/environments/development.rb +19 -19
  15. data/test/dummy/config/environments/production.rb +28 -44
  16. data/test/dummy/config/environments/test.rb +15 -17
  17. data/test/dummy/config/initializers/inflections.rb +5 -6
  18. data/test/dummy/config/initializers/mime_types.rb +1 -0
  19. data/test/dummy/config/initializers/secret_token.rb +7 -0
  20. data/test/dummy/config/initializers/session_store.rb +6 -1
  21. data/test/dummy/config/initializers/wrap_parameters.rb +6 -6
  22. data/test/dummy/config/locales/en.yml +2 -20
  23. data/test/dummy/config/routes.rb +25 -23
  24. data/test/dummy/log/development.log +3 -1310
  25. data/test/dummy/log/test.log +2 -156
  26. data/test/dummy/public/404.html +13 -54
  27. data/test/dummy/public/422.html +13 -54
  28. data/test/dummy/public/500.html +12 -53
  29. data/test/dummy/script/rails +6 -0
  30. metadata +7 -15
  31. data/test/dummy/bin/bundle +0 -3
  32. data/test/dummy/bin/rails +0 -4
  33. data/test/dummy/bin/rake +0 -4
  34. data/test/dummy/config/initializers/cookies_serializer.rb +0 -3
  35. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  36. data/test/dummy/config/secrets.yml +0 -22
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env ruby
2
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
- load Gem.bin_path('bundler', 'bundle')
data/test/dummy/bin/rails DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
- APP_PATH = File.expand_path('../../config/application', __FILE__)
3
- require_relative '../config/boot'
4
- require 'rails/commands'
data/test/dummy/bin/rake DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require_relative '../config/boot'
3
- require 'rake'
4
- Rake.application.run
@@ -1,3 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -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,22 +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 the secrets in this file are kept private
11
- # if you're sharing your code publicly.
12
-
13
- development:
14
- secret_key_base: 97adc2b4cbfa253bc084ca49463a1b5efbb8ca7a479482bc047f330dbadc6cb3ca3290cdd4c77a65a7e5d595abbafc20cb927793928e3f62502d03abbe44033a
15
-
16
- test:
17
- secret_key_base: 5aef8c69e64e5021a4bbfea97a161e75cb5cb5b1ceea77c084bafbf6dd94f62843376a624f9a24300a974fdfc2f28dd077cf36f53bfc102308e4bfbb5a2f0a7c
18
-
19
- # Do not keep production secrets in the repository,
20
- # instead read values from the environment.
21
- production:
22
- secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>