├── .gitignore ├── .npmignore ├── .travis.yml ├── ACKNOWLEDGEMENTS.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── pioneer ├── changelog.md ├── coverage.sh ├── docs ├── command_line.md ├── config_file.md ├── form.md ├── getting_started.md ├── globals.md ├── list.md ├── step_helpers.md └── widget.md ├── gulpfile.js ├── logo.png ├── mergelcov.sh ├── npm-shrinkwrap.json ├── package.json ├── pioneer.json ├── src ├── config_builder.coffee ├── environment.coffee ├── errorformat.coffee ├── pioneer.coffee ├── pioneerformat.js ├── pioneersummaryformat.js ├── scaffold │ ├── example.json │ ├── simple.js │ └── simple.txt ├── scaffold_builder.coffee ├── support │ └── index.coffee └── widgets │ ├── Widget.Form.coffee │ ├── Widget.Iframe.coffee │ ├── Widget.List.coffee │ ├── Widget.coffee │ └── build │ └── widgets.coffee └── test ├── integration ├── features │ ├── findwidget.feature │ ├── form.feature │ ├── list.feature │ ├── pending.feature │ ├── readwidget.feature │ ├── shorthand.feature │ ├── simple.feature │ └── widget.feature ├── fixtures │ ├── form.html │ ├── list.html │ ├── marionette.html │ └── sample.html ├── steps │ ├── find_steps.coffee │ ├── form_steps.coffee │ ├── helper_steps.coffee │ ├── list_steps.coffee │ ├── read_steps.coffee │ ├── shorthand.coffee │ ├── steps.coffee │ ├── util.coffee │ └── widget_steps.coffee └── widgets │ ├── div.coffee │ ├── form.coffee │ ├── list.coffee │ └── list_item.coffee ├── mocha.opts └── unit ├── bin.coffee ├── config.coffee ├── scaffold.coffee └── widget.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .pioneer.json 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/.travis.yml -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/ACKNOWLEDGEMENTS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/README.md -------------------------------------------------------------------------------- /bin/pioneer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/bin/pioneer -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/changelog.md -------------------------------------------------------------------------------- /coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/coverage.sh -------------------------------------------------------------------------------- /docs/command_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/docs/command_line.md -------------------------------------------------------------------------------- /docs/config_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/docs/config_file.md -------------------------------------------------------------------------------- /docs/form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/docs/form.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/docs/globals.md -------------------------------------------------------------------------------- /docs/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/docs/list.md -------------------------------------------------------------------------------- /docs/step_helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/docs/step_helpers.md -------------------------------------------------------------------------------- /docs/widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/docs/widget.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/gulpfile.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/logo.png -------------------------------------------------------------------------------- /mergelcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/mergelcov.sh -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/package.json -------------------------------------------------------------------------------- /pioneer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/pioneer.json -------------------------------------------------------------------------------- /src/config_builder.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/config_builder.coffee -------------------------------------------------------------------------------- /src/environment.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/environment.coffee -------------------------------------------------------------------------------- /src/errorformat.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/errorformat.coffee -------------------------------------------------------------------------------- /src/pioneer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/pioneer.coffee -------------------------------------------------------------------------------- /src/pioneerformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/pioneerformat.js -------------------------------------------------------------------------------- /src/pioneersummaryformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/pioneersummaryformat.js -------------------------------------------------------------------------------- /src/scaffold/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/scaffold/example.json -------------------------------------------------------------------------------- /src/scaffold/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/scaffold/simple.js -------------------------------------------------------------------------------- /src/scaffold/simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/scaffold/simple.txt -------------------------------------------------------------------------------- /src/scaffold_builder.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/scaffold_builder.coffee -------------------------------------------------------------------------------- /src/support/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/support/index.coffee -------------------------------------------------------------------------------- /src/widgets/Widget.Form.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/widgets/Widget.Form.coffee -------------------------------------------------------------------------------- /src/widgets/Widget.Iframe.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/widgets/Widget.Iframe.coffee -------------------------------------------------------------------------------- /src/widgets/Widget.List.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/widgets/Widget.List.coffee -------------------------------------------------------------------------------- /src/widgets/Widget.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/widgets/Widget.coffee -------------------------------------------------------------------------------- /src/widgets/build/widgets.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/src/widgets/build/widgets.coffee -------------------------------------------------------------------------------- /test/integration/features/findwidget.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/features/findwidget.feature -------------------------------------------------------------------------------- /test/integration/features/form.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/features/form.feature -------------------------------------------------------------------------------- /test/integration/features/list.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/features/list.feature -------------------------------------------------------------------------------- /test/integration/features/pending.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/features/pending.feature -------------------------------------------------------------------------------- /test/integration/features/readwidget.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/features/readwidget.feature -------------------------------------------------------------------------------- /test/integration/features/shorthand.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/features/shorthand.feature -------------------------------------------------------------------------------- /test/integration/features/simple.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/features/simple.feature -------------------------------------------------------------------------------- /test/integration/features/widget.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/features/widget.feature -------------------------------------------------------------------------------- /test/integration/fixtures/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/fixtures/form.html -------------------------------------------------------------------------------- /test/integration/fixtures/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/fixtures/list.html -------------------------------------------------------------------------------- /test/integration/fixtures/marionette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/fixtures/marionette.html -------------------------------------------------------------------------------- /test/integration/fixtures/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/fixtures/sample.html -------------------------------------------------------------------------------- /test/integration/steps/find_steps.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/steps/find_steps.coffee -------------------------------------------------------------------------------- /test/integration/steps/form_steps.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/steps/form_steps.coffee -------------------------------------------------------------------------------- /test/integration/steps/helper_steps.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/steps/helper_steps.coffee -------------------------------------------------------------------------------- /test/integration/steps/list_steps.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/steps/list_steps.coffee -------------------------------------------------------------------------------- /test/integration/steps/read_steps.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/steps/read_steps.coffee -------------------------------------------------------------------------------- /test/integration/steps/shorthand.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/steps/shorthand.coffee -------------------------------------------------------------------------------- /test/integration/steps/steps.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/steps/steps.coffee -------------------------------------------------------------------------------- /test/integration/steps/util.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/steps/util.coffee -------------------------------------------------------------------------------- /test/integration/steps/widget_steps.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/steps/widget_steps.coffee -------------------------------------------------------------------------------- /test/integration/widgets/div.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/widgets/div.coffee -------------------------------------------------------------------------------- /test/integration/widgets/form.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/widgets/form.coffee -------------------------------------------------------------------------------- /test/integration/widgets/list.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/widgets/list.coffee -------------------------------------------------------------------------------- /test/integration/widgets/list_item.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/integration/widgets/list_item.coffee -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/unit/bin.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/unit/bin.coffee -------------------------------------------------------------------------------- /test/unit/config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/unit/config.coffee -------------------------------------------------------------------------------- /test/unit/scaffold.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/unit/scaffold.coffee -------------------------------------------------------------------------------- /test/unit/widget.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/pioneer/HEAD/test/unit/widget.coffee --------------------------------------------------------------------------------