vitals 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 (59) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +22 -0
  3. data/Rakefile +37 -0
  4. data/lib/generators/vitals/templates/vitals_initializer.rb +7 -0
  5. data/lib/generators/vitals/vitals_generator.rb +12 -0
  6. data/lib/tasks/vitals_tasks.rake +4 -0
  7. data/lib/vitals/reporter.rb +23 -0
  8. data/lib/vitals/version.rb +3 -0
  9. data/lib/vitals.rb +33 -0
  10. data/test/dummy/Rakefile +7 -0
  11. data/test/dummy/app/assets/javascripts/application.js +9 -0
  12. data/test/dummy/app/assets/javascripts/tasks.js +2 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  14. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  15. data/test/dummy/app/assets/stylesheets/tasks.css +4 -0
  16. data/test/dummy/app/controllers/application_controller.rb +3 -0
  17. data/test/dummy/app/controllers/tasks_controller.rb +83 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/helpers/tasks_helper.rb +2 -0
  20. data/test/dummy/app/models/task.rb +2 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/test/dummy/app/views/tasks/_form.html.erb +21 -0
  23. data/test/dummy/app/views/tasks/edit.html.erb +6 -0
  24. data/test/dummy/app/views/tasks/index.html.erb +23 -0
  25. data/test/dummy/app/views/tasks/new.html.erb +5 -0
  26. data/test/dummy/app/views/tasks/show.html.erb +10 -0
  27. data/test/dummy/config/application.rb +45 -0
  28. data/test/dummy/config/boot.rb +10 -0
  29. data/test/dummy/config/database.yml +25 -0
  30. data/test/dummy/config/environment.rb +5 -0
  31. data/test/dummy/config/environments/development.rb +30 -0
  32. data/test/dummy/config/environments/production.rb +60 -0
  33. data/test/dummy/config/environments/test.rb +42 -0
  34. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/test/dummy/config/initializers/inflections.rb +10 -0
  36. data/test/dummy/config/initializers/mime_types.rb +5 -0
  37. data/test/dummy/config/initializers/secret_token.rb +7 -0
  38. data/test/dummy/config/initializers/session_store.rb +8 -0
  39. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/test/dummy/config/locales/en.yml +5 -0
  41. data/test/dummy/config/routes.rb +60 -0
  42. data/test/dummy/config.ru +4 -0
  43. data/test/dummy/db/development.sqlite3 +0 -0
  44. data/test/dummy/db/migrate/20110917182114_create_tasks.rb +9 -0
  45. data/test/dummy/db/test.sqlite3 +0 -0
  46. data/test/dummy/log/development.log +55 -0
  47. data/test/dummy/log/test.log +0 -0
  48. data/test/dummy/public/404.html +26 -0
  49. data/test/dummy/public/422.html +26 -0
  50. data/test/dummy/public/500.html +26 -0
  51. data/test/dummy/public/favicon.ico +0 -0
  52. data/test/dummy/script/rails +6 -0
  53. data/test/dummy/test/fixtures/tasks.yml +7 -0
  54. data/test/dummy/test/functional/tasks_controller_test.rb +49 -0
  55. data/test/dummy/test/unit/helpers/tasks_helper_test.rb +4 -0
  56. data/test/dummy/test/unit/task_test.rb +7 -0
  57. data/test/test_helper.rb +10 -0
  58. data/test/vitals_test.rb +7 -0
  59. metadata +192 -0
@@ -0,0 +1,42 @@
1
+ Dummy::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
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
33
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
34
+ # like if you have constraints or database-specific column types
35
+ # config.active_record.schema_format = :sql
36
+
37
+ # Print deprecation notices to the stderr
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Allow pass debug_assets=true as a query parameter to load pages with unpackaged assets
41
+ config.assets.allow_debugging = true
42
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'e23edbd630e62fc6fdae4f61fa1913a6b02434044b8ddaf25c8cb591ce89928c686f19181b8b46d66e460206d63e6a37a064b2dfc1ffed290106c3289230085d'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
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
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,60 @@
1
+ Dummy::Application.routes.draw do
2
+ resources :tasks
3
+
4
+ # The priority is based upon order of creation:
5
+ # first created -> highest priority.
6
+
7
+ # Sample of regular route:
8
+ # match 'products/:id' => 'catalog#view'
9
+ # Keep in mind you can assign values other than :controller and :action
10
+
11
+ # Sample of named route:
12
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
13
+ # This route can be invoked with purchase_url(:id => product.id)
14
+
15
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
16
+ # resources :products
17
+
18
+ # Sample resource route with options:
19
+ # resources :products do
20
+ # member do
21
+ # get 'short'
22
+ # post 'toggle'
23
+ # end
24
+ #
25
+ # collection do
26
+ # get 'sold'
27
+ # end
28
+ # end
29
+
30
+ # Sample resource route with sub-resources:
31
+ # resources :products do
32
+ # resources :comments, :sales
33
+ # resource :seller
34
+ # end
35
+
36
+ # Sample resource route with more complex sub-resources
37
+ # resources :products do
38
+ # resources :comments
39
+ # resources :sales do
40
+ # get 'recent', :on => :collection
41
+ # end
42
+ # end
43
+
44
+ # Sample resource route within a namespace:
45
+ # namespace :admin do
46
+ # # Directs /admin/products/* to Admin::ProductsController
47
+ # # (app/controllers/admin/products_controller.rb)
48
+ # resources :products
49
+ # end
50
+
51
+ # You can have the root of your site routed with "root"
52
+ # just remember to delete public/index.html.
53
+ # root :to => 'welcome#index'
54
+
55
+ # See how all your routes lay out with "rake routes"
56
+
57
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
58
+ # Note: This route will make all actions in every controller accessible via GET requests.
59
+ # match ':controller(/:action(/:id(.:format)))'
60
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
File without changes
@@ -0,0 +1,9 @@
1
+ class CreateTasks < ActiveRecord::Migration
2
+ def change
3
+ create_table :tasks do |t|
4
+ t.string :title
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
File without changes
@@ -0,0 +1,55 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2011-09-17 19:48:48 +0300
4
+
5
+ ActionController::RoutingError (No route matches [GET] "/"):
6
+
7
+
8
+
9
+
10
+ Started GET "/" for 127.0.0.1 at 2011-09-17 19:50:18 +0300
11
+
12
+ ActionController::RoutingError (No route matches [GET] "/"):
13
+
14
+
15
+ Rendered /home/jondot/.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.1ms)
16
+
17
+
18
+ Started GET "/" for 127.0.0.1 at 2011-09-17 20:08:02 +0300
19
+
20
+ ActionController::RoutingError (No route matches [GET] "/"):
21
+
22
+
23
+ Rendered /home/jondot/.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.5ms)
24
+
25
+
26
+ Started GET "/" for 127.0.0.1 at 2011-09-17 20:09:06 +0300
27
+
28
+ ActionController::RoutingError (No route matches [GET] "/"):
29
+
30
+
31
+ Rendered /home/jondot/.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (16.1ms)
32
+
33
+
34
+ Started GET "/" for 127.0.0.1 at 2011-09-17 20:09:13 +0300
35
+
36
+ ActionController::RoutingError (No route matches [GET] "/"):
37
+
38
+
39
+ Rendered /home/jondot/.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.6ms)
40
+
41
+
42
+ Started GET "/" for 127.0.0.1 at 2011-09-17 20:19:11 +0300
43
+
44
+ ActionController::RoutingError (No route matches [GET] "/"):
45
+
46
+
47
+ Rendered /home/jondot/.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.9ms)
48
+
49
+
50
+ Started GET "/" for 127.0.0.1 at 2011-09-17 20:19:18 +0300
51
+
52
+ ActionController::RoutingError (No route matches [GET] "/"):
53
+
54
+
55
+ Rendered /home/jondot/.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
File without changes
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/Fixtures.html
2
+
3
+ one:
4
+ title: MyString
5
+
6
+ two:
7
+ title: MyString
@@ -0,0 +1,49 @@
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: @task.attributes
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.to_param
29
+ assert_response :success
30
+ end
31
+
32
+ test "should get edit" do
33
+ get :edit, id: @task.to_param
34
+ assert_response :success
35
+ end
36
+
37
+ test "should update task" do
38
+ put :update, id: @task.to_param, task: @task.attributes
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.to_param
45
+ end
46
+
47
+ assert_redirected_to tasks_path
48
+ end
49
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class TasksHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class TaskTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,10 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class VitalsTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Vitals
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,192 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vitals
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Dotan Nahum
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-10-01 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: &86802230 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.1.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *86802230
25
+ - !ruby/object:Gem::Dependency
26
+ name: statsd-ruby
27
+ requirement: &86801930 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *86801930
36
+ - !ruby/object:Gem::Dependency
37
+ name: sqlite3
38
+ requirement: &86801560 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *86801560
47
+ description: A simple Rails 3 gem that reports ActiveSupport Notifications back to
48
+ statsd
49
+ email:
50
+ - jondotan@gmail.com
51
+ executables: []
52
+ extensions: []
53
+ extra_rdoc_files: []
54
+ files:
55
+ - lib/vitals/reporter.rb
56
+ - lib/vitals/version.rb
57
+ - lib/generators/vitals/templates/vitals_initializer.rb
58
+ - lib/generators/vitals/vitals_generator.rb
59
+ - lib/vitals.rb
60
+ - lib/tasks/vitals_tasks.rake
61
+ - MIT-LICENSE
62
+ - Rakefile
63
+ - README.md
64
+ - test/test_helper.rb
65
+ - test/dummy/config/environment.rb
66
+ - test/dummy/config/boot.rb
67
+ - test/dummy/config/initializers/secret_token.rb
68
+ - test/dummy/config/initializers/inflections.rb
69
+ - test/dummy/config/initializers/wrap_parameters.rb
70
+ - test/dummy/config/initializers/backtrace_silencers.rb
71
+ - test/dummy/config/initializers/session_store.rb
72
+ - test/dummy/config/initializers/mime_types.rb
73
+ - test/dummy/config/locales/en.yml
74
+ - test/dummy/config/database.yml
75
+ - test/dummy/config/environments/development.rb
76
+ - test/dummy/config/environments/production.rb
77
+ - test/dummy/config/environments/test.rb
78
+ - test/dummy/config/routes.rb
79
+ - test/dummy/config/application.rb
80
+ - test/dummy/Rakefile
81
+ - test/dummy/test/fixtures/tasks.yml
82
+ - test/dummy/test/functional/tasks_controller_test.rb
83
+ - test/dummy/test/unit/helpers/tasks_helper_test.rb
84
+ - test/dummy/test/unit/task_test.rb
85
+ - test/dummy/config.ru
86
+ - test/dummy/script/rails
87
+ - test/dummy/public/500.html
88
+ - test/dummy/public/422.html
89
+ - test/dummy/public/404.html
90
+ - test/dummy/public/favicon.ico
91
+ - test/dummy/db/test.sqlite3
92
+ - test/dummy/db/development.sqlite3
93
+ - test/dummy/db/migrate/20110917182114_create_tasks.rb
94
+ - test/dummy/log/test.log
95
+ - test/dummy/log/development.log
96
+ - test/dummy/app/helpers/tasks_helper.rb
97
+ - test/dummy/app/helpers/application_helper.rb
98
+ - test/dummy/app/controllers/application_controller.rb
99
+ - test/dummy/app/controllers/tasks_controller.rb
100
+ - test/dummy/app/models/task.rb
101
+ - test/dummy/app/assets/javascripts/application.js
102
+ - test/dummy/app/assets/javascripts/tasks.js
103
+ - test/dummy/app/assets/stylesheets/application.css
104
+ - test/dummy/app/assets/stylesheets/scaffold.css
105
+ - test/dummy/app/assets/stylesheets/tasks.css
106
+ - test/dummy/app/views/tasks/new.html.erb
107
+ - test/dummy/app/views/tasks/_form.html.erb
108
+ - test/dummy/app/views/tasks/show.html.erb
109
+ - test/dummy/app/views/tasks/index.html.erb
110
+ - test/dummy/app/views/tasks/edit.html.erb
111
+ - test/dummy/app/views/layouts/application.html.erb
112
+ - test/vitals_test.rb
113
+ homepage: http://blog.paracode.com
114
+ licenses: []
115
+ post_install_message:
116
+ rdoc_options: []
117
+ require_paths:
118
+ - lib
119
+ required_ruby_version: !ruby/object:Gem::Requirement
120
+ none: false
121
+ requirements:
122
+ - - ! '>='
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ segments:
126
+ - 0
127
+ hash: 555693341
128
+ required_rubygems_version: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ segments:
135
+ - 0
136
+ hash: 555693341
137
+ requirements: []
138
+ rubyforge_project:
139
+ rubygems_version: 1.8.7
140
+ signing_key:
141
+ specification_version: 3
142
+ summary: A simple Rails 3 gem that reports ActiveSupport Notifications back to statsd
143
+ test_files:
144
+ - test/test_helper.rb
145
+ - test/dummy/config/environment.rb
146
+ - test/dummy/config/boot.rb
147
+ - test/dummy/config/initializers/secret_token.rb
148
+ - test/dummy/config/initializers/inflections.rb
149
+ - test/dummy/config/initializers/wrap_parameters.rb
150
+ - test/dummy/config/initializers/backtrace_silencers.rb
151
+ - test/dummy/config/initializers/session_store.rb
152
+ - test/dummy/config/initializers/mime_types.rb
153
+ - test/dummy/config/locales/en.yml
154
+ - test/dummy/config/database.yml
155
+ - test/dummy/config/environments/development.rb
156
+ - test/dummy/config/environments/production.rb
157
+ - test/dummy/config/environments/test.rb
158
+ - test/dummy/config/routes.rb
159
+ - test/dummy/config/application.rb
160
+ - test/dummy/Rakefile
161
+ - test/dummy/test/fixtures/tasks.yml
162
+ - test/dummy/test/functional/tasks_controller_test.rb
163
+ - test/dummy/test/unit/helpers/tasks_helper_test.rb
164
+ - test/dummy/test/unit/task_test.rb
165
+ - test/dummy/config.ru
166
+ - test/dummy/script/rails
167
+ - test/dummy/public/500.html
168
+ - test/dummy/public/422.html
169
+ - test/dummy/public/404.html
170
+ - test/dummy/public/favicon.ico
171
+ - test/dummy/db/test.sqlite3
172
+ - test/dummy/db/development.sqlite3
173
+ - test/dummy/db/migrate/20110917182114_create_tasks.rb
174
+ - test/dummy/log/test.log
175
+ - test/dummy/log/development.log
176
+ - test/dummy/app/helpers/tasks_helper.rb
177
+ - test/dummy/app/helpers/application_helper.rb
178
+ - test/dummy/app/controllers/application_controller.rb
179
+ - test/dummy/app/controllers/tasks_controller.rb
180
+ - test/dummy/app/models/task.rb
181
+ - test/dummy/app/assets/javascripts/application.js
182
+ - test/dummy/app/assets/javascripts/tasks.js
183
+ - test/dummy/app/assets/stylesheets/application.css
184
+ - test/dummy/app/assets/stylesheets/scaffold.css
185
+ - test/dummy/app/assets/stylesheets/tasks.css
186
+ - test/dummy/app/views/tasks/new.html.erb
187
+ - test/dummy/app/views/tasks/_form.html.erb
188
+ - test/dummy/app/views/tasks/show.html.erb
189
+ - test/dummy/app/views/tasks/index.html.erb
190
+ - test/dummy/app/views/tasks/edit.html.erb
191
+ - test/dummy/app/views/layouts/application.html.erb
192
+ - test/vitals_test.rb