cant_wait 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +8 -8
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/.gitignore +3 -15
  5. data/.travis.yml +5 -5
  6. data/CHANGELOG.md +21 -0
  7. data/README.md +33 -27
  8. data/cant_wait.gemspec +7 -7
  9. data/cert/README.md +70 -0
  10. data/cert/public_cert.pem +21 -0
  11. data/lib/cant_wait.rb +2 -0
  12. data/lib/cant_wait/cant_wait_railtie.rb +2 -0
  13. data/lib/cant_wait/version.rb +3 -1
  14. data/tasks/testing.rake +2 -2
  15. data/test/README.md +44 -25
  16. data/test/cant_wait_test.rb +8 -12
  17. data/test/test_apps/Test_3_0_03/Gemfile +0 -2
  18. data/test/test_apps/Test_3_0_20/Gemfile +0 -2
  19. data/test/test_apps/Test_3_1_12/Gemfile +0 -2
  20. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/Gemfile +1 -3
  21. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/README.rdoc +0 -0
  22. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/Rakefile +1 -1
  23. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/assets/images/rails.png +0 -0
  24. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/assets/javascripts/application.js +0 -0
  25. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/assets/stylesheets/application.css +0 -0
  26. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/controllers/application_controller.rb +0 -0
  27. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/helpers/application_helper.rb +0 -0
  28. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/mailers/.gitkeep +0 -0
  29. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/models/.gitkeep +0 -0
  30. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/views/layouts/application.html.erb +1 -1
  31. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config.ru +1 -1
  32. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/application.rb +1 -1
  33. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/boot.rb +0 -0
  34. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/environment.rb +1 -1
  35. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/environments/development.rb +1 -1
  36. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/environments/production.rb +1 -1
  37. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/environments/test.rb +1 -1
  38. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/backtrace_silencers.rb +0 -0
  39. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/inflections.rb +0 -0
  40. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/mime_types.rb +0 -0
  41. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/secret_token.rb +1 -1
  42. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/session_store.rb +2 -2
  43. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/wrap_parameters.rb +0 -0
  44. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/locales/en.yml +0 -0
  45. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/routes.rb +1 -1
  46. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/db/seeds.rb +0 -0
  47. data/test/test_apps/Test_3_2_14/doc/README_FOR_APP +2 -0
  48. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/lib/assets/.gitkeep +0 -0
  49. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/lib/tasks/.gitkeep +0 -0
  50. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/log/.gitkeep +0 -0
  51. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/404.html +0 -0
  52. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/422.html +0 -0
  53. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/500.html +0 -0
  54. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/favicon.ico +0 -0
  55. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/index.html +0 -0
  56. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/robots.txt +0 -0
  57. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/script/rails +0 -0
  58. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/fixtures/.gitkeep +0 -0
  59. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/functional/.gitkeep +0 -0
  60. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/integration/.gitkeep +0 -0
  61. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/performance/browsing_test.rb +0 -0
  62. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/test_helper.rb +0 -0
  63. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/unit/.gitkeep +0 -0
  64. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/vendor/assets/javascripts/.gitkeep +0 -0
  65. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/vendor/assets/stylesheets/.gitkeep +0 -0
  66. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/vendor/plugins/.gitkeep +0 -0
  67. data/test/test_apps/Test_4_0_0/Gemfile +0 -2
  68. metadata +127 -144
  69. metadata.gz.sig +0 -0
  70. data/test/test_apps/Test_3_0_03/.gitignore +0 -12
  71. data/test/test_apps/Test_3_0_20/.gitignore +0 -12
  72. data/test/test_apps/Test_3_1_12/.gitignore +0 -12
  73. data/test/test_apps/Test_3_2_13/.gitignore +0 -12
  74. data/test/test_apps/Test_4_0_0/.gitignore +0 -16
  75. data/test/test_apps/Test_4_0_0/config/database.yml +0 -6
metadata.gz.sig CHANGED
Binary file
@@ -1,12 +0,0 @@
1
- # Ignore bundler config
2
- .bundle
3
-
4
- # Ignore database.yml
5
- config/database.yml
6
-
7
- # Ignore the default SQLite database.
8
- db/*.sqlite3
9
-
10
- # Ignore all logfiles and tempfiles.
11
- log/*.log
12
- tmp/
@@ -1,12 +0,0 @@
1
- # Ignore bundler config
2
- .bundle
3
-
4
- # Ignore database.yml
5
- config/database.yml
6
-
7
- # Ignore the default SQLite database.
8
- db/*.sqlite3
9
-
10
- # Ignore all logfiles and tempfiles.
11
- log/*.log
12
- tmp/
@@ -1,12 +0,0 @@
1
- # Ignore bundler config
2
- /.bundle
3
-
4
- # Ignore database.yml
5
- config/database.yml
6
-
7
- # Ignore the default SQLite database.
8
- /db/*.sqlite3
9
-
10
- # Ignore all logfiles and tempfiles.
11
- /log/*.log
12
- /tmp
@@ -1,12 +0,0 @@
1
- # Ignore bundler config
2
- /.bundle
3
-
4
- # Ignore database.yml
5
- config/database.yml
6
-
7
- # Ignore the default SQLite database.
8
- /db/*.sqlite3
9
-
10
- # Ignore all logfiles and tempfiles.
11
- /log/*.log
12
- /tmp
@@ -1,16 +0,0 @@
1
- # See http://help.github.com/ignore-files/ for more about ignoring files.
2
- #
3
- # If you find yourself ignoring temporary files generated by your text editor
4
- # or operating system, you probably want to add a global ignore instead:
5
- # git config --global core.excludesfile '~/.gitignore_global'
6
-
7
- # Ignore bundler config.
8
- /.bundle
9
-
10
- # Ignore the default SQLite database.
11
- /db/*.sqlite3
12
- /db/*.sqlite3-journal
13
-
14
- # Ignore all logfiles and tempfiles.
15
- /log/*.log
16
- /tmp
@@ -1,6 +0,0 @@
1
- test:
2
- adapter: postgresql
3
- host: localhost
4
- database: test
5
- username: tester
6
- password: secret