├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README-railscomposer ├── README-railscomposer.textile ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── images │ │ └── winning-lottery-ticket.jpg │ ├── javascripts │ │ └── application.js │ └── stylesheets │ │ └── application.scss ├── controllers │ ├── application_controller.rb │ ├── async_controller.rb │ ├── big_list_controller.rb │ ├── caching_controller.rb │ ├── errors_controller.rb │ ├── home_controller.rb │ ├── loop_controller.rb │ ├── many_assets_controller.rb │ └── tweets_controller.rb ├── helpers │ ├── application_helper.rb │ ├── async_helper.rb │ ├── big_list_helper.rb │ ├── caching_helper.rb │ ├── errors_helper.rb │ ├── home_helper.rb │ ├── loop_helper.rb │ ├── many_assets_helper.rb │ └── tweets_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ ├── car.rb │ ├── driver.rb │ ├── icon.rb │ ├── page_content.rb │ └── web_site.rb └── views │ ├── async │ └── index.html.erb │ ├── big_list │ └── index.html.erb │ ├── caching │ └── index.html.erb │ ├── errors │ └── index.html.erb │ ├── home │ └── index.html.erb │ ├── layouts │ ├── _messages.html.erb │ ├── _navigation.html.erb │ └── application.html.erb │ ├── loop │ └── index.html.erb │ ├── many_assets │ └── index.html.erb │ └── tweets │ └── index.html.erb ├── bin ├── bundle ├── rails ├── rake └── setup ├── cloud9 ├── Kata-Setup │ ├── 1.kata-install.sh │ └── 2.kata-setup.sh ├── README.md ├── kata-start.sh └── userdata.sh ├── cloud9_amazon_linux2 ├── Kata-Setup │ ├── 1.environment-setup.sh │ ├── 2.kata-install.sh │ ├── 3.ruby-install.sh │ └── 4.kata-setup.sh ├── README.md └── kata-start.sh ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── generators.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── newrelic.yml ├── puma.rb ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20130219235527_create_drivers.rb │ ├── 20130220011530_create_web_sites.rb │ ├── 20130221072101_create_page_contents.rb │ └── 20130221160705_create_icons.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .gitkeep └── tasks │ ├── .gitkeep │ └── content.rake ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── humans.txt ├── robots.txt └── sample-data.dump ├── script └── rails ├── test ├── fixtures │ ├── .gitkeep │ ├── cars.yml │ ├── drivers.yml │ └── web_sites.yml ├── functional │ ├── .gitkeep │ ├── async_controller_test.rb │ ├── big_list_controller_test.rb │ ├── caching_controller_test.rb │ ├── errors_controller_test.rb │ ├── home_controller_test.rb │ ├── loop_controller_test.rb │ └── tweets_controller_test.rb ├── integration │ └── .gitkeep ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ ├── .gitkeep │ ├── car_test.rb │ ├── driver_test.rb │ ├── helpers │ ├── async_helper_test.rb │ ├── big_list_helper_test.rb │ ├── caching_helper_test.rb │ ├── errors_helper_test.rb │ ├── home_helper_test.rb │ ├── loop_helper_test.rb │ └── tweets_helper_test.rb │ └── web_site_test.rb └── vendor ├── assets ├── javascripts │ └── .gitkeep └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/Procfile -------------------------------------------------------------------------------- /README-railscomposer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/README-railscomposer -------------------------------------------------------------------------------- /README-railscomposer.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/README-railscomposer.textile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/images/winning-lottery-ticket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/assets/images/winning-lottery-ticket.jpg -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/async_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/controllers/async_controller.rb -------------------------------------------------------------------------------- /app/controllers/big_list_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/controllers/big_list_controller.rb -------------------------------------------------------------------------------- /app/controllers/caching_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/controllers/caching_controller.rb -------------------------------------------------------------------------------- /app/controllers/errors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/controllers/errors_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/loop_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/controllers/loop_controller.rb -------------------------------------------------------------------------------- /app/controllers/many_assets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/controllers/many_assets_controller.rb -------------------------------------------------------------------------------- /app/controllers/tweets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/controllers/tweets_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/async_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/helpers/async_helper.rb -------------------------------------------------------------------------------- /app/helpers/big_list_helper.rb: -------------------------------------------------------------------------------- 1 | module BigListHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/caching_helper.rb: -------------------------------------------------------------------------------- 1 | module CachingHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/errors_helper.rb: -------------------------------------------------------------------------------- 1 | module ErrorsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/loop_helper.rb: -------------------------------------------------------------------------------- 1 | module LoopHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/many_assets_helper.rb: -------------------------------------------------------------------------------- 1 | module ManyAssetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/tweets_helper.rb: -------------------------------------------------------------------------------- 1 | module TweetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/car.rb: -------------------------------------------------------------------------------- 1 | class Car < ActiveRecord::Base 2 | has_many :drivers 3 | end 4 | -------------------------------------------------------------------------------- /app/models/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/models/driver.rb -------------------------------------------------------------------------------- /app/models/icon.rb: -------------------------------------------------------------------------------- 1 | class Icon < ActiveRecord::Base 2 | belongs_to :web_site 3 | end 4 | -------------------------------------------------------------------------------- /app/models/page_content.rb: -------------------------------------------------------------------------------- 1 | class PageContent < ActiveRecord::Base 2 | belongs_to :web_site 3 | end 4 | -------------------------------------------------------------------------------- /app/models/web_site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/models/web_site.rb -------------------------------------------------------------------------------- /app/views/async/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/views/async/index.html.erb -------------------------------------------------------------------------------- /app/views/big_list/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/views/big_list/index.html.erb -------------------------------------------------------------------------------- /app/views/caching/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/views/caching/index.html.erb -------------------------------------------------------------------------------- /app/views/errors/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/views/errors/index.html.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/views/layouts/_messages.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/views/layouts/_navigation.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/loop/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/views/loop/index.html.erb -------------------------------------------------------------------------------- /app/views/many_assets/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/views/many_assets/index.html.erb -------------------------------------------------------------------------------- /app/views/tweets/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/app/views/tweets/index.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/bin/setup -------------------------------------------------------------------------------- /cloud9/Kata-Setup/1.kata-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/cloud9/Kata-Setup/1.kata-install.sh -------------------------------------------------------------------------------- /cloud9/Kata-Setup/2.kata-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/cloud9/Kata-Setup/2.kata-setup.sh -------------------------------------------------------------------------------- /cloud9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/cloud9/README.md -------------------------------------------------------------------------------- /cloud9/kata-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/cloud9/kata-start.sh -------------------------------------------------------------------------------- /cloud9/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/cloud9/userdata.sh -------------------------------------------------------------------------------- /cloud9_amazon_linux2/Kata-Setup/1.environment-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/cloud9_amazon_linux2/Kata-Setup/1.environment-setup.sh -------------------------------------------------------------------------------- /cloud9_amazon_linux2/Kata-Setup/2.kata-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/cloud9_amazon_linux2/Kata-Setup/2.kata-install.sh -------------------------------------------------------------------------------- /cloud9_amazon_linux2/Kata-Setup/3.ruby-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/cloud9_amazon_linux2/Kata-Setup/3.ruby-install.sh -------------------------------------------------------------------------------- /cloud9_amazon_linux2/Kata-Setup/4.kata-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/cloud9_amazon_linux2/Kata-Setup/4.kata-setup.sh -------------------------------------------------------------------------------- /cloud9_amazon_linux2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/cloud9_amazon_linux2/README.md -------------------------------------------------------------------------------- /cloud9_amazon_linux2/kata-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/cloud9_amazon_linux2/kata-start.sh -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/generators.rb: -------------------------------------------------------------------------------- 1 | Rails.application.config.generators do |g| 2 | end 3 | -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/migrate/20130219235527_create_drivers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/db/migrate/20130219235527_create_drivers.rb -------------------------------------------------------------------------------- /db/migrate/20130220011530_create_web_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/db/migrate/20130220011530_create_web_sites.rb -------------------------------------------------------------------------------- /db/migrate/20130221072101_create_page_contents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/db/migrate/20130221072101_create_page_contents.rb -------------------------------------------------------------------------------- /db/migrate/20130221160705_create_icons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/db/migrate/20130221160705_create_icons.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/content.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/lib/tasks/content.rake -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/public/humans.txt -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sample-data.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/public/sample-data.dump -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/script/rails -------------------------------------------------------------------------------- /test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/cars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/fixtures/cars.yml -------------------------------------------------------------------------------- /test/fixtures/drivers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/fixtures/drivers.yml -------------------------------------------------------------------------------- /test/fixtures/web_sites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/fixtures/web_sites.yml -------------------------------------------------------------------------------- /test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/functional/async_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/functional/async_controller_test.rb -------------------------------------------------------------------------------- /test/functional/big_list_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/functional/big_list_controller_test.rb -------------------------------------------------------------------------------- /test/functional/caching_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/functional/caching_controller_test.rb -------------------------------------------------------------------------------- /test/functional/errors_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/functional/errors_controller_test.rb -------------------------------------------------------------------------------- /test/functional/home_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/functional/home_controller_test.rb -------------------------------------------------------------------------------- /test/functional/loop_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/functional/loop_controller_test.rb -------------------------------------------------------------------------------- /test/functional/tweets_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/functional/tweets_controller_test.rb -------------------------------------------------------------------------------- /test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/car_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/unit/car_test.rb -------------------------------------------------------------------------------- /test/unit/driver_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/unit/driver_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/async_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/unit/helpers/async_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/big_list_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/unit/helpers/big_list_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/caching_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/unit/helpers/caching_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/errors_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/unit/helpers/errors_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/home_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/unit/helpers/home_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/loop_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/unit/helpers/loop_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/tweets_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/unit/helpers/tweets_helper_test.rb -------------------------------------------------------------------------------- /test/unit/web_site_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-ruby-kata/HEAD/test/unit/web_site_test.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------