├── .document ├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── .yardopts ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── features ├── support │ └── env.rb └── test.feature ├── fixtures └── test-app │ ├── config.rb │ └── source │ └── index.html.erb ├── lib ├── middleman-deploy.rb ├── middleman-deploy │ ├── commands.rb │ ├── extension.rb │ ├── methods.rb │ ├── methods │ │ ├── base.rb │ │ ├── ftp.rb │ │ ├── git.rb │ │ ├── rsync.rb │ │ └── sftp.rb │ ├── pkg-info.rb │ ├── strategies.rb │ └── strategies │ │ └── git │ │ ├── base.rb │ │ ├── force_push.rb │ │ └── submodule.rb └── middleman_extension.rb └── middleman-deploy.gemspec /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/Rakefile -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/test.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/features/test.feature -------------------------------------------------------------------------------- /fixtures/test-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/test-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 |

Test

-------------------------------------------------------------------------------- /lib/middleman-deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/commands.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/extension.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/methods.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/methods/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/methods/base.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/methods/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/methods/ftp.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/methods/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/methods/git.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/methods/rsync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/methods/rsync.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/methods/sftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/methods/sftp.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/pkg-info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/pkg-info.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/strategies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/strategies.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/strategies/git/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/strategies/git/base.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/strategies/git/force_push.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/strategies/git/force_push.rb -------------------------------------------------------------------------------- /lib/middleman-deploy/strategies/git/submodule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/lib/middleman-deploy/strategies/git/submodule.rb -------------------------------------------------------------------------------- /lib/middleman_extension.rb: -------------------------------------------------------------------------------- 1 | require 'middleman-deploy' 2 | -------------------------------------------------------------------------------- /middleman-deploy.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlfreeman/middleman-deploy/HEAD/middleman-deploy.gemspec --------------------------------------------------------------------------------