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
@@ -1,9 +0,0 @@
1
- // This is a manifest file that'll be compiled into including all the files listed below.
2
- // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
3
- // be included in the compiled file accessible from http://example.com/assets/application.js
4
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
5
- // the compiled file.
6
- //
7
- //= require jquery
8
- //= require jquery_ujs
9
- //= require_tree .
@@ -1,7 +0,0 @@
1
- /*
2
- * This is a manifest file that'll automatically include all the stylesheets available in this directory
3
- * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
4
- * the top of the compiled file, but it's generally better to create a new file per style scope.
5
- *= require_self
6
- *= require_tree .
7
- */
@@ -1,12 +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
- ActionController::Base.wrap_parameters :format => [:json]
8
-
9
- # Disable root element in JSON by default.
10
- if defined?(ActiveRecord)
11
- ActiveRecord::Base.include_root_in_json = false
12
- end
File without changes
@@ -1,9 +0,0 @@
1
- // This is a manifest file that'll be compiled into including all the files listed below.
2
- // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
3
- // be included in the compiled file accessible from http://example.com/assets/application.js
4
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
5
- // the compiled file.
6
- //
7
- //= require jquery
8
- //= require jquery_ujs
9
- //= require_tree .
@@ -1,7 +0,0 @@
1
- /*
2
- * This is a manifest file that'll automatically include all the stylesheets available in this directory
3
- * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
4
- * the top of the compiled file, but it's generally better to create a new file per style scope.
5
- *= require_self
6
- *= require_tree .
7
- */
@@ -1,12 +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
- ActionController::Base.wrap_parameters :format => [:json]
8
-
9
- # Disable root element in JSON by default.
10
- if defined?(ActiveRecord)
11
- ActiveRecord::Base.include_root_in_json = false
12
- end