├── .env ├── .env.development ├── .env.test ├── .gitignore ├── .gitmodules ├── .lotusrc ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── apps └── web │ ├── application.rb │ ├── config │ └── routes.rb │ ├── controllers │ └── home │ │ ├── index.rb │ │ └── metrics.rb │ ├── presenters │ └── json_presenter.rb │ ├── public │ ├── favicon.ico │ ├── javascripts │ │ └── .gitkeep │ └── stylesheets │ │ └── .gitkeep │ ├── templates │ ├── application.html.slim │ └── home │ │ └── index.html.slim │ └── views │ ├── application_layout.rb │ └── home │ ├── index.rb │ └── metrics.rb ├── config.ru ├── config └── environment.rb ├── doc └── images │ ├── spreadsheet.png │ ├── web_app.png │ └── wow_amaze_hands.jpg ├── lib ├── amaze_hands.rb ├── amaze_hands │ ├── analyser.rb │ ├── analysers │ │ ├── base.rb │ │ ├── calendar_year_week.rb │ │ ├── cycle_time.rb │ │ ├── cycle_time_per_lane.rb │ │ ├── strategies │ │ │ ├── accumulator.rb │ │ │ ├── time_until_next_movement.rb │ │ │ └── work_days.rb │ │ ├── wait_time.rb │ │ └── wait_time_per_lane.rb │ ├── builder.rb │ ├── builders │ │ ├── base.rb │ │ ├── card_action.rb │ │ ├── card_actions.rb │ │ └── foundation.rb │ ├── debuggers │ │ └── benchmark.rb │ ├── entities │ │ ├── .gitkeep │ │ ├── card.rb │ │ ├── card_action.rb │ │ ├── card_lane.rb │ │ └── intelligence.rb │ ├── producer.rb │ ├── producers │ │ ├── card_lane_producer.rb │ │ ├── card_producer.rb │ │ ├── control_limits_producer.rb │ │ ├── metrics_producer.rb │ │ ├── rolling_average_producer.rb │ │ └── standard_deviation_producer.rb │ ├── reducer.rb │ ├── reducers │ │ ├── base.rb │ │ ├── lane_movement.rb │ │ └── readiness.rb │ ├── repositories │ │ ├── .gitkeep │ │ ├── card_action_repository.rb │ │ ├── card_lane_repository.rb │ │ └── card_repository.rb │ ├── strategies │ │ ├── base_parser.rb │ │ ├── csv │ │ │ ├── lanes.rb │ │ │ ├── parser.rb │ │ │ ├── pre_processor.rb │ │ │ ├── time_maths.rb │ │ │ ├── transformer.rb │ │ │ └── transformers │ │ │ │ ├── actions.rb │ │ │ │ └── date_time.rb │ │ ├── lanes.rb │ │ └── lean_kit │ │ │ ├── lanes.rb │ │ │ ├── parser.rb │ │ │ ├── pre_processor.rb │ │ │ ├── transformer.rb │ │ │ └── transformers │ │ │ ├── actions.rb │ │ │ ├── date_time.rb │ │ │ ├── description.rb │ │ │ ├── readiness.rb │ │ │ ├── service_label.rb │ │ │ └── title.rb │ └── workflow.rb └── config │ ├── mapping.rb │ └── work_days.rb ├── spec ├── amaze_hands │ ├── analyser_spec.rb │ ├── analysers │ │ ├── calendar_year_week_spec.rb │ │ ├── cycle_time_per_lane_spec.rb │ │ ├── cycle_time_spec.rb │ │ ├── strategies │ │ │ ├── accumulator_spec.rb │ │ │ ├── time_until_next_movement_spec.rb │ │ │ └── work_days_spec.rb │ │ ├── wait_time_per_lane_spec.rb │ │ └── wait_time_spec.rb │ ├── builder_spec.rb │ ├── entities │ │ ├── .gitkeep │ │ ├── card_action_spec.rb │ │ ├── card_lane_spec.rb │ │ └── intelligence_spec.rb │ ├── producer_spec.rb │ ├── producers │ │ ├── card_lane_producer_spec.rb │ │ ├── card_producer_spec.rb │ │ ├── control_limits_producer_spec.rb │ │ ├── metrics_producer_spec.rb │ │ ├── rolling_average_producer_spec.rb │ │ └── standard_deviation_producer_spec.rb │ ├── reducer_spec.rb │ ├── reducers │ │ ├── lane_movement_spec.rb │ │ └── readiness_spec.rb │ ├── repositories │ │ ├── .gitkeep │ │ ├── card_action_repository_spec.rb │ │ ├── card_lane_repository_spec.rb │ │ └── card_repository_spec.rb │ ├── strategies │ │ └── lean_kit │ │ │ ├── parser_spec.rb │ │ │ ├── transformer_spec.rb │ │ │ └── transformers │ │ │ ├── actions_spec.rb │ │ │ ├── date_time_spec.rb │ │ │ ├── description_spec.rb │ │ │ ├── readiness_spec.rb │ │ │ ├── service_label_spec.rb │ │ │ └── title_spec.rb │ └── workflow_spec.rb ├── app_helper.rb ├── factories │ ├── card.rb │ ├── card_action.rb │ └── card_lane.rb ├── features_helper.rb ├── fixtures │ └── lean_kit │ │ ├── P-217.txt │ │ ├── P-232.txt │ │ └── P-234.txt ├── spec_helper.rb ├── support │ ├── .gitkeep │ └── shared │ │ ├── contexts │ │ ├── lean_kit.rb │ │ └── service_class.rb │ │ └── examples │ │ └── matchers.rb └── web │ ├── controllers │ └── .gitkeep │ ├── features │ └── .gitkeep │ └── views │ └── .gitkeep └── tmp └── .gitkeep /.env: -------------------------------------------------------------------------------- 1 | # Define ENV variables 2 | -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/.env.development -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/.env.test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | db/*.db 3 | tmp/*.txt 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/.gitmodules -------------------------------------------------------------------------------- /.lotusrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/.lotusrc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec lotus server -p $PORT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/Rakefile -------------------------------------------------------------------------------- /apps/web/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/apps/web/application.rb -------------------------------------------------------------------------------- /apps/web/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/apps/web/config/routes.rb -------------------------------------------------------------------------------- /apps/web/controllers/home/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/apps/web/controllers/home/index.rb -------------------------------------------------------------------------------- /apps/web/controllers/home/metrics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/apps/web/controllers/home/metrics.rb -------------------------------------------------------------------------------- /apps/web/presenters/json_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/apps/web/presenters/json_presenter.rb -------------------------------------------------------------------------------- /apps/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/apps/web/public/favicon.ico -------------------------------------------------------------------------------- /apps/web/public/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /apps/web/public/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /apps/web/templates/application.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/apps/web/templates/application.html.slim -------------------------------------------------------------------------------- /apps/web/templates/home/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/apps/web/templates/home/index.html.slim -------------------------------------------------------------------------------- /apps/web/views/application_layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/apps/web/views/application_layout.rb -------------------------------------------------------------------------------- /apps/web/views/home/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/apps/web/views/home/index.rb -------------------------------------------------------------------------------- /apps/web/views/home/metrics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/apps/web/views/home/metrics.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | require './config/environment' 2 | 3 | run Lotus::Container.new 4 | -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/config/environment.rb -------------------------------------------------------------------------------- /doc/images/spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/doc/images/spreadsheet.png -------------------------------------------------------------------------------- /doc/images/web_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/doc/images/web_app.png -------------------------------------------------------------------------------- /doc/images/wow_amaze_hands.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/doc/images/wow_amaze_hands.jpg -------------------------------------------------------------------------------- /lib/amaze_hands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands.rb -------------------------------------------------------------------------------- /lib/amaze_hands/analyser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/analyser.rb -------------------------------------------------------------------------------- /lib/amaze_hands/analysers/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/analysers/base.rb -------------------------------------------------------------------------------- /lib/amaze_hands/analysers/calendar_year_week.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/analysers/calendar_year_week.rb -------------------------------------------------------------------------------- /lib/amaze_hands/analysers/cycle_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/analysers/cycle_time.rb -------------------------------------------------------------------------------- /lib/amaze_hands/analysers/cycle_time_per_lane.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/analysers/cycle_time_per_lane.rb -------------------------------------------------------------------------------- /lib/amaze_hands/analysers/strategies/accumulator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/analysers/strategies/accumulator.rb -------------------------------------------------------------------------------- /lib/amaze_hands/analysers/strategies/time_until_next_movement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/analysers/strategies/time_until_next_movement.rb -------------------------------------------------------------------------------- /lib/amaze_hands/analysers/strategies/work_days.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/analysers/strategies/work_days.rb -------------------------------------------------------------------------------- /lib/amaze_hands/analysers/wait_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/analysers/wait_time.rb -------------------------------------------------------------------------------- /lib/amaze_hands/analysers/wait_time_per_lane.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/analysers/wait_time_per_lane.rb -------------------------------------------------------------------------------- /lib/amaze_hands/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/builder.rb -------------------------------------------------------------------------------- /lib/amaze_hands/builders/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/builders/base.rb -------------------------------------------------------------------------------- /lib/amaze_hands/builders/card_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/builders/card_action.rb -------------------------------------------------------------------------------- /lib/amaze_hands/builders/card_actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/builders/card_actions.rb -------------------------------------------------------------------------------- /lib/amaze_hands/builders/foundation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/builders/foundation.rb -------------------------------------------------------------------------------- /lib/amaze_hands/debuggers/benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/debuggers/benchmark.rb -------------------------------------------------------------------------------- /lib/amaze_hands/entities/.gitkeep: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /lib/amaze_hands/entities/card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/entities/card.rb -------------------------------------------------------------------------------- /lib/amaze_hands/entities/card_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/entities/card_action.rb -------------------------------------------------------------------------------- /lib/amaze_hands/entities/card_lane.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/entities/card_lane.rb -------------------------------------------------------------------------------- /lib/amaze_hands/entities/intelligence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/entities/intelligence.rb -------------------------------------------------------------------------------- /lib/amaze_hands/producer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/producer.rb -------------------------------------------------------------------------------- /lib/amaze_hands/producers/card_lane_producer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/producers/card_lane_producer.rb -------------------------------------------------------------------------------- /lib/amaze_hands/producers/card_producer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/producers/card_producer.rb -------------------------------------------------------------------------------- /lib/amaze_hands/producers/control_limits_producer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/producers/control_limits_producer.rb -------------------------------------------------------------------------------- /lib/amaze_hands/producers/metrics_producer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/producers/metrics_producer.rb -------------------------------------------------------------------------------- /lib/amaze_hands/producers/rolling_average_producer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/producers/rolling_average_producer.rb -------------------------------------------------------------------------------- /lib/amaze_hands/producers/standard_deviation_producer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/producers/standard_deviation_producer.rb -------------------------------------------------------------------------------- /lib/amaze_hands/reducer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/reducer.rb -------------------------------------------------------------------------------- /lib/amaze_hands/reducers/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/reducers/base.rb -------------------------------------------------------------------------------- /lib/amaze_hands/reducers/lane_movement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/reducers/lane_movement.rb -------------------------------------------------------------------------------- /lib/amaze_hands/reducers/readiness.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/reducers/readiness.rb -------------------------------------------------------------------------------- /lib/amaze_hands/repositories/.gitkeep: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /lib/amaze_hands/repositories/card_action_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/repositories/card_action_repository.rb -------------------------------------------------------------------------------- /lib/amaze_hands/repositories/card_lane_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/repositories/card_lane_repository.rb -------------------------------------------------------------------------------- /lib/amaze_hands/repositories/card_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/repositories/card_repository.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/base_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/base_parser.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/csv/lanes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/csv/lanes.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/csv/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/csv/parser.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/csv/pre_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/csv/pre_processor.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/csv/time_maths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/csv/time_maths.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/csv/transformer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/csv/transformer.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/csv/transformers/actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/csv/transformers/actions.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/csv/transformers/date_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/csv/transformers/date_time.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/lanes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/lanes.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/lean_kit/lanes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/lean_kit/lanes.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/lean_kit/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/lean_kit/parser.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/lean_kit/pre_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/lean_kit/pre_processor.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/lean_kit/transformer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/lean_kit/transformer.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/lean_kit/transformers/actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/lean_kit/transformers/actions.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/lean_kit/transformers/date_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/lean_kit/transformers/date_time.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/lean_kit/transformers/description.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/lean_kit/transformers/description.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/lean_kit/transformers/readiness.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/lean_kit/transformers/readiness.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/lean_kit/transformers/service_label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/lean_kit/transformers/service_label.rb -------------------------------------------------------------------------------- /lib/amaze_hands/strategies/lean_kit/transformers/title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/strategies/lean_kit/transformers/title.rb -------------------------------------------------------------------------------- /lib/amaze_hands/workflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/amaze_hands/workflow.rb -------------------------------------------------------------------------------- /lib/config/mapping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/config/mapping.rb -------------------------------------------------------------------------------- /lib/config/work_days.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/lib/config/work_days.rb -------------------------------------------------------------------------------- /spec/amaze_hands/analyser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/analyser_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/analysers/calendar_year_week_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/analysers/calendar_year_week_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/analysers/cycle_time_per_lane_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/analysers/cycle_time_per_lane_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/analysers/cycle_time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/analysers/cycle_time_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/analysers/strategies/accumulator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/analysers/strategies/accumulator_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/analysers/strategies/time_until_next_movement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/analysers/strategies/time_until_next_movement_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/analysers/strategies/work_days_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/analysers/strategies/work_days_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/analysers/wait_time_per_lane_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/analysers/wait_time_per_lane_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/analysers/wait_time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/analysers/wait_time_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/builder_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/entities/.gitkeep: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /spec/amaze_hands/entities/card_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/entities/card_action_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/entities/card_lane_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/entities/card_lane_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/entities/intelligence_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/entities/intelligence_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/producer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/producer_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/producers/card_lane_producer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/producers/card_lane_producer_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/producers/card_producer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/producers/card_producer_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/producers/control_limits_producer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/producers/control_limits_producer_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/producers/metrics_producer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/producers/metrics_producer_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/producers/rolling_average_producer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/producers/rolling_average_producer_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/producers/standard_deviation_producer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/producers/standard_deviation_producer_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/reducer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/reducer_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/reducers/lane_movement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/reducers/lane_movement_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/reducers/readiness_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/reducers/readiness_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/repositories/.gitkeep: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /spec/amaze_hands/repositories/card_action_repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/repositories/card_action_repository_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/repositories/card_lane_repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/repositories/card_lane_repository_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/repositories/card_repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/repositories/card_repository_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/strategies/lean_kit/parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/strategies/lean_kit/parser_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/strategies/lean_kit/transformer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/strategies/lean_kit/transformer_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/strategies/lean_kit/transformers/actions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/strategies/lean_kit/transformers/actions_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/strategies/lean_kit/transformers/date_time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/strategies/lean_kit/transformers/date_time_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/strategies/lean_kit/transformers/description_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/strategies/lean_kit/transformers/description_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/strategies/lean_kit/transformers/readiness_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/strategies/lean_kit/transformers/readiness_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/strategies/lean_kit/transformers/service_label_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/strategies/lean_kit/transformers/service_label_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/strategies/lean_kit/transformers/title_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/strategies/lean_kit/transformers/title_spec.rb -------------------------------------------------------------------------------- /spec/amaze_hands/workflow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/amaze_hands/workflow_spec.rb -------------------------------------------------------------------------------- /spec/app_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/app_helper.rb -------------------------------------------------------------------------------- /spec/factories/card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/factories/card.rb -------------------------------------------------------------------------------- /spec/factories/card_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/factories/card_action.rb -------------------------------------------------------------------------------- /spec/factories/card_lane.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/factories/card_lane.rb -------------------------------------------------------------------------------- /spec/features_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/features_helper.rb -------------------------------------------------------------------------------- /spec/fixtures/lean_kit/P-217.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/fixtures/lean_kit/P-217.txt -------------------------------------------------------------------------------- /spec/fixtures/lean_kit/P-232.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/fixtures/lean_kit/P-232.txt -------------------------------------------------------------------------------- /spec/fixtures/lean_kit/P-234.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/fixtures/lean_kit/P-234.txt -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/.gitkeep: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /spec/support/shared/contexts/lean_kit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/support/shared/contexts/lean_kit.rb -------------------------------------------------------------------------------- /spec/support/shared/contexts/service_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/support/shared/contexts/service_class.rb -------------------------------------------------------------------------------- /spec/support/shared/examples/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/amaze_hands/HEAD/spec/support/shared/examples/matchers.rb -------------------------------------------------------------------------------- /spec/web/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /spec/web/features/.gitkeep: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /spec/web/views/.gitkeep: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------