├── .gitignore ├── README.markdown ├── Rakefile ├── VERSION ├── bin └── gitploy ├── features ├── gitploy.feature ├── step_definitions │ └── gitploy_steps.rb └── support │ └── env.rb ├── gitploy.gemspec ├── lib ├── gitploy.rb └── gitploy │ └── script.rb └── spec ├── gitploy_config_spec.rb ├── gitploy_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentd/gitploy/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentd/gitploy/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.2 2 | -------------------------------------------------------------------------------- /bin/gitploy: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | load('config/gitploy.rb') -------------------------------------------------------------------------------- /features/gitploy.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentd/gitploy/HEAD/features/gitploy.feature -------------------------------------------------------------------------------- /features/step_definitions/gitploy_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentd/gitploy/HEAD/features/step_definitions/gitploy_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentd/gitploy/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /gitploy.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentd/gitploy/HEAD/gitploy.gemspec -------------------------------------------------------------------------------- /lib/gitploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentd/gitploy/HEAD/lib/gitploy.rb -------------------------------------------------------------------------------- /lib/gitploy/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentd/gitploy/HEAD/lib/gitploy/script.rb -------------------------------------------------------------------------------- /spec/gitploy_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentd/gitploy/HEAD/spec/gitploy_config_spec.rb -------------------------------------------------------------------------------- /spec/gitploy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentd/gitploy/HEAD/spec/gitploy_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'rspec' 2 | 3 | --------------------------------------------------------------------------------