rack-allocation_stats 0.1.1 → 0.1.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 (97) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.markdown +7 -0
  3. data/LICENSE +195 -0
  4. data/README.markdown +114 -0
  5. data/TODO.markdown +31 -0
  6. data/lib/rack/allocation_stats/help.txt +19 -0
  7. data/lib/rack/allocation_stats/interactive/allocations.js.erb +24 -0
  8. data/lib/rack/allocation_stats/interactive/index.html.erb +109 -0
  9. data/lib/rack/allocation_stats/interactive/interactive.js +274 -0
  10. data/lib/rack/allocation_stats/interactive/jquery-2.0.3.min.js +6 -0
  11. data/lib/rack/allocation_stats/interactive/jquery-ui-1.10.3.custom.min.css +6 -0
  12. data/lib/rack/allocation_stats/interactive/jquery-ui-1.10.3.custom.min.js +6 -0
  13. data/lib/rack/allocation_stats/interactive/sizzle.min.js +5 -0
  14. data/lib/rack/allocation_stats/interactive/style.css +104 -0
  15. data/lib/rack/allocation_stats/interactive/style.scss +147 -0
  16. data/lib/rack/allocation_stats/interactive/underscore-min.js +6 -0
  17. data/spec/hello_world.ru +8 -0
  18. data/spec/javascripts/css/docco.css +186 -0
  19. data/spec/javascripts/css/jasmine_docco-1.3.1.css +363 -0
  20. data/spec/javascripts/interactive_spec.html +220 -0
  21. data/spec/javascripts/interactive_spec.html.mustache +78 -0
  22. data/spec/javascripts/interactive_spec.js +110 -0
  23. data/spec/javascripts/js/jasmine-html.js +681 -0
  24. data/spec/javascripts/js/jasmine.css +82 -0
  25. data/spec/javascripts/js/jasmine.js +2600 -0
  26. data/spec/sinatra.ru +8 -0
  27. data/spec/sinatra_templates.ru +8 -0
  28. data/spec/sinatra_templates_app.rb +1 -1
  29. data/spec/yajl.ru +8 -0
  30. data/spec/yaml.ru +8 -0
  31. metadata +58 -97
  32. data/demo_rack_apps/Rails_3.2.15/app/controllers/application_controller.rb +0 -3
  33. data/demo_rack_apps/Rails_3.2.15/app/controllers/projects_controller.rb +0 -83
  34. data/demo_rack_apps/Rails_3.2.15/app/controllers/tasks_controller.rb +0 -83
  35. data/demo_rack_apps/Rails_3.2.15/app/helpers/application_helper.rb +0 -2
  36. data/demo_rack_apps/Rails_3.2.15/app/helpers/projects_helper.rb +0 -2
  37. data/demo_rack_apps/Rails_3.2.15/app/helpers/tasks_helper.rb +0 -2
  38. data/demo_rack_apps/Rails_3.2.15/app/models/project.rb +0 -4
  39. data/demo_rack_apps/Rails_3.2.15/app/models/task.rb +0 -4
  40. data/demo_rack_apps/Rails_3.2.15/config/application.rb +0 -63
  41. data/demo_rack_apps/Rails_3.2.15/config/boot.rb +0 -6
  42. data/demo_rack_apps/Rails_3.2.15/config/environment.rb +0 -5
  43. data/demo_rack_apps/Rails_3.2.15/config/environments/development.rb +0 -37
  44. data/demo_rack_apps/Rails_3.2.15/config/environments/production.rb +0 -67
  45. data/demo_rack_apps/Rails_3.2.15/config/environments/test.rb +0 -37
  46. data/demo_rack_apps/Rails_3.2.15/config/initializers/backtrace_silencers.rb +0 -7
  47. data/demo_rack_apps/Rails_3.2.15/config/initializers/inflections.rb +0 -15
  48. data/demo_rack_apps/Rails_3.2.15/config/initializers/mime_types.rb +0 -5
  49. data/demo_rack_apps/Rails_3.2.15/config/initializers/secret_token.rb +0 -7
  50. data/demo_rack_apps/Rails_3.2.15/config/initializers/session_store.rb +0 -8
  51. data/demo_rack_apps/Rails_3.2.15/config/initializers/wrap_parameters.rb +0 -14
  52. data/demo_rack_apps/Rails_3.2.15/config/routes.rb +0 -64
  53. data/demo_rack_apps/Rails_3.2.15/db/migrate/20131104031828_create_projects.rb +0 -11
  54. data/demo_rack_apps/Rails_3.2.15/db/migrate/20131104031829_create_tasks.rb +0 -11
  55. data/demo_rack_apps/Rails_3.2.15/db/schema.rb +0 -32
  56. data/demo_rack_apps/Rails_3.2.15/db/seeds.rb +0 -15
  57. data/demo_rack_apps/Rails_3.2.15/test/functional/projects_controller_test.rb +0 -49
  58. data/demo_rack_apps/Rails_3.2.15/test/functional/tasks_controller_test.rb +0 -49
  59. data/demo_rack_apps/Rails_3.2.15/test/performance/browsing_test.rb +0 -12
  60. data/demo_rack_apps/Rails_3.2.15/test/test_helper.rb +0 -13
  61. data/demo_rack_apps/Rails_3.2.15/test/unit/helpers/projects_helper_test.rb +0 -4
  62. data/demo_rack_apps/Rails_3.2.15/test/unit/helpers/tasks_helper_test.rb +0 -4
  63. data/demo_rack_apps/Rails_3.2.15/test/unit/project_test.rb +0 -7
  64. data/demo_rack_apps/Rails_3.2.15/test/unit/task_test.rb +0 -7
  65. data/demo_rack_apps/Rails_4.0.1/app/controllers/application_controller.rb +0 -5
  66. data/demo_rack_apps/Rails_4.0.1/app/controllers/projects_controller.rb +0 -74
  67. data/demo_rack_apps/Rails_4.0.1/app/controllers/tasks_controller.rb +0 -74
  68. data/demo_rack_apps/Rails_4.0.1/app/helpers/application_helper.rb +0 -2
  69. data/demo_rack_apps/Rails_4.0.1/app/helpers/projects_helper.rb +0 -2
  70. data/demo_rack_apps/Rails_4.0.1/app/helpers/tasks_helper.rb +0 -2
  71. data/demo_rack_apps/Rails_4.0.1/app/models/project.rb +0 -3
  72. data/demo_rack_apps/Rails_4.0.1/app/models/task.rb +0 -3
  73. data/demo_rack_apps/Rails_4.0.1/config/application.rb +0 -24
  74. data/demo_rack_apps/Rails_4.0.1/config/boot.rb +0 -4
  75. data/demo_rack_apps/Rails_4.0.1/config/environment.rb +0 -5
  76. data/demo_rack_apps/Rails_4.0.1/config/environments/development.rb +0 -29
  77. data/demo_rack_apps/Rails_4.0.1/config/environments/production.rb +0 -80
  78. data/demo_rack_apps/Rails_4.0.1/config/environments/test.rb +0 -36
  79. data/demo_rack_apps/Rails_4.0.1/config/initializers/backtrace_silencers.rb +0 -7
  80. data/demo_rack_apps/Rails_4.0.1/config/initializers/filter_parameter_logging.rb +0 -4
  81. data/demo_rack_apps/Rails_4.0.1/config/initializers/inflections.rb +0 -16
  82. data/demo_rack_apps/Rails_4.0.1/config/initializers/mime_types.rb +0 -5
  83. data/demo_rack_apps/Rails_4.0.1/config/initializers/secret_token.rb +0 -12
  84. data/demo_rack_apps/Rails_4.0.1/config/initializers/session_store.rb +0 -3
  85. data/demo_rack_apps/Rails_4.0.1/config/initializers/wrap_parameters.rb +0 -14
  86. data/demo_rack_apps/Rails_4.0.1/config/routes.rb +0 -60
  87. data/demo_rack_apps/Rails_4.0.1/db/migrate/20131102201320_create_projects.rb +0 -11
  88. data/demo_rack_apps/Rails_4.0.1/db/migrate/20131102201321_create_tasks.rb +0 -11
  89. data/demo_rack_apps/Rails_4.0.1/db/schema.rb +0 -32
  90. data/demo_rack_apps/Rails_4.0.1/db/seeds.rb +0 -15
  91. data/demo_rack_apps/Rails_4.0.1/test/controllers/projects_controller_test.rb +0 -49
  92. data/demo_rack_apps/Rails_4.0.1/test/controllers/tasks_controller_test.rb +0 -49
  93. data/demo_rack_apps/Rails_4.0.1/test/helpers/projects_helper_test.rb +0 -4
  94. data/demo_rack_apps/Rails_4.0.1/test/helpers/tasks_helper_test.rb +0 -4
  95. data/demo_rack_apps/Rails_4.0.1/test/models/project_test.rb +0 -7
  96. data/demo_rack_apps/Rails_4.0.1/test/models/task_test.rb +0 -7
  97. data/demo_rack_apps/Rails_4.0.1/test/test_helper.rb +0 -15
@@ -1,49 +0,0 @@
1
- require 'test_helper'
2
-
3
- class TasksControllerTest < ActionController::TestCase
4
- setup do
5
- @task = tasks(:one)
6
- end
7
-
8
- test "should get index" do
9
- get :index
10
- assert_response :success
11
- assert_not_nil assigns(:tasks)
12
- end
13
-
14
- test "should get new" do
15
- get :new
16
- assert_response :success
17
- end
18
-
19
- test "should create task" do
20
- assert_difference('Task.count') do
21
- post :create, task: { description: @task.description, name: @task.name, project_id: @task.project_id }
22
- end
23
-
24
- assert_redirected_to task_path(assigns(:task))
25
- end
26
-
27
- test "should show task" do
28
- get :show, id: @task
29
- assert_response :success
30
- end
31
-
32
- test "should get edit" do
33
- get :edit, id: @task
34
- assert_response :success
35
- end
36
-
37
- test "should update task" do
38
- put :update, id: @task, task: { description: @task.description, name: @task.name, project_id: @task.project_id }
39
- assert_redirected_to task_path(assigns(:task))
40
- end
41
-
42
- test "should destroy task" do
43
- assert_difference('Task.count', -1) do
44
- delete :destroy, id: @task
45
- end
46
-
47
- assert_redirected_to tasks_path
48
- end
49
- end
@@ -1,12 +0,0 @@
1
- require 'test_helper'
2
- require 'rails/performance_test_help'
3
-
4
- class BrowsingTest < ActionDispatch::PerformanceTest
5
- # Refer to the documentation for all available options
6
- # self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
7
- # :output => 'tmp/performance', :formats => [:flat] }
8
-
9
- def test_homepage
10
- get '/'
11
- end
12
- end
@@ -1,13 +0,0 @@
1
- ENV["RAILS_ENV"] = "test"
2
- require File.expand_path('../../config/environment', __FILE__)
3
- require 'rails/test_help'
4
-
5
- class ActiveSupport::TestCase
6
- # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
7
- #
8
- # Note: You'll currently still have to declare fixtures explicitly in integration tests
9
- # -- they do not yet inherit this setting
10
- fixtures :all
11
-
12
- # Add more helper methods to be used by all tests here...
13
- end
@@ -1,4 +0,0 @@
1
- require 'test_helper'
2
-
3
- class ProjectsHelperTest < ActionView::TestCase
4
- end
@@ -1,4 +0,0 @@
1
- require 'test_helper'
2
-
3
- class TasksHelperTest < ActionView::TestCase
4
- end
@@ -1,7 +0,0 @@
1
- require 'test_helper'
2
-
3
- class ProjectTest < ActiveSupport::TestCase
4
- # test "the truth" do
5
- # assert true
6
- # end
7
- end
@@ -1,7 +0,0 @@
1
- require 'test_helper'
2
-
3
- class TaskTest < ActiveSupport::TestCase
4
- # test "the truth" do
5
- # assert true
6
- # end
7
- end
@@ -1,5 +0,0 @@
1
- class ApplicationController < ActionController::Base
2
- # Prevent CSRF attacks by raising an exception.
3
- # For APIs, you may want to use :null_session instead.
4
- protect_from_forgery with: :exception
5
- end
@@ -1,74 +0,0 @@
1
- class ProjectsController < ApplicationController
2
- before_action :set_project, only: [:show, :edit, :update, :destroy]
3
-
4
- # GET /projects
5
- # GET /projects.json
6
- def index
7
- @projects = Project.all
8
- end
9
-
10
- # GET /projects/1
11
- # GET /projects/1.json
12
- def show
13
- end
14
-
15
- # GET /projects/new
16
- def new
17
- @project = Project.new
18
- end
19
-
20
- # GET /projects/1/edit
21
- def edit
22
- end
23
-
24
- # POST /projects
25
- # POST /projects.json
26
- def create
27
- @project = Project.new(project_params)
28
-
29
- respond_to do |format|
30
- if @project.save
31
- format.html { redirect_to @project, notice: 'Project was successfully created.' }
32
- format.json { render action: 'show', status: :created, location: @project }
33
- else
34
- format.html { render action: 'new' }
35
- format.json { render json: @project.errors, status: :unprocessable_entity }
36
- end
37
- end
38
- end
39
-
40
- # PATCH/PUT /projects/1
41
- # PATCH/PUT /projects/1.json
42
- def update
43
- respond_to do |format|
44
- if @project.update(project_params)
45
- format.html { redirect_to @project, notice: 'Project was successfully updated.' }
46
- format.json { head :no_content }
47
- else
48
- format.html { render action: 'edit' }
49
- format.json { render json: @project.errors, status: :unprocessable_entity }
50
- end
51
- end
52
- end
53
-
54
- # DELETE /projects/1
55
- # DELETE /projects/1.json
56
- def destroy
57
- @project.destroy
58
- respond_to do |format|
59
- format.html { redirect_to projects_url }
60
- format.json { head :no_content }
61
- end
62
- end
63
-
64
- private
65
- # Use callbacks to share common setup or constraints between actions.
66
- def set_project
67
- @project = Project.find(params[:id])
68
- end
69
-
70
- # Never trust parameters from the scary internet, only allow the white list through.
71
- def project_params
72
- params.require(:project).permit(:name, :priority, :description)
73
- end
74
- end
@@ -1,74 +0,0 @@
1
- class TasksController < ApplicationController
2
- before_action :set_task, only: [:show, :edit, :update, :destroy]
3
-
4
- # GET /tasks
5
- # GET /tasks.json
6
- def index
7
- @tasks = Task.all
8
- end
9
-
10
- # GET /tasks/1
11
- # GET /tasks/1.json
12
- def show
13
- end
14
-
15
- # GET /tasks/new
16
- def new
17
- @task = Task.new
18
- end
19
-
20
- # GET /tasks/1/edit
21
- def edit
22
- end
23
-
24
- # POST /tasks
25
- # POST /tasks.json
26
- def create
27
- @task = Task.new(task_params)
28
-
29
- respond_to do |format|
30
- if @task.save
31
- format.html { redirect_to @task, notice: 'Task was successfully created.' }
32
- format.json { render action: 'show', status: :created, location: @task }
33
- else
34
- format.html { render action: 'new' }
35
- format.json { render json: @task.errors, status: :unprocessable_entity }
36
- end
37
- end
38
- end
39
-
40
- # PATCH/PUT /tasks/1
41
- # PATCH/PUT /tasks/1.json
42
- def update
43
- respond_to do |format|
44
- if @task.update(task_params)
45
- format.html { redirect_to @task, notice: 'Task was successfully updated.' }
46
- format.json { head :no_content }
47
- else
48
- format.html { render action: 'edit' }
49
- format.json { render json: @task.errors, status: :unprocessable_entity }
50
- end
51
- end
52
- end
53
-
54
- # DELETE /tasks/1
55
- # DELETE /tasks/1.json
56
- def destroy
57
- @task.destroy
58
- respond_to do |format|
59
- format.html { redirect_to tasks_url }
60
- format.json { head :no_content }
61
- end
62
- end
63
-
64
- private
65
- # Use callbacks to share common setup or constraints between actions.
66
- def set_task
67
- @task = Task.find(params[:id])
68
- end
69
-
70
- # Never trust parameters from the scary internet, only allow the white list through.
71
- def task_params
72
- params.require(:task).permit(:name, :description, :project_id)
73
- end
74
- end
@@ -1,2 +0,0 @@
1
- module ApplicationHelper
2
- end
@@ -1,2 +0,0 @@
1
- module ProjectsHelper
2
- end
@@ -1,2 +0,0 @@
1
- module TasksHelper
2
- end
@@ -1,3 +0,0 @@
1
- class Project < ActiveRecord::Base
2
- has_many :tasks
3
- end
@@ -1,3 +0,0 @@
1
- class Task < ActiveRecord::Base
2
- belongs_to :project
3
- end
@@ -1,24 +0,0 @@
1
- require File.expand_path('../boot', __FILE__)
2
-
3
- require 'rails/all'
4
-
5
- # Require the gems listed in Gemfile, including any gems
6
- # you've limited to :test, :development, or :production.
7
- Bundler.require(:default, Rails.env)
8
-
9
- module Rails401
10
- class Application < Rails::Application
11
- # Settings in config/environments/* take precedence over those specified here.
12
- # Application configuration should go into files in config/initializers
13
- # -- all .rb files in that directory are automatically loaded.
14
-
15
- # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
16
- # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
17
- # config.time_zone = 'Central Time (US & Canada)'
18
-
19
- # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
20
- # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
21
- # config.i18n.default_locale = :de
22
- config.middleware.use ::Rack::AllocationStats
23
- end
24
- end
@@ -1,4 +0,0 @@
1
- # Set up gems listed in the Gemfile.
2
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
-
4
- require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
@@ -1,5 +0,0 @@
1
- # Load the Rails application.
2
- require File.expand_path('../application', __FILE__)
3
-
4
- # Initialize the Rails application.
5
- Rails401::Application.initialize!
@@ -1,29 +0,0 @@
1
- Rails401::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb.
3
-
4
- # In the development environment your application's code is reloaded on
5
- # every request. This slows down response time but is perfect for development
6
- # since you don't have to restart the web server when you make code changes.
7
- config.cache_classes = false
8
-
9
- # Do not eager load code on boot.
10
- config.eager_load = false
11
-
12
- # Show full error reports and disable caching.
13
- config.consider_all_requests_local = true
14
- config.action_controller.perform_caching = false
15
-
16
- # Don't care if the mailer can't send.
17
- config.action_mailer.raise_delivery_errors = false
18
-
19
- # Print deprecation notices to the Rails logger.
20
- config.active_support.deprecation = :log
21
-
22
- # Raise an error on page load if there are pending migrations
23
- config.active_record.migration_error = :page_load
24
-
25
- # Debug mode disables concatenation and preprocessing of assets.
26
- # This option may cause significant delays in view rendering with a large
27
- # number of complex assets.
28
- config.assets.debug = true
29
- end
@@ -1,80 +0,0 @@
1
- Rails401::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb.
3
-
4
- # Code is not reloaded between requests.
5
- config.cache_classes = true
6
-
7
- # Eager load code on boot. This eager loads most of Rails and
8
- # your application in memory, allowing both thread web servers
9
- # and those relying on copy on write to perform better.
10
- # Rake tasks automatically ignore this option for performance.
11
- config.eager_load = true
12
-
13
- # Full error reports are disabled and caching is turned on.
14
- config.consider_all_requests_local = false
15
- config.action_controller.perform_caching = true
16
-
17
- # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
- # Add `rack-cache` to your Gemfile before enabling this.
19
- # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
- # config.action_dispatch.rack_cache = true
21
-
22
- # Disable Rails's static asset server (Apache or nginx will already do this).
23
- config.serve_static_assets = false
24
-
25
- # Compress JavaScripts and CSS.
26
- config.assets.js_compressor = :uglifier
27
- # config.assets.css_compressor = :sass
28
-
29
- # Do not fallback to assets pipeline if a precompiled asset is missed.
30
- config.assets.compile = false
31
-
32
- # Generate digests for assets URLs.
33
- config.assets.digest = true
34
-
35
- # Version of your assets, change this if you want to expire all your assets.
36
- config.assets.version = '1.0'
37
-
38
- # Specifies the header that your server uses for sending files.
39
- # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
- # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
-
42
- # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
- # config.force_ssl = true
44
-
45
- # Set to :debug to see everything in the log.
46
- config.log_level = :info
47
-
48
- # Prepend all log lines with the following tags.
49
- # config.log_tags = [ :subdomain, :uuid ]
50
-
51
- # Use a different logger for distributed setups.
52
- # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
-
54
- # Use a different cache store in production.
55
- # config.cache_store = :mem_cache_store
56
-
57
- # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
- # config.action_controller.asset_host = "http://assets.example.com"
59
-
60
- # Precompile additional assets.
61
- # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
- # config.assets.precompile += %w( search.js )
63
-
64
- # Ignore bad email addresses and do not raise email delivery errors.
65
- # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66
- # config.action_mailer.raise_delivery_errors = false
67
-
68
- # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
- # the I18n.default_locale when a translation can not be found).
70
- config.i18n.fallbacks = true
71
-
72
- # Send deprecation notices to registered listeners.
73
- config.active_support.deprecation = :notify
74
-
75
- # Disable automatic flushing of the log to improve performance.
76
- # config.autoflush_log = false
77
-
78
- # Use default logging formatter so that PID and timestamp are not suppressed.
79
- config.log_formatter = ::Logger::Formatter.new
80
- end
@@ -1,36 +0,0 @@
1
- Rails401::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb.
3
-
4
- # The test environment is used exclusively to run your application's
5
- # test suite. You never need to work with it otherwise. Remember that
6
- # your test database is "scratch space" for the test suite and is wiped
7
- # and recreated between test runs. Don't rely on the data there!
8
- config.cache_classes = true
9
-
10
- # Do not eager load code on boot. This avoids loading your whole application
11
- # just for the purpose of running a single test. If you are using a tool that
12
- # preloads Rails for running tests, you may have to set it to true.
13
- config.eager_load = false
14
-
15
- # Configure static asset server for tests with Cache-Control for performance.
16
- config.serve_static_assets = true
17
- config.static_cache_control = "public, max-age=3600"
18
-
19
- # Show full error reports and disable caching.
20
- config.consider_all_requests_local = true
21
- config.action_controller.perform_caching = false
22
-
23
- # Raise exceptions instead of rendering exception templates.
24
- config.action_dispatch.show_exceptions = false
25
-
26
- # Disable request forgery protection in test environment.
27
- config.action_controller.allow_forgery_protection = false
28
-
29
- # Tell Action Mailer not to deliver emails to the real world.
30
- # The :test delivery method accumulates sent emails in the
31
- # ActionMailer::Base.deliveries array.
32
- config.action_mailer.delivery_method = :test
33
-
34
- # Print deprecation notices to the stderr.
35
- config.active_support.deprecation = :stderr
36
- end