├── README ├── chef-test └── chef-repo │ ├── .chef │ ├── chef.json │ └── solo.rb │ ├── README.md │ ├── Rakefile │ ├── certificates │ └── README.md │ ├── chefignore │ ├── config │ └── rake.rb │ ├── cookbooks │ ├── README.md │ ├── aws-sdk │ │ ├── README.md │ │ ├── metadata.rb │ │ └── recipes │ │ │ └── default.rb │ ├── passenger │ │ ├── README.md │ │ ├── metadata.rb │ │ ├── recipes │ │ │ └── default.rb │ │ └── templates │ │ │ └── default │ │ │ └── passenger_load.conf.erb │ └── sample-blog │ │ ├── README.md │ │ ├── metadata.rb │ │ ├── recipes │ │ └── default.rb │ │ └── templates │ │ └── default │ │ └── sample-blog.conf.erb │ ├── data_bags │ └── README.md │ ├── environments │ └── README.md │ └── roles │ └── README.md ├── images └── slack_irc_bot │ └── slack_irc_bot.png ├── jenkins-ircbot ├── jenkins_api.rb ├── test_bot.rb └── test_bot_main.rb ├── sample-blog ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.rdoc ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ └── rails.png │ │ ├── javascripts │ │ │ ├── application.js │ │ │ └── reports.js.coffee │ │ └── stylesheets │ │ │ ├── application.css │ │ │ ├── reports.css.scss │ │ │ └── scaffolds.css.scss │ ├── controllers │ │ ├── application_controller.rb │ │ └── reports_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ └── reports_helper.rb │ ├── mailers │ │ └── .gitkeep │ ├── models │ │ ├── .gitkeep │ │ ├── report.rb │ │ └── user.rb │ └── views │ │ ├── devise │ │ ├── confirmations │ │ │ └── new.html.erb │ │ ├── mailer │ │ │ ├── confirmation_instructions.html.erb │ │ │ ├── reset_password_instructions.html.erb │ │ │ └── unlock_instructions.html.erb │ │ ├── passwords │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── registrations │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── sessions │ │ │ └── new.html.erb │ │ ├── shared │ │ │ └── _links.erb │ │ └── unlocks │ │ │ └── new.html.erb │ │ ├── error.html.erb │ │ ├── layouts │ │ └── application.html.erb │ │ └── reports │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── backtrace_silencers.rb │ │ ├── devise.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── secret_token.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── devise.en.yml │ │ └── en.yml │ └── routes.rb ├── db │ ├── migrate │ │ ├── 20120523023725_devise_create_users.rb │ │ └── 20120523025253_create_reports.rb │ ├── schema.rb │ └── seeds.rb ├── doc │ └── README_FOR_APP ├── lib │ ├── assets │ │ └── .gitkeep │ ├── blog_exception.rb │ └── tasks │ │ └── .gitkeep ├── log │ └── .gitkeep ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ └── robots.txt ├── script │ └── rails ├── test │ ├── fixtures │ │ ├── .gitkeep │ │ ├── reports.yml │ │ └── users.yml │ ├── functional │ │ ├── .gitkeep │ │ ├── _reports_controller │ │ │ ├── create_test.rb │ │ │ ├── destroy_test.rb │ │ │ ├── edit_test.rb │ │ │ ├── index_test.rb │ │ │ ├── new_test.rb │ │ │ ├── show_test.rb │ │ │ ├── test_case.rb │ │ │ └── update_test.rb │ │ └── reports_controller_test.rb │ ├── integration │ │ └── .gitkeep │ ├── performance │ │ └── browsing_test.rb │ ├── test_helper.rb │ └── unit │ │ ├── .gitkeep │ │ ├── helpers │ │ └── reports_helper_test.rb │ │ └── report_test.rb └── vendor │ ├── assets │ ├── javascripts │ │ └── .gitkeep │ └── stylesheets │ │ └── .gitkeep │ └── plugins │ └── .gitkeep └── wiki-image ├── ec2state_from_elb.jpg ├── ec2state_from_elb.png └── vpc-elf-to-private-subnet.png /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chef-test/chef-repo/.chef/chef.json: -------------------------------------------------------------------------------- 1 | { 2 | "run_list": [ "recipe[sample-blog]" ] 3 | } 4 | -------------------------------------------------------------------------------- /chef-test/chef-repo/.chef/solo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/.chef/solo.rb -------------------------------------------------------------------------------- /chef-test/chef-repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/README.md -------------------------------------------------------------------------------- /chef-test/chef-repo/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/Rakefile -------------------------------------------------------------------------------- /chef-test/chef-repo/certificates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/certificates/README.md -------------------------------------------------------------------------------- /chef-test/chef-repo/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/chefignore -------------------------------------------------------------------------------- /chef-test/chef-repo/config/rake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/config/rake.rb -------------------------------------------------------------------------------- /chef-test/chef-repo/cookbooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/cookbooks/README.md -------------------------------------------------------------------------------- /chef-test/chef-repo/cookbooks/aws-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/cookbooks/aws-sdk/README.md -------------------------------------------------------------------------------- /chef-test/chef-repo/cookbooks/aws-sdk/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/cookbooks/aws-sdk/metadata.rb -------------------------------------------------------------------------------- /chef-test/chef-repo/cookbooks/aws-sdk/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/cookbooks/aws-sdk/recipes/default.rb -------------------------------------------------------------------------------- /chef-test/chef-repo/cookbooks/passenger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/cookbooks/passenger/README.md -------------------------------------------------------------------------------- /chef-test/chef-repo/cookbooks/passenger/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/cookbooks/passenger/metadata.rb -------------------------------------------------------------------------------- /chef-test/chef-repo/cookbooks/passenger/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/cookbooks/passenger/recipes/default.rb -------------------------------------------------------------------------------- /chef-test/chef-repo/cookbooks/passenger/templates/default/passenger_load.conf.erb: -------------------------------------------------------------------------------- 1 | <%= @snippet.call %> 2 | -------------------------------------------------------------------------------- /chef-test/chef-repo/cookbooks/sample-blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/cookbooks/sample-blog/README.md -------------------------------------------------------------------------------- /chef-test/chef-repo/cookbooks/sample-blog/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/cookbooks/sample-blog/metadata.rb -------------------------------------------------------------------------------- /chef-test/chef-repo/cookbooks/sample-blog/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/cookbooks/sample-blog/recipes/default.rb -------------------------------------------------------------------------------- /chef-test/chef-repo/cookbooks/sample-blog/templates/default/sample-blog.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/cookbooks/sample-blog/templates/default/sample-blog.conf.erb -------------------------------------------------------------------------------- /chef-test/chef-repo/data_bags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/data_bags/README.md -------------------------------------------------------------------------------- /chef-test/chef-repo/environments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/environments/README.md -------------------------------------------------------------------------------- /chef-test/chef-repo/roles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/chef-test/chef-repo/roles/README.md -------------------------------------------------------------------------------- /images/slack_irc_bot/slack_irc_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/images/slack_irc_bot/slack_irc_bot.png -------------------------------------------------------------------------------- /jenkins-ircbot/jenkins_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/jenkins-ircbot/jenkins_api.rb -------------------------------------------------------------------------------- /jenkins-ircbot/test_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/jenkins-ircbot/test_bot.rb -------------------------------------------------------------------------------- /jenkins-ircbot/test_bot_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/jenkins-ircbot/test_bot_main.rb -------------------------------------------------------------------------------- /sample-blog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/.gitignore -------------------------------------------------------------------------------- /sample-blog/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/Gemfile -------------------------------------------------------------------------------- /sample-blog/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/Gemfile.lock -------------------------------------------------------------------------------- /sample-blog/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/README.rdoc -------------------------------------------------------------------------------- /sample-blog/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/Rakefile -------------------------------------------------------------------------------- /sample-blog/app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/assets/images/rails.png -------------------------------------------------------------------------------- /sample-blog/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /sample-blog/app/assets/javascripts/reports.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/assets/javascripts/reports.js.coffee -------------------------------------------------------------------------------- /sample-blog/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /sample-blog/app/assets/stylesheets/reports.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/assets/stylesheets/reports.css.scss -------------------------------------------------------------------------------- /sample-blog/app/assets/stylesheets/scaffolds.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/assets/stylesheets/scaffolds.css.scss -------------------------------------------------------------------------------- /sample-blog/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /sample-blog/app/controllers/reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/controllers/reports_controller.rb -------------------------------------------------------------------------------- /sample-blog/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /sample-blog/app/helpers/reports_helper.rb: -------------------------------------------------------------------------------- 1 | module ReportsHelper 2 | end 3 | -------------------------------------------------------------------------------- /sample-blog/app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-blog/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-blog/app/models/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/models/report.rb -------------------------------------------------------------------------------- /sample-blog/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/models/user.rb -------------------------------------------------------------------------------- /sample-blog/app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/devise/shared/_links.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/devise/shared/_links.erb -------------------------------------------------------------------------------- /sample-blog/app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/error.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/reports/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/reports/_form.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/reports/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/reports/edit.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/reports/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/reports/index.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/reports/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/reports/new.html.erb -------------------------------------------------------------------------------- /sample-blog/app/views/reports/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/app/views/reports/show.html.erb -------------------------------------------------------------------------------- /sample-blog/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config.ru -------------------------------------------------------------------------------- /sample-blog/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/application.rb -------------------------------------------------------------------------------- /sample-blog/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/boot.rb -------------------------------------------------------------------------------- /sample-blog/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/database.yml -------------------------------------------------------------------------------- /sample-blog/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/environment.rb -------------------------------------------------------------------------------- /sample-blog/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/environments/development.rb -------------------------------------------------------------------------------- /sample-blog/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/environments/production.rb -------------------------------------------------------------------------------- /sample-blog/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/environments/test.rb -------------------------------------------------------------------------------- /sample-blog/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /sample-blog/config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/initializers/devise.rb -------------------------------------------------------------------------------- /sample-blog/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/initializers/inflections.rb -------------------------------------------------------------------------------- /sample-blog/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /sample-blog/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /sample-blog/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/initializers/session_store.rb -------------------------------------------------------------------------------- /sample-blog/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /sample-blog/config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/locales/devise.en.yml -------------------------------------------------------------------------------- /sample-blog/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/locales/en.yml -------------------------------------------------------------------------------- /sample-blog/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/config/routes.rb -------------------------------------------------------------------------------- /sample-blog/db/migrate/20120523023725_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/db/migrate/20120523023725_devise_create_users.rb -------------------------------------------------------------------------------- /sample-blog/db/migrate/20120523025253_create_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/db/migrate/20120523025253_create_reports.rb -------------------------------------------------------------------------------- /sample-blog/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/db/schema.rb -------------------------------------------------------------------------------- /sample-blog/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/db/seeds.rb -------------------------------------------------------------------------------- /sample-blog/doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/doc/README_FOR_APP -------------------------------------------------------------------------------- /sample-blog/lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-blog/lib/blog_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/lib/blog_exception.rb -------------------------------------------------------------------------------- /sample-blog/lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-blog/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-blog/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/public/404.html -------------------------------------------------------------------------------- /sample-blog/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/public/422.html -------------------------------------------------------------------------------- /sample-blog/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/public/500.html -------------------------------------------------------------------------------- /sample-blog/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-blog/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/public/robots.txt -------------------------------------------------------------------------------- /sample-blog/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/script/rails -------------------------------------------------------------------------------- /sample-blog/test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-blog/test/fixtures/reports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/fixtures/reports.yml -------------------------------------------------------------------------------- /sample-blog/test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/fixtures/users.yml -------------------------------------------------------------------------------- /sample-blog/test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-blog/test/functional/_reports_controller/create_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/functional/_reports_controller/create_test.rb -------------------------------------------------------------------------------- /sample-blog/test/functional/_reports_controller/destroy_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/functional/_reports_controller/destroy_test.rb -------------------------------------------------------------------------------- /sample-blog/test/functional/_reports_controller/edit_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/functional/_reports_controller/edit_test.rb -------------------------------------------------------------------------------- /sample-blog/test/functional/_reports_controller/index_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/functional/_reports_controller/index_test.rb -------------------------------------------------------------------------------- /sample-blog/test/functional/_reports_controller/new_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/functional/_reports_controller/new_test.rb -------------------------------------------------------------------------------- /sample-blog/test/functional/_reports_controller/show_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/functional/_reports_controller/show_test.rb -------------------------------------------------------------------------------- /sample-blog/test/functional/_reports_controller/test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/functional/_reports_controller/test_case.rb -------------------------------------------------------------------------------- /sample-blog/test/functional/_reports_controller/update_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/functional/_reports_controller/update_test.rb -------------------------------------------------------------------------------- /sample-blog/test/functional/reports_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/functional/reports_controller_test.rb -------------------------------------------------------------------------------- /sample-blog/test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-blog/test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /sample-blog/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/test_helper.rb -------------------------------------------------------------------------------- /sample-blog/test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-blog/test/unit/helpers/reports_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/unit/helpers/reports_helper_test.rb -------------------------------------------------------------------------------- /sample-blog/test/unit/report_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/sample-blog/test/unit/report_test.rb -------------------------------------------------------------------------------- /sample-blog/vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-blog/vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-blog/vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wiki-image/ec2state_from_elb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/wiki-image/ec2state_from_elb.jpg -------------------------------------------------------------------------------- /wiki-image/ec2state_from_elb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/wiki-image/ec2state_from_elb.png -------------------------------------------------------------------------------- /wiki-image/vpc-elf-to-private-subnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mechamogera/MyTips/HEAD/wiki-image/vpc-elf-to-private-subnet.png --------------------------------------------------------------------------------