steak 2.0.0.beta2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. data/README.md +2 -2
  2. data/lib/steak/version.rb +1 -1
  3. data/spec/fixtures/rails_project/.gitignore +0 -1
  4. data/spec/fixtures/rails_project/Gemfile +17 -14
  5. data/spec/fixtures/rails_project/README +7 -12
  6. data/spec/fixtures/rails_project/Rakefile +1 -1
  7. data/spec/fixtures/rails_project/app/views/layouts/application.html.erb +3 -3
  8. data/spec/fixtures/rails_project/config/application.rb +3 -3
  9. data/spec/fixtures/rails_project/config/database.yml +0 -3
  10. data/spec/fixtures/rails_project/config/environments/development.rb +3 -4
  11. data/spec/fixtures/rails_project/config/environments/production.rb +12 -17
  12. data/spec/fixtures/rails_project/config/environments/test.rb +1 -5
  13. data/spec/fixtures/rails_project/config/initializers/secret_token.rb +1 -1
  14. data/spec/fixtures/rails_project/config/locales/en.yml +1 -1
  15. data/spec/fixtures/rails_project/config/routes.rb +1 -1
  16. data/spec/fixtures/rails_project/db/seeds.rb +1 -1
  17. data/spec/fixtures/rails_project/{app/assets → public}/images/rails.png +0 -0
  18. data/spec/fixtures/rails_project/public/index.html +8 -10
  19. data/spec/fixtures/rails_project/public/javascripts/application.js +2 -0
  20. data/spec/fixtures/rails_project/public/javascripts/controls.js +965 -0
  21. data/spec/fixtures/rails_project/public/javascripts/dragdrop.js +974 -0
  22. data/spec/fixtures/rails_project/public/javascripts/effects.js +1123 -0
  23. data/spec/fixtures/rails_project/public/javascripts/prototype.js +6001 -0
  24. data/spec/fixtures/rails_project/public/javascripts/rails.js +191 -0
  25. data/spec/fixtures/rails_project/{app/mailers → public/stylesheets}/.gitkeep +0 -0
  26. data/spec/fixtures/rails_project/test/performance/browsing_test.rb +1 -4
  27. data/spec/fixtures/rails_project_with_steak/.gitignore +0 -1
  28. data/spec/fixtures/rails_project_with_steak/Gemfile +17 -14
  29. data/spec/fixtures/rails_project_with_steak/README +7 -12
  30. data/spec/fixtures/rails_project_with_steak/Rakefile +1 -1
  31. data/spec/fixtures/rails_project_with_steak/app/views/layouts/application.html.erb +3 -3
  32. data/spec/fixtures/rails_project_with_steak/config/application.rb +3 -3
  33. data/spec/fixtures/rails_project_with_steak/config/database.yml +0 -3
  34. data/spec/fixtures/rails_project_with_steak/config/environments/development.rb +3 -4
  35. data/spec/fixtures/rails_project_with_steak/config/environments/production.rb +12 -17
  36. data/spec/fixtures/rails_project_with_steak/config/environments/test.rb +1 -5
  37. data/spec/fixtures/rails_project_with_steak/config/initializers/secret_token.rb +1 -1
  38. data/spec/fixtures/rails_project_with_steak/config/locales/en.yml +1 -1
  39. data/spec/fixtures/rails_project_with_steak/config/routes.rb +1 -1
  40. data/spec/fixtures/rails_project_with_steak/db/seeds.rb +1 -1
  41. data/spec/fixtures/rails_project_with_steak/{app/assets → public}/images/rails.png +0 -0
  42. data/spec/fixtures/rails_project_with_steak/public/index.html +8 -10
  43. data/spec/fixtures/rails_project_with_steak/public/javascripts/application.js +2 -0
  44. data/spec/fixtures/rails_project_with_steak/public/javascripts/controls.js +965 -0
  45. data/spec/fixtures/rails_project_with_steak/public/javascripts/dragdrop.js +974 -0
  46. data/spec/fixtures/rails_project_with_steak/public/javascripts/effects.js +1123 -0
  47. data/spec/fixtures/rails_project_with_steak/public/javascripts/prototype.js +6001 -0
  48. data/spec/fixtures/rails_project_with_steak/public/javascripts/rails.js +191 -0
  49. data/spec/fixtures/{rails_project/app/models → rails_project_with_steak/public/stylesheets}/.gitkeep +0 -0
  50. data/spec/fixtures/rails_project_with_steak/test/performance/browsing_test.rb +1 -4
  51. metadata +42 -64
  52. data/spec/fixtures/rails_project/app/assets/javascripts/application.js +0 -9
  53. data/spec/fixtures/rails_project/app/assets/stylesheets/application.css +0 -7
  54. data/spec/fixtures/rails_project/config/initializers/wrap_parameters.rb +0 -12
  55. data/spec/fixtures/rails_project/log/.gitkeep +0 -0
  56. data/spec/fixtures/rails_project/test/fixtures/.gitkeep +0 -0
  57. data/spec/fixtures/rails_project/test/functional/.gitkeep +0 -0
  58. data/spec/fixtures/rails_project/test/integration/.gitkeep +0 -0
  59. data/spec/fixtures/rails_project/test/unit/.gitkeep +0 -0
  60. data/spec/fixtures/rails_project/vendor/assets/stylesheets/.gitkeep +0 -0
  61. data/spec/fixtures/rails_project_with_steak/app/assets/javascripts/application.js +0 -9
  62. data/spec/fixtures/rails_project_with_steak/app/assets/stylesheets/application.css +0 -7
  63. data/spec/fixtures/rails_project_with_steak/app/mailers/.gitkeep +0 -0
  64. data/spec/fixtures/rails_project_with_steak/app/models/.gitkeep +0 -0
  65. data/spec/fixtures/rails_project_with_steak/config/initializers/wrap_parameters.rb +0 -12
  66. data/spec/fixtures/rails_project_with_steak/log/.gitkeep +0 -0
  67. data/spec/fixtures/rails_project_with_steak/test/fixtures/.gitkeep +0 -0
  68. data/spec/fixtures/rails_project_with_steak/test/functional/.gitkeep +0 -0
  69. data/spec/fixtures/rails_project_with_steak/test/integration/.gitkeep +0 -0
  70. data/spec/fixtures/rails_project_with_steak/test/unit/.gitkeep +0 -0
  71. data/spec/fixtures/rails_project_with_steak/vendor/assets/stylesheets/.gitkeep +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the gem file manually.