├── .gitignore ├── CHANGELOG ├── LICENCE ├── README.rdoc ├── README_DEV.rdoc ├── app ├── controllers │ └── documentation │ │ ├── application_controller.rb │ │ ├── assets_controller.rb │ │ └── features_controller.rb ├── helpers │ └── documentation │ │ └── features_helper.rb └── views │ └── documentation │ ├── features │ ├── edit.html.erb │ ├── index.html.erb │ └── statistic.html.erb │ └── layouts │ └── cucumber_fm.html.erb ├── config └── routes.rb ├── features ├── business_overview │ ├── burndown_graph.feature │ ├── create_new_feature.feature │ └── dashboard.feature ├── cvs_integration │ └── pushing_date_to_git_remote_branch.feature ├── editor │ ├── advance.feature │ ├── basics.feature │ ├── comments_clickable_links.feature │ ├── comments_notation.feature │ └── settings_cvs.feature ├── kanban │ └── dashboard.feature ├── statistics │ └── dashboard.feature └── support │ ├── changelog.feature │ ├── filter_basics.feature │ └── filter_storage.feature ├── log └── .gitignore ├── public ├── bespin │ ├── BespinEmbedded.css │ ├── BespinEmbedded.js │ ├── BespinMain.js │ ├── BespinWorker.js │ └── resources │ │ ├── screen_theme │ │ ├── images │ │ │ ├── bespin-s.png │ │ │ ├── check-selected.png │ │ │ ├── check-unselected.png │ │ │ ├── lines.png │ │ │ ├── radio-selected.png │ │ │ ├── radio-unselected.png │ │ │ ├── scroll-down.png │ │ │ ├── scroll-left.png │ │ │ ├── scroll-right.png │ │ │ └── scroll-up.png │ │ └── theme.less │ │ └── whitetheme │ │ └── theme.less ├── images │ ├── icons │ │ └── shared.png │ ├── layout │ │ ├── bg_body.png │ │ ├── bt_green.png │ │ ├── frame_content_twocolumns.png │ │ ├── frame_content_twocolumns_wider.png │ │ ├── frame_head.png │ │ ├── frame_head_actions.png │ │ ├── frame_head_actions_lb.png │ │ ├── magnify.png │ │ ├── menu_business.png │ │ ├── menu_development.png │ │ ├── menu_statistic.png │ │ ├── table_thead.png │ │ └── toggler.png │ └── sproutcore-logo.png ├── javascripts │ └── BespinSyntaxGherkin.js └── stylesheets │ ├── device_width.css │ ├── fonts │ ├── Titillium_600.otf │ └── Titillium_800.otf │ ├── inputs.css │ ├── layout.css │ └── reset.css └── tmp └── .gitignore /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/LICENCE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/README.rdoc -------------------------------------------------------------------------------- /README_DEV.rdoc: -------------------------------------------------------------------------------- 1 | 2 | # RCOV report 3 | rcov lib/*.rb -o tmp/rcov -------------------------------------------------------------------------------- /app/controllers/documentation/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/app/controllers/documentation/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/documentation/assets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/app/controllers/documentation/assets_controller.rb -------------------------------------------------------------------------------- /app/controllers/documentation/features_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/app/controllers/documentation/features_controller.rb -------------------------------------------------------------------------------- /app/helpers/documentation/features_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/app/helpers/documentation/features_helper.rb -------------------------------------------------------------------------------- /app/views/documentation/features/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/app/views/documentation/features/edit.html.erb -------------------------------------------------------------------------------- /app/views/documentation/features/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/app/views/documentation/features/index.html.erb -------------------------------------------------------------------------------- /app/views/documentation/features/statistic.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/app/views/documentation/features/statistic.html.erb -------------------------------------------------------------------------------- /app/views/documentation/layouts/cucumber_fm.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/app/views/documentation/layouts/cucumber_fm.html.erb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/config/routes.rb -------------------------------------------------------------------------------- /features/business_overview/burndown_graph.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/business_overview/burndown_graph.feature -------------------------------------------------------------------------------- /features/business_overview/create_new_feature.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/business_overview/create_new_feature.feature -------------------------------------------------------------------------------- /features/business_overview/dashboard.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/business_overview/dashboard.feature -------------------------------------------------------------------------------- /features/cvs_integration/pushing_date_to_git_remote_branch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/cvs_integration/pushing_date_to_git_remote_branch.feature -------------------------------------------------------------------------------- /features/editor/advance.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/editor/advance.feature -------------------------------------------------------------------------------- /features/editor/basics.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/editor/basics.feature -------------------------------------------------------------------------------- /features/editor/comments_clickable_links.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/editor/comments_clickable_links.feature -------------------------------------------------------------------------------- /features/editor/comments_notation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/editor/comments_notation.feature -------------------------------------------------------------------------------- /features/editor/settings_cvs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/editor/settings_cvs.feature -------------------------------------------------------------------------------- /features/kanban/dashboard.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/kanban/dashboard.feature -------------------------------------------------------------------------------- /features/statistics/dashboard.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/statistics/dashboard.feature -------------------------------------------------------------------------------- /features/support/changelog.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/support/changelog.feature -------------------------------------------------------------------------------- /features/support/filter_basics.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/support/filter_basics.feature -------------------------------------------------------------------------------- /features/support/filter_storage.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/features/support/filter_storage.feature -------------------------------------------------------------------------------- /log/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/bespin/BespinEmbedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/BespinEmbedded.css -------------------------------------------------------------------------------- /public/bespin/BespinEmbedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/BespinEmbedded.js -------------------------------------------------------------------------------- /public/bespin/BespinMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/BespinMain.js -------------------------------------------------------------------------------- /public/bespin/BespinWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/BespinWorker.js -------------------------------------------------------------------------------- /public/bespin/resources/screen_theme/images/bespin-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/resources/screen_theme/images/bespin-s.png -------------------------------------------------------------------------------- /public/bespin/resources/screen_theme/images/check-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/resources/screen_theme/images/check-selected.png -------------------------------------------------------------------------------- /public/bespin/resources/screen_theme/images/check-unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/resources/screen_theme/images/check-unselected.png -------------------------------------------------------------------------------- /public/bespin/resources/screen_theme/images/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/resources/screen_theme/images/lines.png -------------------------------------------------------------------------------- /public/bespin/resources/screen_theme/images/radio-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/resources/screen_theme/images/radio-selected.png -------------------------------------------------------------------------------- /public/bespin/resources/screen_theme/images/radio-unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/resources/screen_theme/images/radio-unselected.png -------------------------------------------------------------------------------- /public/bespin/resources/screen_theme/images/scroll-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/resources/screen_theme/images/scroll-down.png -------------------------------------------------------------------------------- /public/bespin/resources/screen_theme/images/scroll-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/resources/screen_theme/images/scroll-left.png -------------------------------------------------------------------------------- /public/bespin/resources/screen_theme/images/scroll-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/resources/screen_theme/images/scroll-right.png -------------------------------------------------------------------------------- /public/bespin/resources/screen_theme/images/scroll-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/resources/screen_theme/images/scroll-up.png -------------------------------------------------------------------------------- /public/bespin/resources/screen_theme/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/resources/screen_theme/theme.less -------------------------------------------------------------------------------- /public/bespin/resources/whitetheme/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/bespin/resources/whitetheme/theme.less -------------------------------------------------------------------------------- /public/images/icons/shared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/icons/shared.png -------------------------------------------------------------------------------- /public/images/layout/bg_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/bg_body.png -------------------------------------------------------------------------------- /public/images/layout/bt_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/bt_green.png -------------------------------------------------------------------------------- /public/images/layout/frame_content_twocolumns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/frame_content_twocolumns.png -------------------------------------------------------------------------------- /public/images/layout/frame_content_twocolumns_wider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/frame_content_twocolumns_wider.png -------------------------------------------------------------------------------- /public/images/layout/frame_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/frame_head.png -------------------------------------------------------------------------------- /public/images/layout/frame_head_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/frame_head_actions.png -------------------------------------------------------------------------------- /public/images/layout/frame_head_actions_lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/frame_head_actions_lb.png -------------------------------------------------------------------------------- /public/images/layout/magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/magnify.png -------------------------------------------------------------------------------- /public/images/layout/menu_business.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/menu_business.png -------------------------------------------------------------------------------- /public/images/layout/menu_development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/menu_development.png -------------------------------------------------------------------------------- /public/images/layout/menu_statistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/menu_statistic.png -------------------------------------------------------------------------------- /public/images/layout/table_thead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/table_thead.png -------------------------------------------------------------------------------- /public/images/layout/toggler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/layout/toggler.png -------------------------------------------------------------------------------- /public/images/sproutcore-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/images/sproutcore-logo.png -------------------------------------------------------------------------------- /public/javascripts/BespinSyntaxGherkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/javascripts/BespinSyntaxGherkin.js -------------------------------------------------------------------------------- /public/stylesheets/device_width.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/stylesheets/device_width.css -------------------------------------------------------------------------------- /public/stylesheets/fonts/Titillium_600.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/stylesheets/fonts/Titillium_600.otf -------------------------------------------------------------------------------- /public/stylesheets/fonts/Titillium_800.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/stylesheets/fonts/Titillium_800.otf -------------------------------------------------------------------------------- /public/stylesheets/inputs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/stylesheets/inputs.css -------------------------------------------------------------------------------- /public/stylesheets/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/stylesheets/layout.css -------------------------------------------------------------------------------- /public/stylesheets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miksturait/cucumber_fm-plugin/HEAD/public/stylesheets/reset.css -------------------------------------------------------------------------------- /tmp/.gitignore: -------------------------------------------------------------------------------- 1 | repo 2 | repo/**/* --------------------------------------------------------------------------------