├── .gitignore ├── .travis.yml ├── Gemfile ├── HISTORY.md ├── LICENSE ├── README.md ├── Rakefile ├── bin └── pinpress ├── features ├── 1.ui.feature ├── 2.initialization.feature ├── 3.templates.feature ├── step_definitions │ └── pinpress_steps.rb └── support │ └── env.rb ├── lib ├── pinpress.rb └── pinpress │ ├── constants.rb │ └── template.rb ├── pinpress.gemspec ├── spec └── spec_helper.rb └── support ├── preference_prompts.yaml └── sample_config.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/Gemfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/pinpress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/bin/pinpress -------------------------------------------------------------------------------- /features/1.ui.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/features/1.ui.feature -------------------------------------------------------------------------------- /features/2.initialization.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/features/2.initialization.feature -------------------------------------------------------------------------------- /features/3.templates.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/features/3.templates.feature -------------------------------------------------------------------------------- /features/step_definitions/pinpress_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/features/step_definitions/pinpress_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /lib/pinpress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/lib/pinpress.rb -------------------------------------------------------------------------------- /lib/pinpress/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/lib/pinpress/constants.rb -------------------------------------------------------------------------------- /lib/pinpress/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/lib/pinpress/template.rb -------------------------------------------------------------------------------- /pinpress.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/pinpress.gemspec -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /support/preference_prompts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/support/preference_prompts.yaml -------------------------------------------------------------------------------- /support/sample_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachya/pinpress/HEAD/support/sample_config.yaml --------------------------------------------------------------------------------